@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #f3f4f6;
  --bg-2: #ffffff;
  --ink: #1f2937;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --line: rgba(13, 42, 74, 0.12);
  --line-strong: rgba(13, 42, 74, 0.22);
  --text: #1f2937;
  --muted: #4b5563;
  --soft: #374151;
  --cyan: #60a5fa;
  --blue: #60a5fa;
  --indigo: #4f46e5;
  --lime: #4ade80;
  --orange: #e9933e;
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Yu Gothic", "YuGothic", "Manrope", "Noto Sans JP", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #f9fafb 0%, #f3f4f6 48%, #ffffff 100%);
  background-size: 38px 38px, 38px 38px, auto;
}

body {
  min-height: 100vh;
  position: relative;
}

body.has-intro {
  overflow: hidden;
}

.ai-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(96, 165, 250, 0.22), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(74, 222, 128, 0.14), transparent 22%),
    radial-gradient(circle at 50% 86%, rgba(79, 70, 229, 0.11), transparent 30%);
}

.ai-background::before,
.ai-background::after {
  content: "";
  position: absolute;
  inset: -15%;
  opacity: 0.52;
}

.ai-background::before {
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(96, 165, 250, 0.15) 39%, transparent 44%),
    linear-gradient(72deg, transparent 0 58%, rgba(74, 222, 128, 0.1) 59%, transparent 64%);
  animation: aiBeamDrift 14s ease-in-out infinite alternate;
}

.ai-background::after {
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.12) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(circle at center, black 0 64%, transparent 82%);
  mask-image: radial-gradient(circle at center, black 0 64%, transparent 82%);
  animation: aiGridFloat 22s linear infinite;
}

.ai-background__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.ai-background__mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(126deg, transparent 18%, rgba(96, 165, 250, 0.17) 18.2%, transparent 18.7%),
    linear-gradient(36deg, transparent 33%, rgba(79, 70, 229, 0.13) 33.2%, transparent 33.7%),
    linear-gradient(152deg, transparent 61%, rgba(74, 222, 128, 0.12) 61.2%, transparent 61.8%);
  opacity: 0.72;
}

.ai-background__scan {
  position: absolute;
  left: -12%;
  top: 12%;
  width: 124%;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.12), transparent);
  transform: rotate(-8deg);
  animation: aiScan 8s ease-in-out infinite;
}

.ai-background__nodes span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 0 7px rgba(96, 165, 250, 0.12),
    0 0 34px rgba(37, 99, 235, 0.34);
  animation: aiNodePulse 4.8s ease-in-out infinite;
  animation-delay: var(--d);
}

.ai-background__nodes span::before,
.ai-background__nodes span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 18vw;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.26), transparent);
}

.ai-background__nodes span::before {
  transform: rotate(24deg);
}

.ai-background__nodes span::after {
  transform: rotate(-38deg);
}

.site-header,
main,
.site-footer,
.fixed-cta,
.side-rail,
.mobile-dock {
  position: relative;
}

.site-header,
main,
.site-footer {
  z-index: 1;
}

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

img {
  max-width: 100%;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(31, 41, 55, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
  filter: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(123, 228, 255, 0.9), rgba(79, 141, 255, 0.9));
  color: #05111f;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 0 42px rgba(90, 192, 255, 0.3);
}

.logo-copy {
  display: grid;
  gap: 2px;
}

.logo-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.24);
  background: rgba(96, 165, 250, 0.16);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

main {
  display: block;
  padding-bottom: 40px;
}

.section,
.section-lite {
  padding: 42px 0;
}

.section-band {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
}

.section-band::before {
  content: "";
  position: absolute;
  left: max(20px, calc((100% - 1180px) / 2));
  right: max(20px, calc((100% - 1180px) / 2));
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.22), transparent);
}

.section-band::after {
  content: attr(data-section-label);
  position: absolute;
  top: 28px;
  left: max(20px, calc((100% - 1180px) / 2));
  color: rgba(37, 99, 235, 0.2);
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.section-band > .container {
  position: relative;
  z-index: 1;
}

.section-band--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 246, 255, 0.42));
}

.section-band--plain {
  background: rgba(255, 255, 255, 0.58);
}

.section-band--soft {
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.42), rgba(255, 255, 255, 0.72) 46%, rgba(240, 253, 244, 0.28));
}

.section-band--dark {
  background:
    radial-gradient(circle at 18% 20%, rgba(96, 165, 250, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.14));
}

.section-band--dark::after {
  color: rgba(96, 165, 250, 0.22);
}

.hero-aces,
.page-hero-shell,
.hero-stage,
.glass-panel,
.card,
.shop-card,
.cart-panel,
.service-card,
.project-item,
.content-item,
.pillar,
.news-item,
.dual-card,
.client-wall span,
.field-card,
.metric,
.demo-result,
.demo-output,
.chat-log,
.page-cover,
.career-panel,
.cta-band,
.manifesto {
  backdrop-filter: blur(14px);
}

.glass-panel,
.card,
.shop-card,
.cart-panel,
.service-card,
.project-item,
.content-item,
.pillar,
.news-item,
.dual-card,
.career-panel,
.demo-result,
.demo-output,
.chat-log,
.metric,
.page-cover,
.manifesto {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow,
.mini-label,
.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background: rgba(96, 165, 250, 0.12);
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 700;
}

.eyebrow::before,
.mini-label::before,
.sec-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #4ade80);
  box-shadow: 0 0 18px rgba(96, 165, 250, 0.28);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 86px);
}

h2,
.sec-title {
  font-size: clamp(32px, 4.8vw, 58px);
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.hero-aces {
  padding: 44px 0 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(96, 165, 250, 0.2), transparent 30%),
    linear-gradient(120deg, #1f2937 0%, #111827 58%, #1f2937 100%);
  color: #ffffff;
}

.hero-visual {
  position: relative;
  min-height: calc(100vh - 84px);
  padding: 0;
  overflow: hidden;
  background: #030712;
  display: grid;
  align-items: end;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.94));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 38%, rgba(96, 165, 250, 0.24), transparent 26%),
    radial-gradient(circle at 24% 68%, rgba(74, 222, 128, 0.14), transparent 22%),
    linear-gradient(120deg, #050816 0%, #0f172a 46%, #111827 100%);
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.06) brightness(0.72);
  animation: heroMediaDrift 14s ease-in-out infinite alternate;
}

.hero-video__camera,
.hero-video__belt {
  opacity: 0.14;
}

.hero-video::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(96, 165, 250, 0.14) 37%, transparent 43%),
    linear-gradient(72deg, transparent 0 56%, rgba(74, 222, 128, 0.1) 57%, transparent 62%);
  animation: heroVideoPan 12s ease-in-out infinite alternate;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(3, 7, 18, 0.12), rgba(3, 7, 18, 0.54));
  background-size: 56px 56px, 56px 56px, auto;
}

.hero-video__grid {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background:
    repeating-linear-gradient(0deg, rgba(96, 165, 250, 0.11) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(96, 165, 250, 0.08) 0 1px, transparent 1px 18px);
  transform: perspective(720px) rotateX(62deg) translateY(15%);
  transform-origin: bottom;
  animation: heroGridMove 5s linear infinite;
}

.hero-video__camera {
  position: absolute;
  left: 8%;
  top: 16%;
  width: min(22vw, 250px);
  height: 120px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 50%, rgba(15, 23, 42, 1) 0 22%, transparent 23%),
    linear-gradient(135deg, rgba(148, 163, 184, 0.82), rgba(30, 41, 59, 0.72));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  animation: heroFloatSlow 7s ease-in-out infinite;
}

.hero-video__camera span:first-child {
  position: absolute;
  left: 20%;
  top: 32%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.72);
  box-shadow: 0 0 34px rgba(96, 165, 250, 0.36);
}

.hero-video__camera span:last-child {
  position: absolute;
  right: -38%;
  top: 48%;
  width: 42vw;
  max-width: 520px;
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.8), transparent);
  transform: rotate(12deg);
}

.hero-video__belt {
  position: absolute;
  right: 6%;
  bottom: 18%;
  width: min(62vw, 760px);
  height: min(28vw, 330px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  background:
    repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.2) 0 18px, rgba(15, 23, 42, 0.44) 18px 48px),
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(51, 65, 85, 0.72));
  transform: perspective(760px) rotateX(54deg) rotateZ(-7deg);
  transform-origin: center;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.45);
  animation: heroBeltMove 3.2s linear infinite;
}

.inspection-part--hero {
  left: 48%;
  top: 38%;
  width: min(42%, 300px);
  animation: inspectedPart 5.4s ease-in-out infinite;
}

.hero-video__scan {
  position: absolute;
  left: 0;
  top: -12%;
  width: 100%;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(74, 222, 128, 0.18), transparent);
  transform: rotate(-4deg);
  animation: heroScan 4.6s linear infinite;
}

.hero-video__hud {
  position: absolute;
  right: 34px;
  top: 34px;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(226, 232, 240, 0.84);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-video__hud span {
  padding: 9px 11px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.44);
  backdrop-filter: blur(10px);
}

.detect-box--hero {
  z-index: 3;
  animation: detectFlicker 3.8s ease-in-out infinite;
}

.hero-video .detect-box--ok {
  left: 52%;
  top: 38%;
}

.hero-video .detect-box--warn {
  right: 12%;
  top: 48%;
}

.vision-reticle--hero {
  z-index: 4;
}

.hero-visual__content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 84px);
  display: grid;
  align-content: end;
  padding-top: 72px;
  padding-bottom: 40px;
}

.hero-visual__copy {
  width: min(820px, 100%);
  padding-bottom: 34px;
}

.hero-visual__eyebrow {
  color: #bfdbfe;
  border-color: rgba(191, 219, 254, 0.28);
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(12px);
}

.hero-visual__title {
  max-width: 11ch;
  margin-top: 20px;
  font-size: clamp(48px, 8vw, 112px);
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.hero-visual__sub {
  max-width: 660px;
  color: rgba(241, 245, 249, 0.8);
  font-size: clamp(16px, 1.8vw, 20px);
}

.hero-visual__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(16px);
}

.hero-visual__metrics .metric {
  border: 0;
  border-radius: 0;
  background: rgba(2, 6, 23, 0.58);
  box-shadow: none;
  min-height: 132px;
  opacity: 0;
  transform: translateY(28px);
}

.hero-visual__metrics .metric.in {
  opacity: 1;
  transform: translateY(0);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.page-hero-copy {
  padding: 36px;
}

.hero-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-title {
  margin-top: 18px;
  max-width: 11ch;
}

.hero-gradient {
  display: block;
  background: linear-gradient(90deg, #ffffff, #bfdbfe 48%, #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub,
.sec-desc,
.page-intro {
  margin-top: 18px;
  max-width: 720px;
  font-size: 17px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.78);
}

.hero-cta,
.btn-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta,
.btn-row {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  box-shadow: 0 16px 36px rgba(96, 165, 250, 0.28);
}

.btn-accent {
  color: #ffffff;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  box-shadow: 0 16px 36px rgba(74, 222, 128, 0.22);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.hero-aces .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.metric-strip,
.quick-facts,
.stat-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric,
.stat-box {
  padding: 18px;
}

.metric strong,
.stat-box strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  color: var(--text);
}

.metric span,
.stat-box span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.hero-aces .metric {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-aces .metric strong,
.hero-aces .metric span {
  color: #ffffff;
}

.hero-stage,
.page-cover {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px;
}

.hero-stage::before,
.page-cover::before {
  content: none;
}

.hero-stage img,
.page-cover img {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.hero-stage__orb {
  display: none;
}

.hero-stage--inspection {
  display: grid;
  gap: 18px;
  align-content: stretch;
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.92), rgba(17, 24, 39, 0.84)),
    rgba(17, 24, 39, 0.94);
  border-color: rgba(96, 165, 250, 0.24);
}

.inspection-console {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(96, 165, 250, 0.2), transparent 42%),
    #08111f;
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: inset 0 0 80px rgba(15, 23, 42, 0.82);
}

.inspection-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(74, 222, 128, 0.13), transparent);
  transform: translateY(-100%);
  animation: inspectionScan 4.8s linear infinite;
}

.inspection-console__top,
.inspection-console__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.66);
  color: rgba(226, 232, 240, 0.76);
}

.inspection-console__top {
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.inspection-console__top span,
.inspection-console__bottom span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inspection-console__top strong {
  color: #4ade80;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.inspection-console__view {
  position: relative;
  z-index: 1;
  min-height: 300px;
}

.inspection-part {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(56%, 310px);
  aspect-ratio: 1.35;
  transform: translate(-50%, -50%) rotate(-10deg);
  border-radius: 30px;
  background:
    radial-gradient(circle at 32% 35%, rgba(255, 255, 255, 0.76) 0 8%, transparent 9%),
    radial-gradient(circle at 68% 62%, rgba(255, 255, 255, 0.58) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(148, 163, 184, 0.98), rgba(30, 41, 59, 0.92));
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.46),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 22px 18px 52px rgba(255, 255, 255, 0.16);
}

.inspection-part span {
  position: absolute;
  width: 18%;
  height: 16%;
  border-radius: 50%;
  border: 1px solid rgba(226, 232, 240, 0.7);
  background: rgba(15, 23, 42, 0.54);
}

.inspection-part span:nth-child(1) {
  left: 18%;
  top: 24%;
}

.inspection-part span:nth-child(2) {
  right: 18%;
  top: 28%;
}

.inspection-part span:nth-child(3) {
  left: 42%;
  bottom: 18%;
}

.detect-box {
  position: absolute;
  z-index: 3;
  width: 132px;
  min-height: 76px;
  padding: 8px;
  border: 1px solid currentColor;
  background: rgba(2, 6, 23, 0.4);
  color: #4ade80;
}

.detect-box::before,
.detect-box::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: currentColor;
}

.detect-box::before {
  left: -1px;
  top: -1px;
  border-left: 3px solid;
  border-top: 3px solid;
}

.detect-box::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.detect-box strong,
.detect-box em {
  display: block;
  font-style: normal;
}

.detect-box strong {
  font-size: 12px;
  letter-spacing: 0.16em;
}

.detect-box em {
  margin-top: 22px;
  font-size: 11px;
  color: rgba(226, 232, 240, 0.76);
}

.detect-box--ok {
  left: 17%;
  top: 23%;
}

.detect-box--warn {
  right: 14%;
  bottom: 20%;
  color: #f59e0b;
}

.vision-reticle {
  position: absolute;
  z-index: 4;
  left: var(--reticle-x, 50%);
  top: var(--reticle-y, 48%);
  width: 76px;
  height: 76px;
  border: 1px solid rgba(96, 165, 250, 0.84);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 34px rgba(96, 165, 250, 0.24);
  transition: left 0.16s ease, top 0.16s ease;
}

.vision-reticle::before,
.vision-reticle::after {
  content: "";
  position: absolute;
  background: rgba(96, 165, 250, 0.84);
}

.vision-reticle::before {
  left: 50%;
  top: -10px;
  width: 1px;
  height: calc(100% + 20px);
}

.vision-reticle::after {
  left: -10px;
  top: 50%;
  width: calc(100% + 20px);
  height: 1px;
}

.inspection-console__bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.inspection-console__bottom div {
  display: grid;
  gap: 4px;
}

.inspection-console__bottom strong {
  color: #f8fafc;
  font-size: 12px;
  line-height: 1.35;
}

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

.az-process span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 10px;
  background: rgba(96, 165, 250, 0.1);
  color: rgba(248, 250, 252, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-stage__orb--a {
  top: 8%;
  right: 10%;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(123, 228, 255, 0.22) 0%, transparent 72%);
}

.hero-stage__orb--b {
  left: 6%;
  bottom: 14%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(126, 141, 255, 0.18) 0%, transparent 72%);
  animation-duration: 12s;
  animation-delay: -2s;
}

.hero-floating {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(270px, calc(100% - 48px));
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(21, 91, 215, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.hero-floating strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-floating p {
  font-size: 13px;
  color: var(--soft);
}

.vision-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 32px;
  align-items: stretch;
}

.vision-band__intro {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: 34px 0 34px 28px;
  border-left: 5px solid #2563eb;
  background: transparent;
}

.vision-band__intro .sec-title {
  max-width: 7.8ch;
}

.vision-band__intro p:not(.sec-kicker) {
  margin-top: 22px;
  max-width: 420px;
  color: var(--soft);
}

.vision-band__grid {
  display: grid;
  gap: 16px;
}

.vision-feature {
  position: relative;
  min-height: 178px;
  padding: 26px 28px 26px 110px;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.78)),
    #ffffff;
  box-shadow: var(--shadow);
}

.vision-feature span {
  position: absolute;
  left: 28px;
  top: 30px;
  display: block;
  width: 58px;
  color: #2563eb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.vision-feature h3 {
  max-width: 15ch;
  margin-bottom: 12px;
}

.vision-feature:nth-child(2) {
  margin-left: 46px;
}

.vision-feature:nth-child(3) {
  margin-left: 92px;
}

.atoz-flow {
  display: grid;
  gap: 34px;
}

.atoz-flow__head {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.atoz-flow__head .sec-kicker {
  grid-column: 1 / -1;
}

.atoz-flow__head .sec-title {
  max-width: 10ch;
}

.atoz-flow__head p:not(.sec-kicker) {
  color: var(--soft);
  font-size: 17px;
}

.atoz-flow__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 26px;
}

.atoz-flow__track::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #4ade80);
}

.atoz-step {
  position: relative;
  min-height: 245px;
  padding: 28px 24px 24px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.atoz-step:last-child {
  border-right: 1px solid var(--line);
}

.atoz-step::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #2563eb;
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.1);
}

.atoz-step:nth-child(even) {
  margin-top: 46px;
}

.atoz-step span {
  color: #2563eb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.atoz-step h3 {
  margin: 18px 0 14px;
  font-size: clamp(24px, 3vw, 38px);
}

.atoz-step p {
  color: var(--soft);
}

.strength-system {
  display: grid;
  gap: 30px;
}

.strength-system__head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.strength-system__head .sec-kicker {
  grid-column: 1 / -1;
}

.strength-system__head .sec-title {
  max-width: 11ch;
}

.strength-system__head .sec-desc {
  margin-top: 0;
}

.strength-system__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(96, 165, 250, 0.18);
}

.strength-card {
  position: relative;
  min-height: 260px;
  grid-column: span 2;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(74, 222, 128, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.82)),
    #ffffff;
  overflow: hidden;
}

.strength-card--wide {
  grid-column: span 4;
}

.strength-card::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  transform: rotate(18deg);
}

.strength-card span,
.future-card span {
  position: relative;
  width: fit-content;
  color: #2563eb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.strength-card h3,
.strength-card p {
  position: relative;
}

.strength-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.8vw, 36px);
}

.strength-card p {
  margin: 0;
  color: var(--soft);
}

.build-system {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: 34px;
  align-items: start;
}

.build-system__head {
  display: grid;
  gap: 18px;
  padding-top: 6px;
}

.build-system__head .sec-title {
  max-width: 9ch;
}

.build-system__head .sec-desc {
  margin-top: 0;
}

.build-map {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.56);
  background-size: 34px 34px;
}

.build-map::before,
.build-map::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.34), rgba(74, 222, 128, 0.28));
  pointer-events: none;
}

.build-map::before {
  left: 39%;
  right: 21%;
  top: 50%;
  height: 2px;
}

.build-map::after {
  left: 50%;
  top: 22%;
  bottom: 22%;
  width: 2px;
}

.build-node {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(13, 42, 74, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.build-node--primary {
  grid-column: 1 / span 5;
  grid-row: 2 / span 6;
  color: #ffffff;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.88)),
    #0f172a;
}

.build-node:nth-child(2) {
  grid-column: 7 / span 5;
  grid-row: 1 / span 2;
}

.build-node:nth-child(3) {
  grid-column: 8 / span 4;
  grid-row: 4 / span 2;
}

.build-node:nth-child(4) {
  grid-column: 7 / span 5;
  grid-row: 7 / span 2;
}

.build-node span {
  color: #2563eb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.build-core__label {
  display: grid;
  gap: 8px;
}

.build-core__label span {
  color: #93c5fd;
}

.build-core__label strong {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
}

.build-core__screen {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.14) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(96, 165, 250, 0.22), transparent 42%),
    rgba(2, 6, 23, 0.72);
  background-size: 24px 24px, 24px 24px, auto, auto;
}

.build-core__screen::before {
  content: "";
  position: absolute;
  inset: 22% 18%;
  border: 1px solid rgba(74, 222, 128, 0.7);
  box-shadow: 0 0 28px rgba(74, 222, 128, 0.18);
}

.build-core__screen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 46%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.86), transparent);
  animation: coreScan 3.4s ease-in-out infinite;
}

.build-core__screen i {
  position: absolute;
  display: block;
  width: 38px;
  height: 22px;
  border: 1px solid rgba(96, 165, 250, 0.72);
  background: rgba(96, 165, 250, 0.12);
}

.build-core__screen i:nth-child(1) {
  left: 18%;
  top: 24%;
}

.build-core__screen i:nth-child(2) {
  right: 20%;
  top: 34%;
}

.build-core__screen i:nth-child(3) {
  left: 42%;
  bottom: 18%;
}

.build-node--primary p {
  color: #ffffff;
}

.build-node h3 {
  font-size: clamp(22px, 2.6vw, 34px);
}


.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #040811;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.intro-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-overlay__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(56, 189, 248, 0.18), transparent 28%),
    linear-gradient(180deg, #040811 0%, #060b16 100%);
}

.intro-overlay__content {
  position: relative;
  padding: 24px;
  text-align: center;
}

.intro-overlay__mark {
  width: 84px;
  height: 84px;
  margin: 0 auto;
  border-radius: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(123, 228, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #d9fbff;
  box-shadow: 0 0 80px rgba(34, 211, 238, 0.2);
  animation: introPulse 1.8s ease-in-out infinite;
}

.intro-overlay__eyebrow {
  margin-top: 30px;
  color: rgba(199, 245, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.intro-overlay__title {
  margin-top: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #f8fafc;
}

.intro-overlay__sub {
  margin-top: 14px;
  color: rgba(244, 248, 255, 0.5);
  font-size: 14px;
}

.intro-overlay__scan {
  position: relative;
  width: min(240px, 80vw);
  height: 1px;
  margin: 26px auto 0;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(123, 228, 255, 0.6), transparent);
}

.intro-overlay__scan span {
  position: absolute;
  top: -1px;
  left: -30%;
  width: 34%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  filter: blur(1px);
  animation: introScan 1.6s linear infinite;
}

.side-rail {
  position: fixed;
  top: 50%;
  left: 22px;
  z-index: 45;
  transform: translateY(-50%);
}

.side-rail__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.side-rail__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  color: rgba(15, 23, 42, 0.48);
  transition: background 0.2s ease, color 0.2s ease;
}

.side-rail__item span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.18);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.side-rail__item em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.side-rail__item:hover,
.side-rail__item.is-active {
  color: var(--text);
  background: rgba(96, 165, 250, 0.12);
}

.side-rail__item:hover span,
.side-rail__item.is-active span {
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.4);
}

.mobile-dock {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 52;
  width: min(calc(100% - 28px), 460px);
  transform: translateX(-50%);
}

.mobile-dock__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  padding: 8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mobile-dock a {
  padding: 11px 5px;
  border-radius: 18px;
  text-align: center;
  font-size: 10px;
  color: var(--soft);
}

.mobile-dock a:hover {
  background: rgba(96, 165, 250, 0.1);
}

.section-head,
.page-head {
  margin-bottom: 24px;
}

.section-frame {
  padding: 32px;
}

.service-grid,
.grid,
.info-grid,
.content-list,
.tech-pillars,
.project-list,
.news-list,
.dual-grid {
  display: grid;
  gap: 16px;
}

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

.content-list,
.project-list,
.news-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.card,
.shop-card,
.service-card,
.project-item,
.content-item,
.pillar,
.news-item,
.dual-card,
.career-panel,
.manifesto {
  padding: 24px;
}

.service-card h3,
.project-item h3,
.content-item h3,
.pillar h3,
.dual-card h3,
.card h3 {
  margin-bottom: 10px;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  align-items: start;
}

.shop-main {
  min-width: 0;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.shop-filter {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--soft);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.shop-filter:hover,
.shop-filter.active {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.34);
  background: #2563eb;
}

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

.shop-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.shop-card.is-hidden {
  display: none;
}

.shop-card__visual {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(96, 165, 250, 0.18), rgba(74, 222, 128, 0.12)),
    #ffffff;
}

.shop-card__visual span {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: #1f2937;
  box-shadow: 0 18px 38px rgba(31, 41, 55, 0.2);
}

.shop-card__visual--camera {
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.16), rgba(233, 147, 62, 0.14)),
    #ffffff;
}

.shop-card__visual--academy {
  background:
    linear-gradient(135deg, rgba(74, 222, 128, 0.16), rgba(96, 165, 250, 0.14)),
    #ffffff;
}

.shop-card__visual--unit {
  background:
    linear-gradient(135deg, rgba(31, 41, 55, 0.12), rgba(96, 165, 250, 0.16)),
    #ffffff;
}

.shop-card__visual--dryer {
  background:
    linear-gradient(135deg, rgba(236, 72, 153, 0.14), rgba(96, 165, 250, 0.16)),
    #ffffff;
}

.shop-card__visual--eye {
  background:
    linear-gradient(135deg, rgba(74, 222, 128, 0.14), rgba(79, 70, 229, 0.14)),
    #ffffff;
}

.shop-card__visual--kettle {
  background:
    linear-gradient(135deg, rgba(233, 147, 62, 0.16), rgba(96, 165, 250, 0.14)),
    #ffffff;
}

.shop-specs {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.shop-card__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.shop-card__buy strong {
  font-size: 20px;
  color: var(--text);
  white-space: nowrap;
}

.shop-detail-link {
  width: fit-content;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.product-visual {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-visual .shop-card__visual {
  min-height: 100%;
}

.product-detail-copy {
  padding: 32px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0;
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
}

.product-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

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

.spec-table {
  display: grid;
  gap: 10px;
  margin: 0;
}

.spec-table div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.spec-table dt {
  color: var(--muted);
  font-weight: 700;
}

.spec-table dd {
  margin: 0;
  color: var(--text);
}

.cart-panel {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.cart-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.cart-panel__head h2 {
  margin-top: 10px;
}

.cart-count {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1f2937;
  color: #ffffff;
  font-weight: 700;
}

.cart-items {
  display: grid;
  gap: 12px;
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}

.cart-empty {
  margin: 0;
  padding: 16px;
  border-radius: 12px;
  background: rgba(96, 165, 250, 0.08);
  color: var(--muted);
}

.cart-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.cart-item__top,
.cart-item__controls,
.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__top strong,
.cart-item__top span {
  font-size: 14px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.qty-control button,
.cart-remove {
  border: 0;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
}

.qty-control button {
  width: 34px;
  height: 34px;
  font-weight: 700;
}

.qty-control span {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
}

.cart-remove {
  font-size: 13px;
  font-weight: 700;
  color: #b45309;
}

.cart-summary {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-summary span {
  color: var(--muted);
}

.cart-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.checkout-form {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.project-tag,
.card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.project-item a,
.dual-card a {
  margin-top: 18px;
  display: inline-flex;
  color: var(--blue);
  font-weight: 700;
}

.case-stories__head,
.field-map__head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 46px;
}

.case-stories__head .sec-kicker,
.field-map__head .sec-kicker {
  grid-column: 1 / -1;
}

.case-stories__head .sec-title,
.field-map__head .sec-title {
  max-width: 10ch;
}

.case-stories__head .sec-desc,
.field-map__head .sec-desc {
  margin-top: 0;
}

.case-stories__list {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr) minmax(260px, 0.92fr);
  grid-template-rows: repeat(2, minmax(210px, auto));
  gap: 18px;
}

.case-story {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.78)),
    #ffffff;
}

.case-story::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.18) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.55;
}

.case-story--featured {
  grid-row: span 2;
  min-height: 440px;
  padding: 34px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.92)),
    radial-gradient(circle at 72% 22%, rgba(96, 165, 250, 0.36), transparent 34%),
    #0f172a;
}

.case-story--featured::before {
  width: 140px;
  height: 140px;
  border-color: rgba(191, 219, 254, 0.22);
  background:
    linear-gradient(90deg, rgba(191, 219, 254, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(191, 219, 254, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
}

.case-story--featured .project-tag {
  color: #bfdbfe;
  background: rgba(96, 165, 250, 0.18);
  border-color: rgba(191, 219, 254, 0.24);
}

.case-story--featured h3,
.case-story--featured p {
  color: #ffffff;
}

.case-story--featured h3 {
  max-width: 13ch;
  font-size: clamp(30px, 4vw, 54px);
}

.case-stories__list .case-story:nth-child(4) {
  grid-column: span 2;
}

.case-story > * {
  position: relative;
  z-index: 1;
}

.field-map {
  display: grid;
  gap: 0;
}

.client-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.client-wall > span {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--soft);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.field-map__wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(250px, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.48);
  background-size: 34px 34px;
}

.field-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(68px, auto) auto;
  align-items: start;
  gap: 14px;
  height: 100%;
  padding: 24px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  overflow: hidden;
}

.field-card::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  transform: rotate(18deg);
}

.field-card span {
  position: relative;
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
}

.field-card h3,
.field-card p {
  position: relative;
}

.field-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
}

.field-card p {
  align-self: start;
  margin: 0;
  color: var(--soft);
  line-height: 1.75;
}

.pillar span {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 28px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--cyan);
}

.tech-stack__head {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 42px;
}

.tech-stack__head .sec-kicker {
  grid-column: 1 / -1;
}

.tech-stack__head .sec-title {
  max-width: 10ch;
}

.tech-stack__head .sec-desc {
  margin-top: 0;
}

.tech-core {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background:
    radial-gradient(circle at 50% 48%, rgba(96, 165, 250, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(96, 165, 250, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.94));
  background-size: auto, 38px 38px, 38px 38px, auto;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.tech-core::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 110deg, transparent, rgba(96, 165, 250, 0.18), transparent, rgba(74, 222, 128, 0.14), transparent);
  animation: techOrbit 16s linear infinite;
}

.tech-core__pipeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(148, 163, 184, 0.18);
}

.tech-core__pipeline span {
  position: relative;
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(2, 6, 23, 0.72);
  color: rgba(226, 232, 240, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tech-core__pipeline span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #4ade80);
  animation: pipelineCharge 4.8s ease-in-out infinite;
}

.tech-core__pipeline span:nth-child(2)::after {
  animation-delay: 0.5s;
}

.tech-core__pipeline span:nth-child(3)::after {
  animation-delay: 1s;
}

.tech-core__pipeline span:nth-child(4)::after {
  animation-delay: 1.5s;
}

.tech-core__reactor {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(320px, 45vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -42%);
}

.tech-core__rings,
.tech-core__rings::before,
.tech-core__rings::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.42);
}

.tech-core__rings {
  animation: techSpin 12s linear infinite;
}

.tech-core__rings::before,
.tech-core__rings::after {
  content: "";
}

.tech-core__rings::before {
  inset: 12%;
  border-color: rgba(74, 222, 128, 0.36);
  animation: techSpin 7s linear infinite reverse;
}

.tech-core__rings::after {
  inset: 25%;
  border-style: dashed;
  border-color: rgba(191, 219, 254, 0.48);
}

.tech-core__reactor strong {
  position: relative;
  z-index: 2;
  width: 52%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.12;
  background:
    radial-gradient(circle, rgba(96, 165, 250, 0.34), rgba(15, 23, 42, 0.92) 64%),
    #0f172a;
  box-shadow:
    0 0 56px rgba(96, 165, 250, 0.36),
    inset 0 0 0 1px rgba(191, 219, 254, 0.24);
}

.tech-core__modules {
  position: absolute;
  z-index: 3;
  inset: 128px 30px 30px;
  pointer-events: none;
}

.tech-module {
  position: absolute;
  width: min(290px, 30%);
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(2, 6, 23, 0.66);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  pointer-events: auto;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.tech-module:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.56);
  background: rgba(15, 23, 42, 0.88);
}

.tech-module:nth-child(1) {
  left: 0;
  top: 9%;
}

.tech-module:nth-child(2) {
  right: 0;
  top: 25%;
}

.tech-module:nth-child(3) {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.tech-module:nth-child(3):hover {
  transform: translateX(-50%) translateY(-6px);
}

.tech-module span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #93c5fd;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.tech-module h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.tech-module p {
  color: rgba(226, 232, 240, 0.74);
  font-size: 14px;
}

.career-panel,
.cta-band,
.manifesto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p,
.career-panel p,
.manifesto p {
  color: var(--soft);
}

.contact-lab {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr) minmax(260px, 0.6fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(96, 165, 250, 0.18);
  box-shadow: var(--shadow);
}

.contact-lab__copy,
.contact-lab__route,
.contact-lab__action {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.82)),
    #ffffff;
}

.contact-lab__copy {
  padding: 34px;
}

.contact-lab__copy .sec-title {
  max-width: 9ch;
}

.contact-lab__route {
  display: grid;
}

.contact-lab__route article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px 18px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
}

.contact-lab__route article:last-child {
  border-bottom: 0;
}

.contact-lab__route span {
  grid-row: span 2;
  color: #2563eb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.contact-lab__route strong {
  color: var(--text);
  font-size: 18px;
}

.contact-lab__route p {
  color: var(--soft);
}

.contact-lab__action {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 18%, rgba(96, 165, 250, 0.34), transparent 34%),
    linear-gradient(135deg, #0f172a, #1e293b);
}

.contact-lab__action div {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.contact-lab__action span {
  color: #93c5fd;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-lab__action strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.45;
}

.contact-lab__action .btn {
  width: 100%;
}

.page-hero {
  padding: 40px 0 14px;
}

.page-hero--visual {
  position: relative;
  padding: 72px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(96, 165, 250, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.06), rgba(255, 255, 255, 0.62));
}

.page-hero--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

.page-hero--visual .page-hero-shell,
.page-hero--visual .product-detail-hero {
  position: relative;
  z-index: 1;
}

.page-hero--visual .page-hero-copy,
.page-hero--visual .product-detail-copy {
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.84)),
    #ffffff;
}

.page-cover--console {
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #0f172a, #1e293b);
  background-size: 28px 28px, 28px 28px, auto;
}

.page-cover--console img {
  background: rgba(255, 255, 255, 0.88);
}

.page-hero--immersive {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 74% 16%, rgba(96, 165, 250, 0.3), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(74, 222, 128, 0.13), transparent 26%),
    linear-gradient(135deg, #06101f 0%, #0f172a 58%, #111827 100%);
}

.page-hero--immersive::before {
  background:
    linear-gradient(90deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, black, transparent 92%);
}

.page-hero--immersive .page-hero-copy,
.page-hero--immersive .product-detail-copy {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.page-hero--immersive .page-hero-copy h1,
.page-hero--immersive .product-detail-copy h1,
.page-hero--immersive .product-price,
.page-hero--immersive .quick-facts strong {
  color: #ffffff;
}

.page-hero--immersive .page-intro,
.page-hero--immersive .product-price span,
.page-hero--immersive .hint,
.page-hero--immersive .quick-facts p {
  color: rgba(226, 232, 240, 0.76);
}

.page-hero--immersive .quick-facts .card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.hero-console {
  position: relative;
  min-height: 430px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.18);
  background:
    linear-gradient(90deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px),
    rgba(2, 6, 23, 0.72);
  background-size: 30px 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.18), transparent 34%);
  animation: aiBeamDrift 9s ease-in-out infinite alternate;
}

.hero-console > * {
  position: relative;
  z-index: 1;
}

.line-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  background: rgba(125, 211, 252, 0.16);
}

.line-flow span {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.86);
  font-size: 12px;
  font-weight: 800;
}

.line-stage {
  position: relative;
  height: 300px;
}

.line-camera {
  position: absolute;
  left: 7%;
  top: 34%;
  width: 92px;
  height: 54px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: rgba(15, 23, 42, 0.82);
}

.line-camera::after {
  content: "";
  position: absolute;
  right: -210px;
  top: 50%;
  width: 210px;
  height: 1px;
  background: linear-gradient(90deg, #7dd3fc, transparent);
}

.line-object {
  position: absolute;
  left: 42%;
  top: 42%;
  width: 128px;
  height: 88px;
  border: 1px solid rgba(74, 222, 128, 0.36);
  transform: rotate(-6deg);
}

.line-object i {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(74, 222, 128, 0.8);
}

.line-object i:nth-child(1) { left: 18px; top: 18px; }
.line-object i:nth-child(2) { right: 20px; top: 24px; }
.line-object i:nth-child(3) { left: 54px; bottom: 18px; }

.line-detect {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid rgba(125, 211, 252, 0.3);
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.line-detect--ok { right: 18%; top: 30%; }
.line-detect--ng { right: 10%; bottom: 24%; color: #fde68a; }

.line-scan {
  position: absolute;
  left: 34%;
  top: 8%;
  width: 2px;
  height: 78%;
  background: linear-gradient(180deg, transparent, #7dd3fc, transparent);
  animation: inspectionScan 2.4s linear infinite;
}

.hero-console--matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.matrix-core {
  grid-column: 1 / -1;
  justify-self: center;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.38);
  color: #ffffff;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  box-shadow: 0 0 60px rgba(96, 165, 250, 0.24);
}

.hero-console--matrix span,
.hero-console--network span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.18);
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.76);
  font-weight: 800;
  text-align: center;
}

.hero-console--cases,
.hero-console--route,
.hero-console--library,
.hero-console--timeline {
  display: grid;
  gap: 12px;
  align-content: center;
}

.hero-console--cases article,
.hero-console--route article,
.hero-console--library article,
.hero-console--timeline article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  background: rgba(15, 23, 42, 0.78);
  color: #dbeafe;
}

.hero-console--cases article.is-active {
  border-color: rgba(74, 222, 128, 0.44);
  background: rgba(21, 128, 61, 0.18);
}

.hero-console--cases span,
.hero-console--route span,
.hero-console--library span,
.hero-console--timeline time {
  color: #7dd3fc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-console--cases em {
  color: rgba(226, 232, 240, 0.62);
  font-style: normal;
}

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

.hero-console--route article {
  min-height: 150px;
  align-content: end;
}

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

.hero-console--library article {
  min-height: 160px;
  align-content: space-between;
}

.hero-console--timeline article {
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
}

.hero-console--network {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 10px;
}

.network-core {
  grid-column: 3 / 5;
  grid-row: 2 / 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.36);
  color: #ffffff;
  background: rgba(21, 128, 61, 0.16);
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.hero-console--network span:nth-of-type(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
.hero-console--network span:nth-of-type(2) { grid-column: 5 / 7; grid-row: 1 / 2; }
.hero-console--network span:nth-of-type(3) { grid-column: 1 / 3; grid-row: 4 / 5; }
.hero-console--network span:nth-of-type(4) { grid-column: 5 / 7; grid-row: 4 / 5; }
.hero-console--network span:nth-of-type(5) { grid-column: 3 / 5; grid-row: 5 / 6; }

/* Page-specific hero compositions */
.hero-solutions .page-hero-shell {
  grid-template-columns: 1fr;
}

.hero-solutions .page-hero-copy {
  width: min(880px, 100%);
  padding: 0 0 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-solutions .page-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(44px, 7vw, 92px);
}

.hero-solutions .quick-facts {
  max-width: 860px;
}

.hero-solutions .hero-console {
  min-height: 350px;
}

.hero-technology {
  background:
    radial-gradient(circle at 62% 42%, rgba(34, 211, 238, 0.2), transparent 24%),
    linear-gradient(115deg, #020617 0%, #071a1d 52%, #111827 100%);
}

.hero-technology .page-hero-shell {
  grid-template-columns: minmax(280px, 0.68fr) minmax(480px, 1.32fr);
  align-items: center;
}

.hero-technology .page-hero-copy {
  padding: 12px 10px 12px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

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

.hero-technology .hero-console--matrix {
  min-height: 560px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
}

.hero-technology .matrix-core {
  grid-column: 3 / 5;
  grid-row: 2 / 5;
  width: 210px;
  height: 210px;
}

.hero-technology .hero-console--matrix span:nth-of-type(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
.hero-technology .hero-console--matrix span:nth-of-type(2) { grid-column: 5 / 7; grid-row: 1 / 2; }
.hero-technology .hero-console--matrix span:nth-of-type(3) { grid-column: 1 / 3; grid-row: 3 / 4; }
.hero-technology .hero-console--matrix span:nth-of-type(4) { grid-column: 5 / 7; grid-row: 3 / 4; }
.hero-technology .hero-console--matrix span:nth-of-type(5) { grid-column: 1 / 3; grid-row: 5 / 6; }
.hero-technology .hero-console--matrix span:nth-of-type(6) { grid-column: 5 / 7; grid-row: 5 / 6; }

.hero-cases {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(31, 41, 55, 0.9)),
    #111827;
}

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

.hero-cases .page-hero-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px 34px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-cases .sec-kicker,
.hero-cases .quick-facts {
  grid-column: 1 / -1;
}

.hero-cases .page-intro {
  align-self: end;
}

.hero-cases .hero-console--cases {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 230px;
  align-content: stretch;
}

.hero-cases .hero-console--cases article {
  align-content: end;
}

.hero-contact {
  background:
    radial-gradient(circle at 22% 50%, rgba(74, 222, 128, 0.2), transparent 25%),
    linear-gradient(120deg, #07140f, #0f172a 54%, #111827);
}

.hero-contact .hero-console {
  order: 1;
}

.hero-contact .page-hero-copy {
  order: 2;
  align-self: center;
  padding: 18px 0 18px 28px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-contact .hero-console--route {
  grid-template-columns: 1fr;
  min-height: 520px;
}

.hero-contact .hero-console--route article {
  min-height: 0;
  grid-template-columns: 54px 1fr;
  align-items: center;
}

.hero-downloads {
  background:
    linear-gradient(90deg, rgba(219, 234, 254, 0.9) 1px, transparent 1px),
    linear-gradient(180deg, rgba(219, 234, 254, 0.9) 1px, transparent 1px),
    #f8fafc;
  background-size: 48px 48px;
}

.hero-downloads::before {
  opacity: 0.18;
}

.hero-downloads .page-hero-copy {
  padding: 18px 18px 18px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-downloads .page-hero-copy h1,
.hero-downloads .quick-facts strong {
  color: #0f172a;
}

.hero-downloads .page-intro,
.hero-downloads .quick-facts p {
  color: #475569;
}

.hero-downloads .quick-facts .card {
  border-color: rgba(37, 99, 235, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

.hero-downloads .hero-console--library {
  min-height: 520px;
  padding: 18px;
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 70px rgba(30, 64, 175, 0.12);
}

.hero-downloads .hero-console--library::before {
  display: none;
}

.hero-downloads .hero-console--library article {
  color: #0f172a;
  border-color: rgba(37, 99, 235, 0.14);
  background: #ffffff;
}

.hero-news {
  background:
    radial-gradient(circle at 18% 20%, rgba(251, 191, 36, 0.14), transparent 22%),
    linear-gradient(135deg, #171717, #292524 55%, #111827);
}

.hero-news .page-hero-shell {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.hero-news .page-hero-copy {
  align-self: end;
  padding: 0 28px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-news .hero-console--timeline {
  min-height: 540px;
  padding-left: 56px;
}

.hero-news .hero-console--timeline::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 54px;
  bottom: 54px;
  width: 2px;
  background: linear-gradient(#fbbf24, rgba(251, 191, 36, 0.08));
}

.hero-news .hero-console--timeline article {
  min-height: 88px;
  border-left: 3px solid #fbbf24;
}

.hero-partners {
  min-height: 760px;
  background:
    radial-gradient(circle at 66% 48%, rgba(74, 222, 128, 0.18), transparent 26%),
    linear-gradient(135deg, #06110d, #0f172a 58%, #111827);
}

.hero-partners .page-hero-shell {
  position: relative;
  display: block;
}

.hero-partners .page-hero-copy {
  position: absolute;
  left: 0;
  top: 70px;
  z-index: 3;
  width: min(520px, 46%);
  padding: 30px;
  background: rgba(6, 17, 13, 0.86);
}

.hero-partners .hero-console--network {
  min-height: 600px;
  padding-left: 45%;
}

/* Softer top-of-page integration */
html {
  scroll-padding-top: 82px;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.5));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px) saturate(1.15);
}

.header-inner {
  min-height: 74px;
  gap: 14px;
}

.logo img {
  height: 36px;
}

.site-nav {
  flex-wrap: nowrap;
  gap: 1px;
}

.site-nav a {
  position: relative;
  padding: 9px 8px;
  border: 0;
  border-radius: 0;
  color: rgba(226, 232, 240, 0.68);
  font-size: 12px;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 2px;
  height: 1px;
  background: #7dd3fc;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: transparent;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.page-hero--immersive {
  min-height: min(780px, 100vh);
  padding-top: 130px;
  padding-bottom: 86px;
}

.page-hero--immersive::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(248, 250, 252, 0.96));
  pointer-events: none;
}

.page-hero--immersive .page-hero-shell,
.page-hero--immersive .product-detail-hero {
  align-items: center;
}

.page-hero--immersive .page-hero-copy,
.page-hero--immersive .product-detail-copy {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.page-hero--immersive .page-hero-copy h1,
.page-hero--immersive .product-detail-copy h1 {
  line-height: 1.08;
}

.page-hero--immersive .quick-facts {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero--immersive .quick-facts .card {
  min-height: 98px;
  padding: 16px 18px 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.page-hero--immersive .quick-facts .card:first-child {
  padding-left: 0;
}

.page-hero--immersive .quick-facts .card:last-child {
  border-right: 0;
}

.hero-console {
  border-color: rgba(125, 211, 252, 0.12);
  background-color: rgba(2, 6, 23, 0.54);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.18);
}

.hero-console--cases article,
.hero-console--route article,
.hero-console--library article,
.hero-console--timeline article,
.hero-console--matrix span,
.hero-console--network span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.58);
}

.hero-downloads::after {
  background: linear-gradient(180deg, transparent, #ffffff);
}

.hero-downloads .quick-facts {
  border-top-color: rgba(37, 99, 235, 0.16);
}

.hero-downloads .quick-facts .card {
  border-right: 1px solid rgba(37, 99, 235, 0.14);
  background: transparent;
}

.hero-downloads .quick-facts .card:last-child {
  border-right: 0;
}

.hero-visual {
  margin-top: 0;
}

.hero-visual__content {
  padding-top: 116px;
}

@media (max-width: 1120px) and (min-width: 861px) {
  .header-inner {
    gap: 8px;
  }

  .site-nav a {
    padding-inline: 6px;
    font-size: 11px;
  }

  .site-nav a::after {
    left: 6px;
    right: 6px;
  }
}

.inner-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 34px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background:
    radial-gradient(circle at 82% 16%, rgba(96, 165, 250, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94));
  box-shadow: var(--shadow);
}

.inner-cta h2,
.inner-cta p,
.inner-cta .sec-kicker {
  color: #ffffff;
}

.inner-cta .sec-kicker {
  border-color: rgba(191, 219, 254, 0.24);
  background: rgba(96, 165, 250, 0.16);
}

.solution-flow {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1.46fr);
  gap: 34px;
  align-items: start;
}

.solution-flow__intro {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 18px;
}

.solution-flow__intro .sec-title {
  max-width: 9ch;
}

.solution-flow__intro .sec-desc {
  margin-top: 0;
}

.solution-flow__hint {
  padding: 16px;
  border-left: 3px solid #2563eb;
  background: rgba(255, 255, 255, 0.72);
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
}

.solution-flow__stage {
  display: grid;
  gap: 18px;
}

.solution-flow__visual {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.2);
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 72% 24%, rgba(74, 222, 128, 0.16), transparent 30%),
    linear-gradient(135deg, #0f172a, #1e293b);
  background-size: 32px 32px, 32px 32px, auto, auto;
  box-shadow: var(--shadow);
}

.solution-flow__visual::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 16%;
  height: 118px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.2) 0 18px, rgba(15, 23, 42, 0.44) 18px 48px),
    rgba(15, 23, 42, 0.5);
  transform: perspective(620px) rotateX(52deg);
  animation: solutionBelt 3.4s linear infinite;
}

.solution-flow__camera {
  position: absolute;
  left: 9%;
  top: 12%;
  width: 190px;
  height: 88px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background:
    radial-gradient(circle at 30% 50%, rgba(2, 6, 23, 1) 0 22%, transparent 23%),
    linear-gradient(135deg, rgba(148, 163, 184, 0.85), rgba(30, 41, 59, 0.76));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  animation: heroFloatSlow 6s ease-in-out infinite;
}

.solution-flow__camera span {
  position: absolute;
  left: 24%;
  top: 28%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.78);
  box-shadow: 0 0 30px rgba(96, 165, 250, 0.32);
}

.solution-flow__object {
  position: absolute;
  left: 52%;
  top: 56%;
  width: min(280px, 38%);
  aspect-ratio: 1.5;
  transform: translate(-50%, -50%) rotate(-9deg);
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.72) 0 8%, transparent 9%),
    radial-gradient(circle at 68% 60%, rgba(255, 255, 255, 0.56) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(148, 163, 184, 0.98), rgba(30, 41, 59, 0.94));
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.42);
  animation: solutionObject 5s ease-in-out infinite;
}

.solution-flow__object i {
  position: absolute;
  display: block;
  width: 18%;
  height: 16%;
  border-radius: 50%;
  border: 1px solid rgba(226, 232, 240, 0.64);
  background: rgba(15, 23, 42, 0.5);
}

.solution-flow__object i:nth-child(1) {
  left: 20%;
  top: 24%;
}

.solution-flow__object i:nth-child(2) {
  right: 18%;
  top: 28%;
}

.solution-flow__object i:nth-child(3) {
  left: 43%;
  bottom: 18%;
}

.solution-flow__box {
  position: absolute;
  z-index: 3;
  width: 120px;
  min-height: 70px;
  padding: 9px;
  border: 1px solid currentColor;
  background: rgba(2, 6, 23, 0.44);
  color: #4ade80;
  animation: detectFlicker 4s ease-in-out infinite;
}

.solution-flow__box strong,
.solution-flow__box em {
  display: block;
  font-style: normal;
}

.solution-flow__box em {
  margin-top: 18px;
  color: rgba(226, 232, 240, 0.76);
}

.solution-flow__box--ok {
  left: 46%;
  top: 34%;
}

.solution-flow__box--warn {
  right: 10%;
  top: 52%;
  color: #f59e0b;
}

.solution-flow__scan {
  position: absolute;
  left: 0;
  top: -20%;
  width: 100%;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(74, 222, 128, 0.18), transparent);
  transform: rotate(-5deg);
  animation: heroScan 4.2s linear infinite;
}

.solution-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(148, 163, 184, 0.18);
}

.solution-flow__steps article {
  position: relative;
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.solution-flow__steps article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #4ade80);
  animation: pipelineCharge 5.2s ease-in-out infinite;
}

.solution-flow__steps article:nth-child(2)::before {
  animation-delay: 0.5s;
}

.solution-flow__steps article:nth-child(3)::before {
  animation-delay: 1s;
}

.solution-flow__steps article:nth-child(4)::before {
  animation-delay: 1.5s;
}

.solution-flow__steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #2563eb;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.solution-flow__steps h3 {
  margin-bottom: 10px;
}

.solution-units {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(96, 165, 250, 0.18);
}

.solution-modules {
  display: grid;
  gap: 28px;
}

.solution-modules__head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.solution-modules__head .sec-kicker {
  grid-column: 1 / -1;
}

.solution-modules__head .sec-title {
  max-width: 10ch;
}

.solution-modules__head .sec-desc {
  margin-top: 0;
}

.solution-unit {
  min-height: 260px;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.78)),
    #ffffff;
}

.solution-unit .project-tag {
  margin-bottom: 18px;
}

.solution-unit h3 {
  margin-bottom: 14px;
}

.product-matrix {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  grid-template-rows: repeat(3, minmax(170px, auto));
  gap: 1px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(96, 165, 250, 0.18);
}

.product-module {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.8)),
    #ffffff;
}

.product-module--main {
  grid-row: span 3;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 18%, rgba(96, 165, 250, 0.34), transparent 34%),
    linear-gradient(135deg, #0f172a, #1e293b);
}

.product-module--main .project-tag,
.product-module--main h3,
.product-module--main p,
.product-module--main dt,
.product-module--main dd {
  color: #ffffff;
}

.product-module h3 {
  font-size: clamp(24px, 3vw, 42px);
}

.product-module dl {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
}

.product-module dl div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.product-module dt,
.product-module dd {
  margin: 0;
  color: var(--soft);
}

.product-combo {
  display: grid;
  gap: 24px;
}

.product-combo__head {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.product-combo__head .sec-kicker {
  grid-column: 1 / -1;
}

.product-combo__line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.18);
}

.product-combo__line span {
  min-height: 72px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

.case-detail-list {
  display: grid;
  gap: 18px;
}

.case-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 1px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(96, 165, 250, 0.18);
  box-shadow: var(--shadow);
}

.case-detail__head,
.case-detail__body section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.8)),
    #ffffff;
}

.case-detail__head {
  display: grid;
  align-content: end;
  padding: 28px;
}

.case-detail__head h3 {
  max-width: 14ch;
}

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

.case-detail__body section {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.case-detail__body span {
  color: #2563eb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.project-showcase {
  display: grid;
  gap: 28px;
}

.project-showcase__head {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
}

.project-showcase__head .sec-kicker {
  grid-column: 1 / -1;
}

.project-showcase__head .sec-title {
  max-width: 10ch;
}

.project-showcase__head .sec-desc {
  margin-top: 0;
}

.project-showcase__item {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 1px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(96, 165, 250, 0.18);
  box-shadow: var(--shadow);
}

.project-showcase__item--reverse {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
}

.project-showcase__item--reverse .project-film {
  order: 2;
}

.project-film {
  position: relative;
  min-height: 360px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #0f172a, #1e293b);
  background-size: 32px 32px, 32px 32px, auto;
}

.project-film__image {
  width: 100%;
  height: 100%;
  min-height: 324px;
  display: block;
  object-fit: cover;
}

.project-film__caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  display: grid;
  gap: 6px;
  padding: 18px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.project-film__caption span {
  color: #93c5fd;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.project-film__caption strong {
  font-size: clamp(22px, 3vw, 36px);
}

.project-film video {
  width: 100%;
  height: 100%;
  min-height: 324px;
  display: block;
  object-fit: cover;
}

.project-film__placeholder {
  position: relative;
  min-height: 324px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 24px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background:
    radial-gradient(circle at 64% 28%, rgba(96, 165, 250, 0.26), transparent 34%),
    rgba(2, 6, 23, 0.42);
}

.project-film__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  animation: aiGridFloat 16s linear infinite;
}

.project-film__placeholder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18%;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(74, 222, 128, 0.18), transparent);
  transform: rotate(-5deg);
  animation: heroScan 4.8s linear infinite;
}

.project-film__placeholder > * {
  position: relative;
  z-index: 1;
}

.project-film__placeholder span {
  color: #93c5fd;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.project-film__placeholder strong {
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.05;
}

.project-film__placeholder p {
  color: rgba(226, 232, 240, 0.72);
}

.project-showcase__copy {
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.84)),
    #ffffff;
}

.project-showcase__copy h3 {
  max-width: 14ch;
  font-size: clamp(28px, 4vw, 50px);
}

.project-showcase__copy dl {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
}

.project-showcase__copy dl div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.project-showcase__copy dt,
.project-showcase__copy dd {
  margin: 0;
}

.project-showcase__copy dt {
  color: #2563eb;
  font-weight: 800;
}

.project-showcase__copy dd {
  color: var(--soft);
}

.capability-lab {
  display: grid;
  gap: 34px;
}

.capability-lab__head,
.application-map__head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.capability-lab__head .sec-kicker,
.application-map__head .sec-kicker {
  grid-column: 1 / -1;
}

.capability-lab__head .sec-title,
.application-map__head .sec-title {
  max-width: 10ch;
}

.capability-lab__head .sec-title,
.capability-lab__head .sec-desc,
.capability-lab__head .sec-kicker {
  color: #ffffff;
}

.capability-lab__head .sec-kicker {
  border-color: rgba(191, 219, 254, 0.24);
  background: rgba(96, 165, 250, 0.16);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(148, 163, 184, 0.22);
}

.capability-card {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.82)),
    #0f172a;
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.7;
}

.capability-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #4ade80);
  animation: pipelineCharge 5.6s ease-in-out infinite;
}

.capability-card:nth-child(2)::after {
  animation-delay: 0.4s;
}

.capability-card:nth-child(3)::after {
  animation-delay: 0.8s;
}

.capability-card:nth-child(4)::after {
  animation-delay: 1.2s;
}

.capability-card:nth-child(5)::after {
  animation-delay: 1.6s;
}

.capability-card:nth-child(6)::after {
  animation-delay: 2s;
}

.capability-card > * {
  position: relative;
  z-index: 1;
}

.capability-card span {
  color: #93c5fd;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.capability-card h3 {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 38px);
}

.capability-card p,
.capability-card li {
  color: rgba(226, 232, 240, 0.78);
}

.capability-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  padding: 7px 9px;
  border: 1px solid rgba(147, 197, 253, 0.22);
  background: rgba(96, 165, 250, 0.1);
  font-size: 12px;
}

.application-map {
  display: grid;
  gap: 30px;
}

.application-map__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.56);
  background-size: 34px 34px;
}

.application-map__grid span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--soft);
  font-weight: 800;
  text-align: center;
}

.application-map__grid span:nth-child(1),
.application-map__grid span:nth-child(5) {
  grid-column: span 4;
}

.application-map__grid span:nth-child(2),
.application-map__grid span:nth-child(4),
.application-map__grid span:nth-child(7) {
  grid-column: span 3;
}

.application-map__grid span:nth-child(3),
.application-map__grid span:nth-child(6),
.application-map__grid span:nth-child(8) {
  grid-column: span 5;
}

.future-tech {
  display: grid;
  gap: 28px;
}

.future-tech__head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.future-tech__head .sec-kicker {
  grid-column: 1 / -1;
}

.future-tech__head .sec-title {
  max-width: 11ch;
}

.future-tech__head .sec-desc {
  margin-top: 0;
}

.future-tech__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  background: rgba(96, 165, 250, 0.2);
}

.future-card {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.84)),
    #0f172a;
}

.future-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.68;
}

.future-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #4ade80, transparent);
}

.future-card > * {
  position: relative;
  z-index: 1;
}

.future-card span {
  color: #93c5fd;
}

.future-card h3 {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 38px);
}

.future-card p {
  color: rgba(226, 232, 240, 0.78);
}

.future-tech--dark .future-tech__head .sec-title {
  color: #ffffff;
}

.partner-snapshot,
.news-snapshot,
.partner-directory,
.news-room {
  display: grid;
  gap: 28px;
}

.partner-snapshot__head,
.news-snapshot__head,
.partner-directory__head,
.news-room__head {
  max-width: 760px;
}

.partner-snapshot__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.05fr;
  gap: 16px;
  align-items: stretch;
}

.partner-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.7)),
    radial-gradient(circle at 85% 18%, rgba(96, 165, 250, 0.24), transparent 34%);
  overflow: hidden;
}

.partner-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  transform: rotate(18deg);
}

.partner-card span,
.partner-profile span,
.news-card span,
.news-entry span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-card h3,
.news-card h3,
.partner-profile h3,
.news-entry h3 {
  margin: 0 0 12px;
  color: var(--text);
}

.partner-card p,
.partner-profile p,
.news-entry p {
  color: var(--soft);
}

.news-snapshot__list {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 14px;
}

.news-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-direction: column;
}

.news-card:first-child {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 64, 175, 0.82)),
    #0f172a;
}

.news-card:first-child h3,
.news-card:first-child time {
  color: #ffffff;
}

.news-card:first-child span {
  border-color: rgba(125, 211, 252, 0.24);
  background: rgba(125, 211, 252, 0.12);
  color: #bae6fd;
}

.news-card time,
.news-entry time {
  margin-bottom: 12px;
  color: var(--soft);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.text-link {
  width: fit-content;
  color: var(--blue);
  font-weight: 800;
}

.partner-directory__grid,
.news-room__list {
  display: grid;
  gap: 16px;
}

.partner-profile,
.news-entry {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.partner-profile__logo {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.08)),
    #ffffff;
  color: #1d4ed8;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.partner-profile ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.partner-profile li,
.news-categories span {
  padding: 8px 10px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: rgba(37, 99, 235, 0.07);
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.partner-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
}

.partner-flow .sec-title {
  color: #ffffff;
}

.partner-flow__steps {
  display: grid;
  gap: 12px;
}

.partner-flow__steps article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.partner-flow__steps span {
  grid-row: span 2;
  color: #7dd3fc;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.partner-flow__steps strong {
  color: #ffffff;
}

.partner-flow__steps p {
  color: rgba(226, 232, 240, 0.76);
}

.news-entry {
  grid-template-columns: 130px 110px minmax(0, 1fr);
}

.news-entry time {
  margin: 0;
}

.news-entry span {
  margin: 0;
  align-self: start;
}

.news-entry h3 {
  margin-bottom: 8px;
}

.news-entry p {
  grid-column: 3;
}

.news-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 24px;
}

.quick-facts {
  margin-top: 26px;
}

.quick-facts .card {
  padding: 18px;
}

.quick-facts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.page-cover {
  min-height: 420px;
  display: grid;
  align-content: center;
}

.page-stack {
  display: grid;
  gap: 22px;
}

.split-story {
  display: grid;
  gap: 24px;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: stretch;
}

.split-block.alt {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-copy,
.split-media {
  padding: 24px;
}

.split-media {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.split-media img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline .card {
  border-left: 3px solid rgba(123, 228, 255, 0.44);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

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

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--soft);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(175, 208, 255, 0.18);
  border-radius: 10px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
}

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

label:has(input[type="checkbox"]) {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

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

input::placeholder,
textarea::placeholder {
  color: #7f8ba8;
}

.hint {
  font-size: 13px;
  color: var(--muted);
}

.ppt-frame-card {
  display: grid;
  gap: 14px;
}

.ppt-frame-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.ppt-frame {
  width: 100%;
  min-height: 680px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.section-lite {
  opacity: 0.86;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-lite.section-in {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 110px;
  background: #1f2937;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.fixed-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fixed-cta a {
  min-width: 132px;
}

@keyframes introPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 80px rgba(34, 211, 238, 0.2);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 100px rgba(34, 211, 238, 0.28);
  }
}

@keyframes introScan {
  from {
    left: -30%;
  }
  to {
    left: 110%;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes heroVideoPan {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(3%, 2%, 0) scale(1.04);
  }
}

@keyframes heroMediaDrift {
  from {
    transform: scale(1.02) translate3d(-0.6%, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(1.2%, -0.8%, 0);
  }
}

@keyframes heroGridMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 72px, 72px 0;
  }
}

@keyframes heroFloatSlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes heroBeltMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 96px 0, 0 0;
  }
}

@keyframes inspectedPart {
  0%,
  100% {
    transform: translate(-56%, -50%) rotate(-12deg);
  }
  50% {
    transform: translate(-42%, -50%) rotate(-8deg);
  }
}

@keyframes heroScan {
  from {
    transform: translateY(-120%) rotate(-4deg);
  }
  to {
    transform: translateY(620%) rotate(-4deg);
  }
}

@keyframes detectFlicker {
  0%,
  100% {
    opacity: 0.72;
  }
  18%,
  64% {
    opacity: 1;
  }
  72% {
    opacity: 0.44;
  }
}

@keyframes coreScan {
  0%,
  100% {
    transform: translateY(-54px);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 1;
  }
  50% {
    transform: translateY(58px);
  }
}

@keyframes techOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes techSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pipelineCharge {
  0%,
  100% {
    right: 100%;
    opacity: 0;
  }
  24%,
  72% {
    opacity: 1;
  }
  58% {
    right: 0;
  }
}

@keyframes solutionBelt {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 96px 0, 0 0;
  }
}

@keyframes solutionObject {
  0%,
  100% {
    transform: translate(-56%, -50%) rotate(-11deg);
  }
  50% {
    transform: translate(-42%, -50%) rotate(-7deg);
  }
}

@keyframes aiBeamDrift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(3%, 2%, 0) scale(1.04);
  }
}

@keyframes aiGridFloat {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 96px 96px, 96px 96px;
  }
}

@keyframes aiScan {
  0%,
  100% {
    transform: translateY(-42vh) rotate(-8deg);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 1;
  }
  50% {
    transform: translateY(78vh) rotate(-8deg);
  }
}

@keyframes aiNodePulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.95;
  }
}

@keyframes inspectionScan {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-background,
  .ai-background *,
  .ai-background::before,
  .ai-background::after {
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  .hero-solutions .page-hero-shell,
  .hero-technology .page-hero-shell,
  .hero-cases .page-hero-shell,
  .hero-contact .page-hero-shell,
  .hero-downloads .page-hero-shell,
  .hero-news .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-technology .page-hero-copy,
  .hero-contact .page-hero-copy,
  .hero-news .page-hero-copy {
    padding: 0;
  }

  .hero-technology .quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-technology .hero-console--matrix {
    min-height: 460px;
  }

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

  .hero-cases .page-intro,
  .hero-cases .page-hero-copy h1 {
    grid-column: 1 / -1;
  }

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

  .hero-contact .hero-console {
    order: 2;
  }

  .hero-contact .page-hero-copy {
    order: 1;
  }

  .hero-contact .hero-console--route,
  .hero-downloads .hero-console--library,
  .hero-news .hero-console--timeline {
    min-height: auto;
  }

  .hero-partners {
    min-height: auto;
  }

  .hero-partners .page-hero-shell {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-partners .page-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .hero-partners .hero-console--network {
    min-height: 460px;
    padding-left: 26px;
  }

  .hero-grid,
  .page-hero-shell,
  .product-detail-hero,
  .shop-layout,
  .split-block,
  .split-block.alt {
    grid-template-columns: 1fr;
  }

  .content-list,
  .project-list,
  .product-detail-grid,
  .tech-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy,
  .page-hero-copy,
  .page-cover {
    padding: 28px;
  }

  .cart-panel {
    position: static;
  }

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

  .vision-band__intro {
    position: static;
  }

  .atoz-flow__head,
  .strength-system__head,
  .case-stories__head,
  .field-map__head,
  .tech-stack__head,
  .future-tech__head,
  .contact-lab,
  .solution-flow,
  .build-system {
    grid-template-columns: 1fr;
  }

  .atoz-flow__track {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 0;
  }

  .atoz-flow__track::before {
    left: 14px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .atoz-step,
  .atoz-step:nth-child(even) {
    margin-top: 0;
    margin-left: 34px;
    min-height: auto;
    border: 1px solid var(--line);
  }

  .atoz-step::before {
    left: -27px;
    top: 28px;
  }

  .build-map {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .build-map::before,
  .build-map::after {
    display: none;
  }

  .build-node,
  .build-node--primary,
  .build-node:nth-child(2),
  .build-node:nth-child(3),
  .build-node:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .case-stories__list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .case-story--featured {
    grid-row: auto;
    min-height: 330px;
  }

  .case-stories__list .case-story:nth-child(4) {
    grid-column: auto;
  }

  .strength-system__grid,
  .future-tech__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strength-card,
  .strength-card--wide {
    grid-column: auto;
  }

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

  .tech-core {
    min-height: auto;
    display: grid;
    gap: 22px;
  }

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

  .tech-core__reactor,
  .tech-core__modules {
    position: relative;
    inset: auto;
  }

  .tech-core__reactor {
    left: auto;
    top: auto;
    width: min(280px, 72vw);
    justify-self: center;
    transform: none;
  }

  .tech-core__modules {
    display: grid;
    gap: 12px;
  }

  .tech-module,
  .tech-module:nth-child(1),
  .tech-module:nth-child(2),
  .tech-module:nth-child(3) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .tech-module:hover,
  .tech-module:nth-child(3):hover {
    transform: translateY(-4px);
  }

  .solution-flow__intro {
    position: static;
  }

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

  .solution-modules__head {
    grid-template-columns: 1fr;
  }

  .product-matrix,
  .product-combo__head,
  .project-showcase__head,
  .project-showcase__item,
  .project-showcase__item--reverse,
  .capability-lab__head,
  .application-map__head,
  .partner-snapshot__grid,
  .partner-flow,
  .case-detail {
    grid-template-columns: 1fr;
  }

  .hero-console {
    min-height: 360px;
  }

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

  .hero-console--matrix,
  .hero-console--library,
  .hero-console--route {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-console--network {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .network-core,
  .hero-console--network span:nth-of-type(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .project-showcase__item--reverse .project-film {
    order: 0;
  }

  .product-module--main {
    grid-row: auto;
  }

  .product-combo__line,
  .case-detail__body {
    grid-template-columns: 1fr;
  }

  .solution-flow__visual {
    min-height: 360px;
  }

  .solution-flow__camera {
    width: 160px;
  }

  .hero-video__camera {
    width: 210px;
  }

  .hero-video__belt {
    right: -10%;
    width: 760px;
  }

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

  .hero-visual__metrics .metric {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .side-rail {
    display: none;
  }

  .mobile-dock {
    display: block;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(31, 41, 55, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
  }

  .service-grid,
  .info-grid,
  .product-grid,
  .product-detail-grid,
  .content-list,
  .project-list,
  .tech-pillars,
  .news-snapshot__list,
  .future-tech__grid,
  .strength-system__grid,
  .vision-band__grid,
  .dual-grid,
  .client-wall,
  .metric-strip,
  .quick-facts,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .career-panel,
  .cta-band,
  .manifesto,
  .ppt-frame-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-floating {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .inspection-console {
    min-height: 360px;
  }

  .inspection-console__bottom {
    grid-template-columns: 1fr;
  }

  .vision-feature,
  .vision-feature:nth-child(2),
  .vision-feature:nth-child(3) {
    margin-left: 0;
  }

  .hero-visual {
    min-height: calc(100vh - 76px);
  }

  .hero-visual__content {
    min-height: calc(100vh - 76px);
  }

  .hero-video__hud {
    left: 18px;
    right: 18px;
    top: 18px;
  }

  .hero-video .detect-box--ok {
    left: 18%;
    top: 36%;
  }

  .hero-video .detect-box--warn {
    right: 8%;
    top: 50%;
  }
}

@media (max-width: 640px) {
  .hero-solutions .page-hero-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-technology .quick-facts,
  .hero-cases .hero-console--cases {
    grid-template-columns: 1fr;
  }

  .hero-technology .hero-console--matrix {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .hero-technology .matrix-core,
  .hero-technology .hero-console--matrix span:nth-of-type(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-contact .hero-console--route article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .hero-news .hero-console--timeline {
    padding-left: 28px;
  }

  .hero-news .hero-console--timeline::after {
    left: 14px;
  }

  .hero-partners .page-hero-copy {
    padding: 22px;
  }

  .hero-partners .hero-console--network {
    min-height: auto;
    padding-left: 16px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .ai-background__scan {
    height: 120px;
    opacity: 0.7;
  }

  .ai-background__nodes span:nth-child(n + 5) {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .hero-copy,
  .page-hero-copy,
  .card,
  .shop-card,
  .cart-panel,
  .service-card,
  .project-item,
  .content-item,
  .pillar,
  .dual-card,
  .career-panel,
  .manifesto,
  .page-cover {
    padding: 22px;
  }

  .vision-band__intro {
    padding: 24px 0 24px 18px;
  }

  .vision-feature {
    padding: 82px 22px 22px;
  }

  .vision-feature span {
    left: 22px;
    top: 22px;
    width: auto;
  }

  .build-map {
    padding: 12px;
  }

  .case-stories__head,
  .field-map__head {
    margin-bottom: 30px;
  }

  .case-story--featured {
    padding: 24px;
  }

  .field-map__wall {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 12px;
  }

  .field-card {
    grid-template-rows: auto auto auto;
    min-height: 0;
  }

  .strength-card,
  .future-card {
    min-height: auto;
    padding: 22px;
  }

  .field-card p {
    align-self: start;
  }

  .contact-lab__copy,
  .contact-lab__route article,
  .contact-lab__action {
    padding: 22px;
  }

  .contact-lab__route article {
    grid-template-columns: 1fr;
  }

  .contact-lab__route span {
    grid-row: auto;
  }

  .solution-flow__steps,
  .solution-units {
    grid-template-columns: 1fr;
  }

  .product-combo__line span {
    min-height: 56px;
  }

  .case-detail__head,
  .case-detail__body section,
  .product-module,
  .project-showcase__copy {
    padding: 22px;
  }

  .project-film {
    min-height: 280px;
    padding: 12px;
  }

  .project-film__placeholder,
  .project-film video {
    min-height: 252px;
  }

  .hero-console {
    min-height: auto;
    padding: 16px;
  }

  .line-flow,
  .hero-console--matrix,
  .hero-console--library,
  .hero-console--route,
  .hero-console--network {
    grid-template-columns: 1fr;
  }

  .line-stage {
    height: 260px;
  }

  .line-camera {
    left: 5%;
    width: 74px;
  }

  .line-camera::after {
    width: 130px;
    right: -130px;
  }

  .line-object {
    left: 42%;
    width: 104px;
    height: 74px;
  }

  .line-detect--ok {
    right: 6%;
  }

  .line-detect--ng {
    right: 4%;
  }

  .matrix-core {
    width: 128px;
    height: 128px;
  }

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

  .project-showcase__copy dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

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

  .application-map__grid span:nth-child(n) {
    grid-column: auto;
  }

  .solution-flow__visual {
    min-height: 330px;
  }

  .solution-flow__box {
    width: 104px;
    transform: scale(0.9);
  }

  .solution-flow__box--ok {
    left: 12%;
    top: 34%;
  }

  .solution-flow__box--warn {
    right: 4%;
    top: 54%;
  }

  .tech-core {
    padding: 18px;
  }

  .tech-core__pipeline {
    grid-template-columns: 1fr;
  }

  .tech-core__pipeline span {
    min-height: 58px;
  }

  .capability-grid,
  .application-map__grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: auto;
    padding: 22px;
  }

  .partner-profile,
  .news-entry {
    grid-template-columns: 1fr;
  }

  .partner-profile__logo {
    width: 86px;
    height: 86px;
  }

  .news-entry p {
    grid-column: auto;
  }

  .partner-flow__steps article {
    grid-template-columns: 1fr;
  }

  .partner-flow__steps span {
    grid-row: auto;
  }

  .shop-card__buy,
  .cart-item__controls {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-card__buy .btn {
    width: 100%;
  }

  .hero-aces {
    padding-top: 28px;
  }

  .hero-visual {
    padding-top: 0;
  }

  .hero-visual__content {
    padding-top: 84px;
    padding-bottom: 26px;
  }

  .hero-visual__copy {
    padding-bottom: 22px;
  }

  .hero-video__camera {
    left: -32px;
    top: 13%;
    transform: scale(0.8);
  }

  .hero-video__belt {
    right: -54%;
    bottom: 22%;
    width: 620px;
    height: 260px;
  }

  .hero-video__hud span:nth-child(2) {
    display: none;
  }

  .detect-box {
    width: 112px;
  }

  .detect-box--hero {
    transform: scale(0.86);
  }

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

  .section,
  .section-lite {
    padding: 32px 0;
  }

  .section-band {
    padding: 62px 0;
  }

  .section-band::after {
    top: 22px;
    font-size: 30px;
  }

  .fixed-cta {
    left: 14px;
    right: 14px;
    bottom: 86px;
    flex-direction: row;
  }

  .fixed-cta a {
    min-width: 0;
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Page-top audit: keep first-view content visible and rebalance each composition. */
.page-hero--immersive {
  min-height: min(720px, 100vh);
}

.page-hero--immersive .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.page-hero--immersive .sec-kicker {
  padding: 0 0 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #7dd3fc;
  letter-spacing: 0.16em;
}

.page-hero--immersive .sec-kicker::before {
  width: 6px;
  height: 6px;
}

.page-hero--immersive .page-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(46px, 5vw, 72px);
  text-wrap: balance;
}

.hero-solutions .page-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(48px, 5vw, 68px);
}

.hero-solutions .page-hero-copy {
  width: min(1000px, 100%);
}

.hero-solutions .hero-console {
  min-height: 310px;
}

.hero-technology .page-hero-shell {
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
}

.hero-technology .page-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(48px, 4.6vw, 66px);
}

.hero-technology .hero-console--matrix {
  min-height: 510px;
}

.hero-cases .page-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(48px, 5vw, 70px);
}

.hero-contact .page-hero-shell {
  grid-template-columns: minmax(400px, 0.88fr) minmax(0, 1.12fr);
}

.hero-contact .page-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(48px, 5vw, 70px);
}

.hero-contact .hero-console--route {
  min-height: 470px;
}

.hero-downloads .page-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(48px, 5vw, 68px);
}

.hero-downloads .hero-console--library {
  min-height: 470px;
}

.hero-news .page-hero-copy h1 {
  font-size: clamp(46px, 4.8vw, 68px);
}

.hero-partners {
  min-height: 720px;
}

.hero-partners .page-hero-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
}

.hero-partners .page-hero-copy {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  padding: 12px 30px 12px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-partners .page-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(46px, 4.4vw, 60px);
}

.hero-partners .hero-console--network {
  min-height: 540px;
  padding-left: 26px;
}

.page-about .page-hero--immersive,
.page-shop .page-hero--immersive {
  background: linear-gradient(120deg, #07111d 0%, #0f1d31 54%, #17243a 100%);
}

.page-ai .page-hero--immersive {
  background: linear-gradient(120deg, #031417 0%, #0a2228 50%, #111827 100%);
}

.page-products .page-hero--immersive {
  background: linear-gradient(120deg, #07101f 0%, #101d36 56%, #111827 100%);
}

.page-ppt .page-hero--immersive {
  background: linear-gradient(120deg, #09131b 0%, #14272b 54%, #111827 100%);
}

.page-about .page-hero-copy,
.page-ai .page-hero-copy,
.page-products .page-hero-copy,
.page-shop .page-hero-copy,
.page-ppt .page-hero-copy {
  padding: 12px 28px 12px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-about .page-hero-shell,
.page-ai .page-hero-shell,
.page-products .page-hero-shell,
.page-shop .page-hero-shell,
.page-ppt .page-hero-shell {
  grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1.1fr);
}

.page-about .page-hero-copy h1,
.page-ai .page-hero-copy h1,
.page-products .page-hero-copy h1,
.page-shop .page-hero-copy h1,
.page-ppt .page-hero-copy h1 {
  font-size: clamp(46px, 4.8vw, 68px);
}

.page-product .product-detail-copy h1 {
  font-size: clamp(46px, 5vw, 68px);
}

.page-product .product-visual,
.page-product .product-detail-copy {
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.page-downloads .site-header {
  background: rgba(248, 250, 252, 0.9);
  border-bottom-color: rgba(37, 99, 235, 0.12);
}

.page-downloads .site-nav a {
  color: #64748b;
}

.page-downloads .site-nav a:hover,
.page-downloads .site-nav a.active {
  color: #0f172a;
}

.fixed-cta {
  flex-direction: row;
}

.fixed-cta a {
  min-width: 112px;
}

/* Final responsive overrides for the integrated header and hero. */
@media (max-width: 1080px) {
  .hero-technology .page-hero-shell,
  .hero-contact .page-hero-shell,
  .hero-partners .page-hero-shell,
  .page-about .page-hero-shell,
  .page-ai .page-hero-shell,
  .page-products .page-hero-shell,
  .page-shop .page-hero-shell,
  .page-ppt .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .page-about .page-hero-copy,
  .page-ai .page-hero-copy,
  .page-products .page-hero-copy,
  .page-shop .page-hero-copy,
  .page-ppt .page-hero-copy {
    padding-right: 0;
  }

  .hero-partners .page-hero-copy {
    top: auto;
    width: 100%;
  }

  .hero-partners .hero-console--network {
    padding-left: 26px;
  }
}

@media (max-width: 860px) {
  .site-header {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.68));
  }

  .site-nav {
    top: calc(100% + 6px);
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.96);
    backdrop-filter: blur(20px);
  }

  .site-nav a {
    padding: 11px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .page-downloads .site-nav a,
  .page-downloads .site-nav a:hover,
  .page-downloads .site-nav a.active {
    color: #ffffff;
  }

  .page-downloads .menu-btn {
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.72);
  }

  .fixed-cta {
    display: none;
  }

  .page-hero--immersive {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 78px;
  }

  .page-hero--immersive::after {
    height: 90px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 68px;
  }

  .logo img {
    height: 32px;
  }

  .page-hero--immersive {
    padding-top: 96px;
    padding-bottom: 68px;
  }

  .page-hero--immersive .page-hero-copy h1,
  .hero-solutions .page-hero-copy h1,
  .hero-technology .page-hero-copy h1,
  .hero-cases .page-hero-copy h1,
  .hero-contact .page-hero-copy h1,
  .hero-downloads .page-hero-copy h1,
  .hero-news .page-hero-copy h1,
  .hero-partners .page-hero-copy h1,
  .page-product .product-detail-copy h1 {
    max-width: none;
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-partners .page-hero-copy {
    padding: 0;
  }

  .hero-technology .hero-console--matrix,
  .hero-contact .hero-console--route,
  .hero-downloads .hero-console--library,
  .hero-partners .hero-console--network {
    min-height: auto;
  }

  .page-hero--immersive .quick-facts {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .page-hero--immersive .quick-facts .card,
  .hero-downloads .quick-facts .card {
    min-height: auto;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .page-hero--immersive .quick-facts .card:last-child,
  .hero-downloads .quick-facts .card:last-child {
    border-bottom: 0;
  }

  .hero-downloads .quick-facts .card {
    border-bottom-color: rgba(37, 99, 235, 0.14);
  }

  .hero-visual__content {
    padding-top: 100px;
  }
}

/* 2026 page-family redesign */
.fixed-cta {
  right: 22px;
  bottom: 22px;
}

.fixed-cta a:not(:first-child) {
  display: none;
}

.fixed-cta a:first-child {
  min-width: 0;
  padding: 13px 20px;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.page-hero--immersive .page-hero-copy h1,
.page-hero--immersive .product-detail-copy h1 {
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.12;
}

/* Interface family: solutions and technology */
.page-interface .site-header {
  background: rgba(3, 10, 22, 0.78);
}

.page-interface .page-hero--immersive {
  min-height: 760px;
  padding-top: 118px;
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(56, 189, 248, 0.055) 1px, transparent 1px),
    linear-gradient(120deg, #020817, #071525 56%, #09111f);
  background-size: 52px 52px, 52px 52px, auto;
}

.page-interface .page-hero--immersive::before {
  opacity: 0.34;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.08), transparent);
  animation: interfaceSweep 8s linear infinite;
}

.page-interface .page-hero--immersive::after {
  height: 96px;
}

.page-interface .page-hero-shell,
.page-interface .hero-solutions .page-hero-shell,
.page-interface .hero-technology .page-hero-shell {
  grid-template-columns: minmax(340px, 0.74fr) minmax(560px, 1.26fr);
  gap: 46px;
  align-items: center;
}

.page-interface .page-hero-copy,
.page-interface .hero-solutions .page-hero-copy,
.page-interface .hero-technology .page-hero-copy {
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-interface .page-hero-copy h1,
.page-interface .hero-solutions .page-hero-copy h1,
.page-interface .hero-technology .page-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(46px, 4.5vw, 64px);
}

.page-interface .quick-facts {
  grid-template-columns: 1fr;
  margin-top: 34px;
  border-top: 1px solid rgba(125, 211, 252, 0.2);
}

.page-interface .quick-facts .card {
  min-height: auto;
  padding: 14px 0;
  border-right: 0;
  border-bottom: 1px solid rgba(125, 211, 252, 0.12);
}

.page-interface .hero-console,
.page-interface .hero-solutions .hero-console,
.page-interface .hero-technology .hero-console--matrix {
  min-height: 560px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background-color: rgba(2, 12, 27, 0.78);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.page-interface .hero-console::after {
  content: "LIVE / ATOZ VISION SYSTEM";
  position: absolute;
  left: 20px;
  bottom: 16px;
  color: rgba(125, 211, 252, 0.58);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
}

/* Documentary family: case studies and company */
.page-documentary .page-hero--immersive {
  min-height: 760px;
  padding-top: 124px;
  padding-bottom: 92px;
  background-position: center;
  background-size: cover;
}

.page-cases .hero-cases {
  background-image:
    linear-gradient(90deg, rgba(2, 8, 23, 0.9) 0%, rgba(2, 8, 23, 0.6) 52%, rgba(2, 8, 23, 0.18) 100%),
    url("assets/images/case-paint-inspection.webp");
}

.page-about .page-hero--immersive {
  background-image:
    linear-gradient(90deg, rgba(2, 8, 23, 0.9) 0%, rgba(2, 8, 23, 0.56) 56%, rgba(2, 8, 23, 0.12) 100%),
    url("assets/images/hero-inspection-line.webp");
}

.page-documentary .page-hero--immersive::before {
  background: linear-gradient(180deg, rgba(2, 8, 23, 0.08), rgba(2, 8, 23, 0.48));
  mask-image: none;
}

.page-documentary .page-hero-shell {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-documentary .page-hero-copy,
.page-documentary .hero-cases .page-hero-copy {
  width: min(720px, 100%);
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-documentary .page-hero-copy h1,
.page-documentary .hero-cases .page-hero-copy h1 {
  max-width: 12ch;
  margin-top: 12px;
  font-size: clamp(48px, 5.4vw, 74px);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
}

.page-documentary .page-intro {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.page-documentary .quick-facts {
  max-width: 720px;
  margin-top: 30px;
  background: rgba(2, 8, 23, 0.34);
  backdrop-filter: blur(10px);
}

.page-cases .hero-console--cases {
  width: 100%;
  min-height: auto;
  margin-top: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-cases .hero-console--cases::before {
  display: none;
}

.page-cases .hero-console--cases article {
  min-height: 124px;
  background: rgba(2, 8, 23, 0.54);
  backdrop-filter: blur(12px);
}

.page-about .hero-console {
  display: none;
}

/* Editorial family: news, partners, downloads and contact */
.page-editorial .site-header {
  background: rgba(250, 250, 248, 0.92);
  border-bottom-color: rgba(15, 23, 42, 0.1);
}

.page-editorial .site-nav a {
  color: #64748b;
}

.page-editorial .site-nav a:hover,
.page-editorial .site-nav a.active {
  color: #111827;
}

.page-editorial .page-hero--immersive {
  min-height: 650px;
  padding-top: 126px;
  padding-bottom: 76px;
  color: #111827;
  background: #f7f7f4;
}

.page-editorial .page-hero--immersive::before {
  opacity: 0.65;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

.page-editorial .page-hero--immersive::after {
  height: 70px;
  background: linear-gradient(180deg, transparent, #ffffff);
}

.page-editorial .page-hero-shell {
  grid-template-columns: minmax(360px, 0.88fr) minmax(480px, 1.12fr);
  gap: 70px;
}

.page-editorial .page-hero-copy,
.page-editorial .hero-contact .page-hero-copy,
.page-editorial .hero-news .page-hero-copy,
.page-editorial .hero-partners .page-hero-copy,
.page-editorial .hero-downloads .page-hero-copy {
  order: initial;
  align-self: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-editorial .page-hero-copy h1,
.page-editorial .hero-contact .page-hero-copy h1,
.page-editorial .hero-news .page-hero-copy h1,
.page-editorial .hero-partners .page-hero-copy h1,
.page-editorial .hero-downloads .page-hero-copy h1 {
  max-width: 11ch;
  color: #111827;
  font-size: clamp(42px, 4.3vw, 60px);
}

.page-editorial .page-intro,
.page-editorial .quick-facts p {
  color: #64748b;
}

.page-editorial .quick-facts {
  margin-top: 36px;
  border-top-color: rgba(15, 23, 42, 0.16);
}

.page-editorial .quick-facts .card,
.page-editorial .hero-downloads .quick-facts .card {
  color: #111827;
  border-right-color: rgba(15, 23, 42, 0.14);
  background: transparent;
}

.page-editorial .quick-facts strong {
  color: #111827;
}

.page-editorial .hero-console {
  order: initial;
  min-height: 460px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-editorial .hero-console::before {
  display: none;
}

.page-editorial .hero-console article,
.page-editorial .hero-console span {
  color: #111827;
  border-color: rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.62);
}

.page-news .hero-news,
.page-partners .hero-partners,
.page-contact .hero-contact,
.page-downloads .hero-downloads {
  background: #f7f7f4;
}

.page-news .hero-console--timeline::after {
  background: linear-gradient(#111827, rgba(15, 23, 42, 0.08));
}

.page-news .hero-console--timeline article {
  border-left-color: #111827;
}

.page-contact .hero-console--route {
  order: 2;
  min-height: 420px;
}

.page-contact .page-hero-copy {
  order: 1;
}

.page-partners .hero-partners {
  min-height: 650px;
}

.page-partners .hero-console--network {
  padding-left: 26px;
}

.page-partners .network-core {
  color: #111827;
  border-color: #15803d;
  background: rgba(34, 197, 94, 0.08);
}

@keyframes interfaceSweep {
  from { transform: translateX(-60%); }
  to { transform: translateX(60%); }
}

@media (max-width: 1080px) {
  .page-interface .page-hero-shell,
  .page-interface .hero-solutions .page-hero-shell,
  .page-interface .hero-technology .page-hero-shell,
  .page-editorial .page-hero-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-interface .hero-console,
  .page-interface .hero-solutions .hero-console,
  .page-interface .hero-technology .hero-console--matrix,
  .page-editorial .hero-console {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  body {
    overflow-x: hidden;
  }

  .header-inner,
  .page-hero-shell,
  .page-hero-copy,
  .hero-console,
  .quick-facts {
    min-width: 0;
    max-width: 100%;
  }

  .menu-btn {
    flex: 0 0 auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .page-editorial .site-header {
    background: rgba(250, 250, 248, 0.96);
  }

  .page-editorial .menu-btn {
    color: #111827;
    border-color: rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.72);
  }

  .page-editorial .site-nav a,
  .page-editorial .site-nav a:hover,
  .page-editorial .site-nav a.active {
    color: #ffffff;
  }

  .page-documentary .page-hero--immersive,
  .page-interface .page-hero--immersive,
  .page-editorial .page-hero--immersive {
    min-height: auto;
    padding-top: 104px;
  }

  .page-documentary .page-hero-shell {
    min-height: 580px;
  }
}

@media (max-width: 640px) {
  .page-interface .hero-console {
    width: 100%;
    overflow: hidden;
  }

  .page-interface .line-flow {
    grid-template-columns: 1fr 1fr;
  }

  .page-interface .line-flow span {
    min-width: 0;
  }

  .page-interface .page-hero-copy h1,
  .page-documentary .page-hero-copy h1,
  .page-editorial .page-hero-copy h1 {
    max-width: none;
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .page-interface .hero-console,
  .page-interface .hero-solutions .hero-console,
  .page-interface .hero-technology .hero-console--matrix,
  .page-editorial .hero-console {
    min-height: auto;
  }

  .page-documentary .page-hero-shell {
    min-height: 520px;
  }

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

/* Vision Lab */
.ai-workbench-hero .page-hero-shell {
  grid-template-columns: minmax(340px, 0.72fr) minmax(560px, 1.28fr);
}

.ai-workbench {
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.24);
  background: rgba(2, 12, 27, 0.82);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3);
}

.ai-workbench__bar,
.ai-workbench__actions {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.14);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ai-workbench__actions {
  border-top: 1px solid rgba(125, 211, 252, 0.14);
  border-bottom: 0;
  letter-spacing: 0;
}

.ai-api-status[data-state="online"] { color: #4ade80; }
.ai-api-status[data-state="demo"] { color: #fbbf24; }
.ai-api-status[data-state="offline"] { color: #f87171; }

.ai-mode-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(125, 211, 252, 0.14);
}

.ai-mode-switch button {
  min-height: 52px;
  border: 0;
  border-right: 1px solid rgba(125, 211, 252, 0.14);
  color: rgba(219, 234, 254, 0.66);
  background: transparent;
  font-weight: 700;
}

.ai-mode-switch button:last-child { border-right: 0; }
.ai-mode-switch button.is-active {
  color: #ffffff;
  background: rgba(56, 189, 248, 0.1);
  box-shadow: inset 0 -2px #38bdf8;
}

.ai-dropzone {
  position: relative;
  min-height: 360px;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 30px;
  overflow: hidden;
  color: #dbeafe;
  text-align: center;
  cursor: pointer;
  background:
    linear-gradient(90deg, rgba(125, 211, 252, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(125, 211, 252, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.ai-dropzone input { display: none; }
.ai-dropzone small { color: rgba(219, 234, 254, 0.52); }
.ai-dropzone img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.ai-dropzone.has-image > span,
.ai-dropzone.has-image > small { display: none; }
.ai-dropzone.is-dragging { background-color: rgba(56, 189, 248, 0.12); }

.ai-result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: 26px;
}

.ai-result-view,
.ai-result-summary {
  border: 1px solid var(--line);
  background: #ffffff;
}

.ai-result-view__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.ai-result-view__head h2 { margin-top: 10px; font-size: clamp(26px, 3vw, 42px); }
.ai-result-state { color: #64748b; font-size: 13px; font-weight: 800; }
.ai-result-state[data-state="done"] { color: #15803d; }
.ai-result-state[data-state="error"] { color: #b91c1c; }

.ai-result-canvas {
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: #64748b;
  background: #0b1220;
}

.ai-result-stage { position: relative; max-width: 100%; max-height: 620px; }
.ai-result-stage img { display: block; max-width: 100%; max-height: 600px; }
.ai-result-box { position: absolute; border: 2px solid #4ade80; box-shadow: 0 0 0 1px rgba(0,0,0,.4); }
.ai-result-box b { position: absolute; left: -2px; top: -25px; padding: 4px 7px; color: #052e16; background: #4ade80; font-size: 11px; white-space: nowrap; }

.ai-result-summary { padding: 26px; }
.ai-result-summary h3 { margin-bottom: 22px; }
.ai-result-summary dl { margin: 0; }
.ai-result-summary dl div { display: grid; grid-template-columns: 92px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ai-result-summary dt { color: #64748b; }
.ai-result-summary dd { margin: 0; font-weight: 800; }
.ai-result-details { margin-top: 22px; color: #475569; }
.ai-result-details ul { margin: 0; padding-left: 18px; }

.ai-deployment__intro { max-width: 760px; }
.ai-deployment__flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; align-items: center; margin-top: 36px; }
.ai-deployment__flow article { min-height: 150px; padding: 24px; border: 1px solid var(--line); background: #fff; }
.ai-deployment__flow article span { color: #2563eb; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.ai-deployment__flow article strong { display: block; margin: 18px 0 8px; font-size: 20px; }
.ai-deployment__flow i { color: #64748b; font-style: normal; font-size: 11px; font-weight: 800; }
.ai-deployment__notes { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; border-top: 1px solid var(--line); }
.ai-deployment__notes p { margin: 0; padding: 18px; border-right: 1px solid var(--line); color: #64748b; }
.ai-deployment__notes p:last-child { border-right: 0; }
.ai-deployment__notes strong { display: block; margin-bottom: 6px; color: #111827; }

@media (max-width: 1080px) {
  .ai-workbench-hero .page-hero-shell,
  .ai-result-layout { grid-template-columns: 1fr; }
  .ai-deployment__flow { grid-template-columns: 1fr; }
  .ai-deployment__flow i { text-align: center; }
}

@media (max-width: 640px) {
  .ai-dropzone { min-height: 260px; }
  .ai-mode-switch button { padding: 8px; font-size: 12px; }
  .ai-result-view__head { align-items: flex-start; flex-direction: column; }
  .ai-result-canvas { min-height: 280px; padding: 10px; }
  .ai-deployment__notes { grid-template-columns: 1fr; }
  .ai-deployment__notes p { border-right: 0; border-bottom: 1px solid var(--line); }
}

.legacy-route {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #f7f7f4;
}

.legacy-route > div { max-width: 760px; }
.legacy-route h1 { margin: 18px 0 30px; font-size: clamp(38px, 6vw, 68px); color: #111827; }
