* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.6;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: fixed;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius-pill);
  background: var(--color-dark);
  color: var(--color-bg);
  padding: var(--space-2) var(--space-3);
}

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

.section-shell {
  width: min(var(--container), calc(100% - (var(--page-padding) * 2)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: var(--space-3);
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.nav-wrap {
  width: min(var(--wide), calc(100% - (var(--page-padding) * 2)));
  min-height: 72px;
  margin: 0 auto;
  padding: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: rgba(248, 247, 242, 0.58);
  border: 1px solid rgba(217, 222, 215, 0.58);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 54px rgba(13, 23, 21, 0.08);
  backdrop-filter: blur(26px) saturate(1.2);
  pointer-events: auto;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled .nav-wrap {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(217, 222, 215, 0.72);
  box-shadow: var(--shadow-card);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding-left: var(--space-2);
}

.brand img {
  width: 148px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex: 1;
}

.nav-group,
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  min-height: 40px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  font-weight: 500;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link svg {
  width: 16px;
  height: 16px;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-open > .nav-link {
  color: var(--color-primary);
  background: var(--color-surface-tint);
  outline: none;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: min(920px, calc(100vw - (var(--page-padding) * 2)));
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-float);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.solutions-menu {
  width: min(760px, calc(100vw - (var(--page-padding) * 2)));
  grid-template-columns: 1fr;
}

.nav-item.is-open .mega-menu,
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-feature {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-surface-tint);
}

.menu-label,
.section-kicker,
.module-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.mega-feature h3,
.mega-card span,
.solution-link span {
  margin: var(--space-2) 0 var(--space-1);
  font-family: var(--font-heading);
  font-weight: 600;
}

.mega-feature p,
.mega-card small,
.solution-link small {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.45;
}

.menu-cta {
  margin-top: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-weight: 700;
}

.menu-cta svg {
  width: 16px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.mega-card,
.solution-link {
  display: grid;
  gap: var(--space-1);
  min-height: 112px;
  padding: var(--space-3);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mega-card:hover,
.solution-link:hover,
.mega-card:focus-visible,
.solution-link:focus-visible {
  background: var(--color-surface-soft);
  border-color: var(--color-border);
  transform: translateY(-2px);
  outline: none;
}

.mega-card img {
  width: 42px;
}

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

.solution-link svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  color: var(--color-primary);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-sm {
  min-height: 42px;
  padding: 0 var(--space-3);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
  box-shadow: 0 10px 24px rgba(15, 91, 76, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-primary-strong);
  transform: translateY(-2px);
  outline: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  outline: none;
}

.hero {
  width: min(1480px, calc(100% - (var(--page-padding) * 2)));
  min-height: 100vh;
  padding: 150px 0 var(--space-7);
}

.hero-inner {
  display: grid;
  gap: var(--space-6);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-signal);
  box-shadow: 0 0 0 6px rgba(184, 217, 74, 0.22);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 4.2vw, var(--text-hero));
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}

.hero-title {
  max-width: 1360px;
  line-height: 1.02;
}

.hero-title span {
  color: var(--color-primary);
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, var(--text-4xl));
  font-weight: 550;
}

h3 {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 600;
}

.hero-lede {
  max-width: 760px;
  margin: var(--space-4) auto 0;
  color: var(--color-muted);
  font-size: var(--text-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  color: var(--color-primary);
}

.quality-field {
  position: relative;
  width: min(100%, 1360px);
  height: clamp(520px, 43vw, 640px);
  margin: 0 auto;
  border: 1px solid rgba(217, 222, 215, 0.82);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 217, 74, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 241, 0.9));
  box-shadow: 0 28px 90px rgba(15, 91, 76, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.quality-field::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(15, 91, 76, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(15, 91, 76, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
}

.quality-field-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.field-panel {
  fill: rgba(255, 255, 255, 0.5);
  stroke: rgba(217, 222, 215, 0.68);
}

.signal-thread,
.proof-thread,
.thread-muted,
.proof-thread-muted {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thread-muted,
.proof-thread-muted {
  stroke: rgba(15, 91, 76, 0.12);
  stroke-width: 16;
}

.signal-thread {
  stroke: url(#signalThread);
  stroke-width: 5;
  filter: url(#fieldSoftShadow);
}

.proof-thread {
  stroke: url(#proofThread);
  stroke-width: 5;
  filter: url(#fieldSoftShadow);
}

.field-node circle:first-child {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(15, 91, 76, 0.35);
  stroke-width: 2;
}

.field-node circle:last-child {
  fill: var(--color-signal);
}

.core-orbit {
  transform-box: fill-box;
  transform-origin: center;
}

.core-orbit circle:first-child {
  fill: none;
  stroke: rgba(15, 91, 76, 0.16);
  stroke-width: 2;
  stroke-dasharray: 6 12;
}

.core-orbit circle:not(:first-child) {
  fill: var(--color-primary);
}

.field-stage {
  position: absolute;
  z-index: 3;
  top: var(--space-4);
  padding: var(--space-1) var(--space-3);
  border: 1px solid rgba(217, 222, 215, 0.86);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.62);
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.stage-signal {
  left: var(--space-4);
}

.stage-route {
  left: 50%;
  translate: -50% 0;
  color: var(--color-primary);
}

.stage-proof {
  right: var(--space-4);
}

.signal-chip,
.field-proof {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid rgba(217, 222, 215, 0.9);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.signal-chip {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 700;
}

.signal-chip svg,
.field-proof svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.chip-defect {
  left: 7%;
  top: 19%;
}

.chip-complaint {
  left: 6%;
  bottom: 24%;
}

.chip-audit {
  left: 24%;
  top: 11%;
}

.chip-supplier {
  left: 19%;
  bottom: 10%;
}

.quality-core {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 228px;
  height: 228px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--space-2);
  border: 1px solid rgba(15, 91, 76, 0.18);
  border-radius: 50%;
  background: rgba(248, 247, 242, 0.78);
  text-align: center;
  box-shadow:
    0 0 0 18px rgba(15, 91, 76, 0.04),
    0 26px 70px rgba(15, 91, 76, 0.18);
  backdrop-filter: blur(20px);
}

.quality-core::before,
.quality-core::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(15, 91, 76, 0.12);
  border-radius: 50%;
  animation: field-pulse 3.8s ease-in-out infinite;
}

.quality-core::after {
  inset: -34px;
  animation-delay: 900ms;
}

.core-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.core-mark img {
  width: 52px;
}

.quality-core span {
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.quality-core strong {
  width: 150px;
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 600;
  line-height: 1.25;
}

.field-proof {
  width: 190px;
  min-height: 54px;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 800;
}

.proof-owner {
  right: 13%;
  top: 17%;
}

.proof-capa {
  right: 18%;
  top: 45%;
}

.proof-ready {
  right: 9%;
  bottom: 18%;
  background: var(--color-dark);
  color: var(--color-bg);
  border-color: rgba(13, 23, 21, 0.1);
}

.proof-ready svg {
  color: var(--color-signal);
}

.field-sequence {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: var(--space-4);
  translate: -50% 0;
  width: min(660px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}

.field-sequence span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  border: 1px solid rgba(217, 222, 215, 0.84);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.68);
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.field-sequence strong {
  color: var(--color-primary);
  font-size: var(--text-xs);
}

@keyframes field-pulse {
  0%,
  100% {
    opacity: 0.35;
    scale: 0.96;
  }

  50% {
    opacity: 0.92;
    scale: 1.04;
  }
}

.industry-rail {
  padding: var(--space-8) 0;
  overflow: hidden;
  background: var(--color-surface);
  border-top: 1px solid rgba(217, 222, 215, 0.72);
  border-bottom: 1px solid rgba(217, 222, 215, 0.72);
}

.trusted-logos h2 {
  margin: 0 0 var(--space-6);
  color: var(--color-text);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  text-align: center;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(54px, 7vw, 112px);
  animation: logo-marquee 32s linear infinite;
}

.logo-track img {
  width: auto;
  height: 28px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.15);
  opacity: 0.86;
  transition: opacity 160ms ease, filter 160ms ease;
}

.logo-track img.logo-sm {
  height: 18px;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(1) contrast(1.3);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.works-section,
.hover-workflow,
.roles-section,
.faq-section,
.demo-section {
  padding: var(--space-8) 0;
}

.split-heading,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-6);
}

.section-heading p,
.split-heading p,
.plant-grid p,
.demo-copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-lg);
}

.centered {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.centered .section-kicker {
  margin-bottom: var(--space-3);
}

.role-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.role-card,
.proof-card {
  position: relative;
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.role-card p,
.proof-card p,
.product-panel p,
.workflow-visual p {
  color: var(--color-muted);
}

.roles-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 116px) clamp(24px, 4vw, 56px);
  border: 1px solid rgba(217, 222, 215, 0.74);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(248, 247, 242, 0.78), rgba(248, 247, 242, 0.9)),
    var(--color-surface);
  box-shadow: 0 34px 90px rgba(18, 30, 27, 0.08);
}

.roles-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/images/resolqa-roles-quality-truth-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.82;
}

.roles-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.86), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(184, 217, 74, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(248, 247, 242, 0.62), rgba(248, 247, 242, 0.36) 48%, rgba(248, 247, 242, 0.76));
  pointer-events: none;
}

.roles-section .section-heading,
.roles-section .role-grid {
  position: relative;
  z-index: 1;
}

.roles-section .section-heading {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.why-story {
  position: relative;
  overflow: hidden;
  padding: var(--space-8) 0;
  background:
    radial-gradient(circle at 72% 26%, rgba(248, 247, 242, 0.08), transparent 34%),
    radial-gradient(circle at 20% 78%, rgba(216, 137, 53, 0.16), transparent 30%),
    linear-gradient(135deg, #07110f 0%, #10201c 52%, #06100e 100%);
  color: var(--color-bg);
}

.why-story::before {
  content: none;
}

.why-story::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% -10%;
  height: 52%;
  background: radial-gradient(ellipse at center, rgba(248, 247, 242, 0.12), transparent 66%);
  pointer-events: none;
}

.why-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.16fr);
  gap: var(--space-7);
  align-items: center;
}

.why-copy .section-kicker {
  color: var(--color-signal);
  margin-bottom: var(--space-3);
}

.why-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--color-bg);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.why-copy p {
  max-width: 560px;
  margin: var(--space-4) 0 0;
  color: rgba(248, 247, 242, 0.72);
  font-size: var(--text-lg);
}

.why-beats {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.why-beats span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(248, 247, 242, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(248, 247, 242, 0.07);
  color: rgba(248, 247, 242, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.why-beats strong {
  color: var(--color-signal);
  font-size: var(--text-xs);
  letter-spacing: 0;
}

.why-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(248, 247, 242, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(216, 137, 53, 0.1), transparent 41%, rgba(248, 247, 242, 0.045)),
    rgba(248, 247, 242, 0.035);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.why-stage::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 1px;
  background: linear-gradient(transparent, rgba(248, 247, 242, 0.2), transparent);
  z-index: 1;
}

.stage-label {
  position: absolute;
  top: 18px;
  z-index: 4;
  padding: 8px 12px;
  border: 1px solid rgba(248, 247, 242, 0.13);
  border-radius: var(--radius-pill);
  background: rgba(7, 17, 15, 0.62);
  color: rgba(248, 247, 242, 0.68);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.before-label {
  left: 18px;
  color: #f0b16a;
}

.after-label {
  right: 18px;
  color: var(--color-signal);
}

.why-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.why-fracture,
.why-flow-muted,
.why-flow {
  fill: none;
  stroke-linecap: round;
}

.why-fracture {
  stroke: rgba(216, 137, 53, 0.54);
  stroke-width: 2;
  stroke-dasharray: 8 12;
}

.why-flow-muted {
  stroke: rgba(248, 247, 242, 0.1);
  stroke-width: 12;
}

.why-flow {
  stroke: url("#whyFlow");
  stroke-width: 4;
  filter: drop-shadow(0 0 14px rgba(184, 217, 74, 0.24));
}

.why-node {
  fill: var(--color-signal);
  stroke: var(--color-bg);
  stroke-width: 3;
  filter: drop-shadow(0 0 14px rgba(184, 217, 74, 0.56));
}

.scatter-note,
.resolved-step,
.resolve-core {
  position: absolute;
  z-index: 5;
}

.scatter-note {
  width: 190px;
  padding: var(--space-3);
  border: 1px solid rgba(248, 247, 242, 0.14);
  border-radius: var(--radius-md);
  background: rgba(248, 247, 242, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.1);
}

.scatter-note svg {
  width: 20px;
  height: 20px;
  margin-bottom: var(--space-2);
  color: #f0b16a;
}

.scatter-note span,
.resolved-step span,
.resolve-core span {
  display: block;
  color: rgba(248, 247, 242, 0.66);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.scatter-note strong {
  display: block;
  margin-top: 4px;
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
}

.scatter-note small {
  display: block;
  color: rgba(248, 247, 242, 0.52);
}

.note-sheet {
  top: 88px;
  left: 34px;
  rotate: -4deg;
}

.note-email {
  top: 238px;
  left: 46px;
  rotate: 3deg;
}

.note-audit {
  bottom: 58px;
  left: 82px;
  rotate: -2deg;
}

.resolve-core {
  top: 50%;
  left: 49%;
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  translate: -50% -50%;
  border: 1px solid rgba(184, 217, 74, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(184, 217, 74, 0.22), transparent 58%),
    rgba(248, 247, 242, 0.08);
  box-shadow:
    0 0 0 12px rgba(184, 217, 74, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.resolve-core img {
  width: 58px;
  margin-bottom: -18px;
}

.resolve-core span {
  color: var(--color-bg);
  text-align: center;
  text-transform: none;
}

.resolved-step {
  right: 48px;
  width: 192px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 16px;
  border: 1px solid rgba(184, 217, 74, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(248, 247, 242, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.resolved-step svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--color-signal);
}

.resolved-step span {
  color: var(--color-bg);
  text-transform: none;
  font-size: var(--text-sm);
}

.resolved-one {
  top: 108px;
}

.resolved-two {
  top: 242px;
}

.resolved-three {
  bottom: 78px;
  background: rgba(184, 217, 74, 0.15);
}

.hover-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.hover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.hover-card:hover,
.hover-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(15, 105, 86, 0.24);
  box-shadow: 0 24px 70px rgba(13, 23, 21, 0.14);
}

.hover-card:hover::before,
.hover-card:focus-within::before {
  opacity: 1;
}

.works-section {
  display: block;
}

.works-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--space-4);
}

.workflow-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 12%, rgba(184, 217, 74, 0.12), transparent 30%),
    var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.capture-card,
.resolve-card {
  grid-column: span 3;
}

.prove-card {
  grid-column: span 2;
}

.workflow-story-card {
  grid-column: span 4;
  background:
    radial-gradient(circle at 78% 32%, rgba(15, 105, 86, 0.18), transparent 38%),
    linear-gradient(135deg, #f8f7f2 0%, #eef3ea 100%);
}

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

.bento-index {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-tint);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.workflow-card h3 {
  margin: var(--space-3) 0 var(--space-2);
  max-width: 620px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.workflow-card p {
  margin: 0;
  max-width: 600px;
  color: var(--color-muted);
}

.workflow-graphic,
.route-story {
  position: relative;
  z-index: 1;
  min-height: 210px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(rgba(15, 105, 86, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 105, 86, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.58);
  background-size: 28px 28px;
}

.workflow-graphic svg,
.route-story svg {
  width: 100%;
  height: 100%;
  min-height: 210px;
}

.graphic-line,
.route-active {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 4;
  stroke-linecap: round;
}

.graphic-line.muted,
.route-muted {
  fill: none;
  stroke: rgba(15, 105, 86, 0.16);
  stroke-width: 16;
  stroke-linecap: round;
}

.source-card rect,
.floating-chip,
.document-front,
.evidence-tag {
  fill: #ffffff;
  stroke: rgba(15, 105, 86, 0.16);
  stroke-width: 1.5;
  filter: drop-shadow(0 14px 22px rgba(13, 23, 21, 0.1));
}

.source-card path,
.queue-mark,
.chip-line,
.doc-line {
  fill: none;
  stroke: rgba(15, 105, 86, 0.52);
  stroke-width: 5;
  stroke-linecap: round;
}

.queue-box,
.timeline-node,
.stamp-ring,
.story-node circle {
  fill: rgba(184, 217, 74, 0.18);
  stroke: var(--color-primary);
  stroke-width: 3;
}

.timeline-node.is-done,
.timeline-node.is-active {
  fill: var(--color-signal);
}

.check-path,
.stamp-check,
.story-node path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-chip.secondary,
.document-back {
  fill: rgba(15, 105, 86, 0.06);
  stroke: rgba(15, 105, 86, 0.14);
}

.root-line {
  fill: none;
  stroke: rgba(216, 137, 53, 0.42);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
}

.route-story {
  overflow: hidden;
  min-height: 260px;
}

.route-story svg {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.route-active {
  stroke: var(--color-primary);
  stroke-width: 5;
  filter: drop-shadow(0 0 12px rgba(15, 105, 86, 0.22));
}

.route-dot {
  fill: var(--color-signal);
  stroke: var(--color-primary);
  stroke-width: 3;
}

.story-steps {
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}

.story-steps span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-3);
  border: 1px solid rgba(15, 105, 86, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-muted);
  font-weight: 700;
  animation: story-step-pulse 6s infinite;
}

.story-steps span:nth-child(2) {
  animation-delay: 2s;
}

.story-steps span:nth-child(3) {
  animation-delay: 4s;
}

.story-steps strong {
  color: var(--color-primary);
}

@keyframes story-step-pulse {
  0%,
  28%,
  100% {
    background: rgba(255, 255, 255, 0.76);
    color: var(--color-muted);
    border-color: rgba(15, 105, 86, 0.12);
  }

  10%,
  20% {
    background: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
  }
}

.pill-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
}

.pill-row span {
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-pill);
  background: var(--color-surface-tint);
  color: var(--color-primary);
  font-size: var(--text-sm);
}

.platform-section {
  padding: var(--space-8) 0;
  background: var(--color-surface-soft);
}

.platform-shell {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.platform-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--color-border);
}

.platform-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 84px;
  padding: var(--space-3);
  background: var(--color-surface);
  color: var(--color-muted);
  border-right: 1px solid var(--color-border);
  cursor: pointer;
  font-weight: 700;
}

.platform-tab:last-child {
  border-right: 0;
}

.platform-tab img {
  width: 34px;
}

.platform-tab.is-active {
  background: var(--color-surface-tint);
  color: var(--color-primary);
}

.product-panels {
  position: relative;
  min-height: 460px;
}

.product-panel {
  display: none;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-6);
}

.product-panel.is-active {
  display: grid;
}

.product-panel h3 {
  margin: var(--space-3) 0;
  font-size: var(--text-3xl);
}

.check-list {
  display: grid;
  gap: var(--space-2);
  padding: 0;
  margin: var(--space-4) 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: var(--space-2);
  color: var(--color-text);
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: var(--radius-pill);
  background: var(--color-signal);
}

.mini-visual {
  position: relative;
  min-height: 330px;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(217, 222, 215, 0.45) 1px, transparent 1px),
    linear-gradient(rgba(217, 222, 215, 0.45) 1px, transparent 1px),
    var(--color-bg);
  background-size: 28px 28px;
  border: 1px solid var(--color-border);
}

.mini-card,
.tree-node,
.audit-line,
.message-bubble {
  width: fit-content;
  min-width: 170px;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  font-weight: 700;
}

.wide {
  min-width: 250px;
}

.verified {
  border-color: rgba(184, 217, 74, 0.75);
  background: #fbffe9;
}

.muted-card {
  opacity: 0.72;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-pill);
  background: var(--color-surface-tint);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.status-chip.danger {
  background: #fff1ee;
  color: var(--color-danger);
}

.status-chip.accent {
  background: var(--color-accent-soft);
  color: #985517;
}

.status-chip.info {
  background: #edf4ff;
  color: var(--color-info);
}

.status-chip.signal {
  background: #f3ffd2;
  color: var(--color-primary);
}

.defect-visual .status-chip {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
}

.defect-visual .wide {
  margin-top: 72px;
}

.defect-visual .mini-card:nth-child(3) {
  margin: var(--space-4) 0 0 110px;
}

.defect-visual .mini-card:nth-child(4) {
  margin: var(--space-4) 0 0 48px;
}

.tree-node {
  margin: 32px auto 0;
  text-align: center;
}

.tree-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  margin: var(--space-5) 0;
}

.tree-row span {
  flex: 1;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
  color: var(--color-muted);
  font-weight: 700;
}

.capa-visual .wide {
  margin: 0 auto;
}

.score-ring {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin: 24px auto;
  border-radius: 50%;
  border: 12px solid var(--color-signal);
  box-shadow: inset 0 0 0 10px var(--color-surface);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 600;
}

.supplier-visual .mini-card {
  margin: var(--space-3) auto 0;
}

.audit-line {
  margin: var(--space-3) 0;
  min-width: 240px;
}

.audit-line.done::before {
  content: "✓";
  margin-right: var(--space-2);
  color: var(--color-primary);
}

.message-bubble {
  margin-top: var(--space-3);
  min-width: 230px;
}

.message-bubble.right {
  margin-left: auto;
}

.hover-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.workflow-list .section-kicker {
  margin-bottom: var(--space-3);
}

.workflow-buttons {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.workflow-button {
  padding: 10px 0;
  background: transparent;
  color: rgba(24, 33, 31, 0.38);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.9vw, 34px);
  font-weight: 520;
  line-height: 1.08;
  text-align: left;
  transition: color 160ms ease, transform 160ms ease;
}

.workflow-button:hover,
.workflow-button:focus-visible,
.workflow-button.is-active {
  color: var(--color-primary);
  transform: translateX(8px);
  outline: none;
}

.workflow-stage {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 76% 24%, rgba(184, 217, 74, 0.12), transparent 34%),
    linear-gradient(145deg, #07110f 0%, #10201c 100%);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}

.workflow-stage::before {
  content: none;
}

.workflow-visual {
  position: absolute;
  inset: var(--space-4);
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  gap: 8px;
  padding: clamp(22px, 2.1vw, 32px);
  border: 1px solid rgba(248, 247, 242, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-bg);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.workflow-visual.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.workflow-visual h3 {
  margin-top: 6px;
  max-width: 560px;
  font-size: clamp(30px, 2.55vw, 42px);
  line-height: 1.04;
}

.workflow-visual p {
  max-width: 470px;
  margin-top: 4px;
  color: #c6d0cc;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.46;
}

.route-panel {
  position: relative;
  align-self: end;
  width: 100%;
  min-height: 188px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(248, 247, 242, 0.13);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 90% 18%, rgba(184, 217, 74, 0.14), transparent 32%),
    rgba(248, 247, 242, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.route-panel-top,
.route-photo-card,
.route-fields span,
.route-chain span,
.cause-tree span,
.supplier-tasks span,
.evidence-doc,
.audit-ready,
.customer-message,
.response-route span {
  border: 1px solid rgba(248, 247, 242, 0.13);
  background: rgba(248, 247, 242, 0.1);
  color: var(--color-bg);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.route-panel-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 10px 12px;
  border-radius: var(--radius-md);
}

.route-panel-top span,
.route-panel-top strong {
  font-size: 13px;
}

.route-panel-top strong {
  color: var(--color-signal);
}

.route-photo-card {
  width: min(250px, 72%);
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 14px auto;
  padding: 12px;
  border-radius: var(--radius-md);
  color: #dce7e1;
}

.route-photo-card svg {
  width: 22px;
  color: var(--color-signal);
}

.route-fields,
.route-chain,
.cause-tree,
.supplier-tasks,
.response-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.route-fields span,
.route-chain span,
.cause-tree span,
.supplier-tasks span,
.response-route span {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 0 var(--space-2);
  border-radius: var(--radius-md);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  text-align: center;
}

.route-chain {
  position: relative;
  margin-top: 14px;
}

.route-chain::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: rgba(184, 217, 74, 0.46);
}

.route-chain span {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-pill);
  background: rgba(15, 105, 86, 0.84);
}

.cause-tree {
  margin-top: 18px;
}

.cause-tree span {
  background: rgba(216, 137, 53, 0.14);
  color: #ffe3bd;
}

.supplier-panel {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: var(--space-3);
  align-items: center;
}

.supplier-score {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  border: 9px solid var(--color-signal);
  color: var(--color-bg);
  box-shadow: 0 0 0 9px rgba(184, 217, 74, 0.08);
}

.supplier-score strong {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1;
}

.supplier-score span {
  color: #c6d0cc;
  font-size: var(--text-xs);
}

.supplier-tasks {
  grid-template-columns: 1fr;
}

.supplier-tasks span {
  justify-content: start;
  place-items: center start;
  text-align: left;
}

.audit-panel {
  min-height: 190px;
}

.evidence-doc {
  position: absolute;
  width: 172px;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
}

.evidence-doc svg {
  width: 20px;
  color: var(--color-signal);
}

.main-doc {
  left: 50%;
  top: 18px;
  translate: -50% 0;
  z-index: 3;
}

.offset-one {
  left: 38px;
  top: 88px;
  rotate: -5deg;
}

.offset-two {
  right: 38px;
  top: 96px;
  rotate: 5deg;
}

.audit-ready {
  position: absolute;
  left: 50%;
  bottom: 10px;
  translate: -50% 0;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  color: var(--color-signal);
  font-weight: 800;
}

.customer-message {
  width: fit-content;
  max-width: 236px;
  padding: 10px 14px;
  border-radius: 22px 22px 22px 6px;
  font-size: 14px;
  font-weight: 700;
}

.customer-message.reply {
  margin-left: auto;
  border-radius: 22px 22px 6px 22px;
  background: rgba(184, 217, 74, 0.16);
}

.response-route {
  margin: 14px 0;
  gap: var(--space-2);
}

.response-route span {
  min-height: 36px;
  border-radius: var(--radius-pill);
}

.role-card {
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border-color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(15, 105, 86, 0.08),
    0 26px 70px rgba(18, 30, 27, 0.11);
  backdrop-filter: blur(22px) saturate(1.22);
  -webkit-backdrop-filter: blur(22px) saturate(1.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.role-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-md) - 1px);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.62), transparent 22%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 38%, rgba(184, 217, 74, 0.12) 80%);
  opacity: 0.78;
  pointer-events: none;
}

.role-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-accent);
  border-radius: inherit;
  clip-path: inset(0 100% 100% 0);
  transition: clip-path 260ms ease;
  pointer-events: none;
}

.role-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 217, 74, 0.76);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 34px 86px rgba(15, 105, 86, 0.16);
}

.role-card:hover::after {
  clip-path: inset(0 0 0 0);
}

.role-card img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  padding: 14px;
  margin-bottom: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 42px rgba(15, 105, 86, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.role-card h3,
.role-card p,
.role-card a,
.role-card img {
  position: relative;
  z-index: 1;
}

.role-card a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
  color: var(--color-primary);
  font-weight: 700;
}

.role-card a svg {
  width: 16px;
}

.plant-section {
  padding: var(--space-8) 0;
  background: var(--color-surface-tint);
}

.plant-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.plant-grid .section-kicker {
  margin-bottom: var(--space-3);
}

.plant-grid p {
  margin-top: var(--space-4);
}

.plant-map {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(217, 222, 215, 0.55) 1px, transparent 1px),
    linear-gradient(rgba(217, 222, 215, 0.55) 1px, transparent 1px),
    var(--color-surface);
  background-size: 34px 34px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.plant-map svg {
  position: absolute;
  inset: 44px;
  width: calc(100% - 88px);
  height: calc(100% - 88px);
}

.plant-route-base,
.plant-route-active {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plant-route-base {
  stroke: rgba(15, 91, 76, 0.14);
  stroke-width: 10;
}

.plant-route-active {
  stroke: var(--color-primary);
  stroke-width: 8;
}

.plant-room {
  position: absolute;
  display: grid;
  place-items: center;
  width: 170px;
  height: 86px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-primary);
  font-weight: 700;
  text-align: center;
  z-index: 2;
}

.room-a {
  left: 42px;
  bottom: 58px;
}

.room-b {
  left: 210px;
  top: 82px;
}

.room-c {
  right: 58px;
  top: 92px;
}

.room-d {
  right: 64px;
  bottom: 62px;
}

.plant-pin {
  position: absolute;
  z-index: 3;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-pill);
  background: var(--color-dark);
  color: var(--color-bg);
  font-size: var(--text-xs);
  font-weight: 700;
}

.pin-a {
  left: 72px;
  top: 190px;
}

.pin-b {
  left: 260px;
  bottom: 100px;
}

.pin-c {
  right: 88px;
  top: 210px;
}

.proof-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) clamp(24px, 4vw, 56px);
  border: 1px solid rgba(217, 222, 215, 0.78);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 16% 18%, rgba(184, 217, 74, 0.16), transparent 24%),
    radial-gradient(circle at 86% 82%, rgba(15, 105, 86, 0.12), transparent 26%),
    linear-gradient(180deg, #fbfaf6 0%, #f2f5ec 100%);
  box-shadow: 0 28px 80px rgba(18, 30, 27, 0.07);
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 105, 86, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(15, 105, 86, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}

.proof-section .section-heading {
  display: block;
  max-width: 790px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.proof-section .section-kicker {
  margin-bottom: var(--space-3);
}

.proof-section .section-heading h2 {
  margin-inline: auto;
}

.proof-section .section-heading p {
  max-width: 620px;
  margin: var(--space-3) auto 0;
}

.proof-card {
  overflow: hidden;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  border-color: rgba(7, 17, 15, 0.12);
  background:
    radial-gradient(circle at 18% 10%, rgba(184, 217, 74, 0.2), transparent 28%),
    linear-gradient(145deg, #07110f 0%, #13251f 100%);
  color: var(--color-bg);
  box-shadow: 0 22px 58px rgba(18, 30, 27, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-md) - 1px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.1), transparent 24%);
  pointer-events: none;
}

.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 217, 74, 0.62);
  box-shadow: 0 34px 78px rgba(15, 105, 86, 0.2);
}

.proof-card h3,
.proof-card p,
.proof-card span {
  position: relative;
  z-index: 1;
}

.proof-card span {
  color: var(--color-signal);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.proof-card p {
  margin-top: auto;
  color: #c6d0cc;
}

.pricing-dark {
  padding: var(--space-8) 0;
  background: #000000;
  color: var(--color-bg);
}

.pricing-inner {
  width: min(1080px, calc(100% - (var(--page-padding) * 2)));
  margin: 0 auto;
}

.pricing-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 30px;
  margin-bottom: var(--space-4);
  padding: 0 var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(248, 247, 242, 0.82);
  font-size: var(--text-xs);
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.pricing-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248, 247, 242, 0.72);
}

.pricing-header h2 {
  max-width: 620px;
  color: var(--color-bg);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 500;
}

.pricing-header p {
  max-width: 390px;
  margin: 0;
  color: rgba(248, 247, 242, 0.62);
  font-size: var(--text-md);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.price-card {
  --spot-x: -9999px;
  --spot-y: -9999px;
  position: relative;
  min-height: 100%;
  padding: var(--space-2);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  overflow: visible;
}

.spotlight-ring {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: radial-gradient(circle 460px at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.price-card:hover .spotlight-ring {
  opacity: 1;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card-inner {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #161616;
}

.price-card.featured .price-card-inner {
  background: #252525;
}

.best-value {
  position: absolute;
  z-index: 3;
  top: -12px;
  left: 50%;
  translate: -50% 0;
  padding: var(--space-1) var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #000000;
  font-size: var(--text-xs);
  font-weight: 700;
}

.plan-eyebrow {
  color: rgba(248, 247, 242, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-divider {
  height: 1px;
  margin-top: var(--space-3);
  background: rgba(255, 255, 255, 0.1);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  min-height: 62px;
  margin-top: var(--space-5);
}

.price-row strong {
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.price-row small {
  color: rgba(248, 247, 242, 0.45);
}

.price-note {
  min-height: 72px;
  margin: var(--space-3) 0 0;
  color: rgba(248, 247, 242, 0.62);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.pricing-primary,
.pricing-secondary {
  width: fit-content;
  min-height: 38px;
  margin-top: var(--space-4);
  padding: 0 var(--space-4);
  font-size: var(--text-sm);
}

.pricing-primary {
  background: rgba(255, 255, 255, 0.86);
  color: #000000;
  box-shadow: none;
}

.pricing-primary:hover,
.pricing-primary:focus-visible {
  background: #ffffff;
  color: #000000;
}

.pricing-secondary {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-bg);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.pricing-secondary:hover,
.pricing-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-bg);
}

.feature-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 54px;
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 247, 242, 0.84);
  font-size: var(--text-sm);
  line-height: 1.35;
}

.feature-list li:first-child {
  border-top: 0;
}

.feature-list li.excluded {
  color: rgba(248, 247, 242, 0.4);
}

.feature-list li > svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  padding: 3px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-bg);
}

.feature-list li.excluded > svg {
  border-color: rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(248, 247, 242, 0.5);
}

.pricing-footnote {
  max-width: 720px;
  margin: var(--space-5) auto 0;
  color: rgba(248, 247, 242, 0.52);
  font-size: var(--text-sm);
  text-align: center;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-2);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  min-height: 72px;
  padding: 0 var(--space-4);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.faq-item button svg {
  flex: 0 0 auto;
  width: 18px;
  color: var(--color-primary);
  transition: transform 160ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--color-muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 var(--space-4) var(--space-4);
}

.demo-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: var(--space-6);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-dark);
  color: var(--color-bg);
  box-shadow: var(--shadow-float);
}

.demo-copy .section-kicker {
  color: var(--color-signal);
  margin-bottom: var(--space-3);
}

.demo-copy p {
  color: #c6d0cc;
  margin-top: var(--space-4);
}

.demo-agenda {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.demo-agenda span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: #d7e0dc;
}

.demo-agenda svg {
  width: 18px;
  color: var(--color-signal);
}

.demo-booking {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(248, 247, 242, 0.12);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.slot-grid button {
  min-height: 48px;
  border: 1px solid rgba(248, 247, 242, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-bg);
  cursor: pointer;
}

.slot-grid button:hover,
.slot-grid button.is-selected {
  border-color: var(--color-signal);
  color: var(--color-signal);
}

.demo-form {
  display: grid;
  gap: var(--space-3);
}

.demo-form label {
  display: grid;
  gap: var(--space-1);
  color: #d7e0dc;
  font-size: var(--text-sm);
  font-weight: 700;
}

.demo-form input,
.demo-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 var(--space-3);
  border: 1px solid rgba(248, 247, 242, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-bg);
}

.demo-form select option {
  color: var(--color-text);
}

.page-main {
  overflow: hidden;
}

.product-page,
.demo-page-main {
  padding-top: 132px;
}

.product-hero {
  min-height: calc(100svh - 132px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  padding-bottom: var(--space-7);
}

.page-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  color: var(--color-muted);
  font-weight: 700;
  font-size: var(--text-sm);
  transition: color 160ms ease, transform 160ms ease;
}

.page-eyebrow:hover {
  color: var(--color-primary);
  transform: translateX(-2px);
}

.page-eyebrow svg {
  width: 16px;
  height: 16px;
}

.page-hero-copy h1,
.demo-page-copy h1,
.auth-copy h1 {
  margin-top: var(--space-3);
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--color-text);
  max-width: 760px;
}

.page-hero-copy p,
.demo-page-copy p,
.auth-copy p {
  max-width: 680px;
  margin-top: var(--space-4);
  color: var(--color-muted);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.62;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.product-visual-shell {
  min-height: 580px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(238, 246, 241, 0.66));
  border: 1px solid rgba(217, 222, 215, 0.84);
  box-shadow: var(--shadow-float);
}

.product-visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(184, 217, 74, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(248, 247, 242, 0.72));
  z-index: 1;
}

.product-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.92) contrast(0.94);
}

.product-route-card {
  position: absolute;
  z-index: 2;
  left: var(--space-5);
  right: var(--space-5);
  bottom: var(--space-5);
  min-height: 330px;
  padding: clamp(24px, 3vw, 42px);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(13, 23, 21, 0.92), rgba(22, 47, 39, 0.86));
  border: 1px solid rgba(248, 247, 242, 0.18);
  box-shadow: 0 28px 70px rgba(13, 23, 21, 0.24);
  color: var(--color-bg);
  overflow: hidden;
}

.product-route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 28%, rgba(184, 217, 74, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

.route-card-top,
.defect-context,
.route-fields {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.route-card-top {
  position: relative;
  z-index: 1;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(248, 247, 242, 0.16);
  color: #d7e0dc;
  font-weight: 800;
}

.route-card-top strong {
  color: var(--color-signal);
}

.defect-intake-visual {
  position: relative;
  z-index: 1;
  min-height: 240px;
  margin-top: var(--space-4);
}

.defect-photo {
  width: min(360px, 72%);
  min-height: 106px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  gap: var(--space-2);
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(248, 247, 242, 0.16);
  color: #d7e0dc;
  font-weight: 800;
}

.defect-photo svg {
  width: 28px;
  color: var(--color-signal);
}

.defect-context {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.defect-context span,
.route-state,
.capa-node,
.supplier-action-stack div {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(248, 247, 242, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.defect-context span {
  flex: 1;
  min-height: 48px;
  display: grid;
  place-items: center;
  color: #e6eee9;
  font-weight: 800;
}

.defect-route-line {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 58%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-danger), var(--color-primary), var(--color-signal));
  opacity: 0.78;
}

.route-state {
  position: absolute;
  padding: 10px 14px;
  color: #dce6e1;
  font-size: var(--text-sm);
  font-weight: 800;
}

.state-open {
  left: 4%;
  top: 44%;
}

.state-contained {
  left: 44%;
  top: 52%;
}

.state-proof {
  right: 3%;
  top: 40%;
}

.capa-chain-visual {
  position: relative;
  z-index: 1;
  min-height: 300px;
}

.capa-chain-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.capa-chain-base,
.capa-chain-active {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

.capa-chain-base {
  stroke: rgba(248, 247, 242, 0.16);
}

.capa-chain-active {
  stroke: var(--color-signal);
}

.capa-node {
  position: absolute;
  z-index: 1;
  width: 168px;
  min-height: 86px;
  padding: var(--space-3);
  color: #e6eee9;
}

.capa-node span,
.supplier-action-stack span {
  display: block;
  font-weight: 800;
}

.capa-node small,
.supplier-action-stack strong {
  display: block;
  margin-top: 5px;
  color: #b9c5c0;
  font-size: var(--text-sm);
}

.node-root {
  left: 0;
  top: 12px;
}

.node-action {
  left: 30%;
  bottom: 24px;
}

.node-approval {
  right: 20%;
  top: 56px;
}

.node-check {
  right: 0;
  bottom: 2px;
}

.supplier-route-card {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: var(--space-5);
  align-items: center;
}

.supplier-score-large {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  border: 16px solid var(--color-signal);
  border-radius: 50%;
  background: rgba(13, 23, 21, 0.56);
  box-shadow: 0 0 0 18px rgba(184, 217, 74, 0.12);
}

.supplier-score-large strong {
  display: block;
  font-size: 56px;
  line-height: 1;
}

.supplier-score-large span {
  color: #c6d0cc;
  font-weight: 700;
}

.supplier-action-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-3);
}

.supplier-action-stack div {
  min-height: 62px;
  padding: var(--space-3);
}

.supplier-action-stack strong {
  color: var(--color-signal);
}

.product-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  padding-top: 0;
}

.product-proof-strip article,
.product-feature-card,
.product-flow article,
.demo-context-card,
.demo-booking-card {
  border: 1px solid rgba(217, 222, 215, 0.78);
  background: rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-proof-strip article:hover,
.product-feature-card:hover,
.product-flow article:hover,
.demo-context-card:hover,
.demo-booking-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 91, 76, 0.28);
  box-shadow: 0 18px 44px rgba(13, 23, 21, 0.12);
}

.product-proof-strip article {
  padding: var(--space-4);
}

.product-proof-strip span,
.product-flow span {
  color: var(--color-primary);
  font-weight: 800;
  font-size: var(--text-sm);
}

.product-proof-strip strong {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-text);
}

.product-proof-strip p,
.product-feature-card p,
.product-flow p {
  margin-top: var(--space-2);
  color: var(--color-muted);
  line-height: 1.6;
}

.product-feature-section {
  padding-top: var(--space-8);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.product-feature-card {
  padding: var(--space-4);
  min-height: 260px;
}

.product-feature-card svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  background: var(--color-surface-tint);
}

.product-feature-card h3 {
  margin-top: var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  line-height: 1.25;
}

.product-flow-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: var(--space-6);
  align-items: start;
}

.product-flow-section h2 {
  margin-top: var(--space-3);
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
}

.product-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.product-flow article {
  min-height: 190px;
  padding: var(--space-4);
  position: relative;
  overflow: hidden;
}

.product-flow article::after {
  content: "";
  position: absolute;
  inset: auto var(--space-4) var(--space-4) auto;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-signal));
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-dark);
  color: var(--color-bg);
  box-shadow: var(--shadow-float);
}

.page-cta h2 {
  max-width: 760px;
  margin-top: var(--space-2);
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.page-cta .section-kicker {
  color: var(--color-signal);
}

.auth-body {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 16%, rgba(184, 217, 74, 0.16), transparent 28%),
    linear-gradient(135deg, var(--color-bg), #eef4ec 58%, #ffffff);
}

.auth-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--space-5) var(--page-padding);
}

.auth-shell {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(480px, 1.18fr);
  gap: var(--space-4);
  align-items: stretch;
}

.auth-card,
.auth-visual,
.demo-route-summary,
.demo-summary-card {
  border: 1px solid rgba(217, 222, 215, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
}

.auth-card {
  padding: clamp(28px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
}

.auth-brand img {
  width: 160px;
}

.auth-copy {
  margin-top: var(--space-6);
}

.auth-copy h1 {
  font-size: clamp(36px, 4vw, 52px);
}

.auth-copy p {
  font-size: var(--text-lg);
}

.auth-form {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.auth-form label,
.demo-page-form label {
  display: grid;
  gap: var(--space-1);
  color: var(--color-text);
  font-weight: 800;
  font-size: var(--text-sm);
}

.auth-form input,
.demo-page-form input,
.demo-page-form select,
.demo-page-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text);
  font: inherit;
}

.demo-page-form textarea {
  min-height: 116px;
  padding: var(--space-3);
  resize: vertical;
}

.auth-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.auth-check {
  display: inline-flex !important;
  align-items: center;
  grid-template-columns: auto 1fr;
}

.auth-check input {
  min-height: auto;
  width: auto;
}

.auth-divider {
  margin: var(--space-5) 0 var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--color-border);
}

.auth-sso-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.auth-sso-grid button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  color: var(--color-text);
  font-weight: 800;
  cursor: pointer;
}

.auth-sso-grid svg {
  width: 18px;
  color: var(--color-primary);
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-5);
  font-size: var(--text-sm);
}

.form-status {
  min-height: 20px;
  color: var(--color-primary);
  font-weight: 800;
}

.auth-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--color-surface);
}

.auth-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(13, 23, 21, 0.68));
}

.auth-glass-panel {
  position: absolute;
  z-index: 1;
  left: var(--space-5);
  right: var(--space-5);
  bottom: var(--space-5);
  padding: var(--space-5);
  border: 1px solid rgba(248, 247, 242, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(13, 23, 21, 0.48);
  color: var(--color-bg);
  backdrop-filter: blur(20px) saturate(1.2);
}

.auth-glass-panel > span,
.demo-summary-card span {
  color: var(--color-signal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: var(--text-xs);
}

.auth-glass-panel h2 {
  max-width: 520px;
  margin-top: var(--space-3);
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.auth-route-meter {
  width: 148px;
  height: 148px;
  margin-top: var(--space-5);
  display: grid;
  place-items: center;
  text-align: center;
  border: 12px solid var(--color-signal);
  border-radius: 50%;
}

.auth-route-meter strong {
  font-size: var(--text-3xl);
}

.auth-route-meter small {
  color: #c6d0cc;
}

.auth-mini-list {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.auth-mini-list div,
.demo-context-list div {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.auth-mini-list svg,
.demo-context-list svg {
  width: 18px;
  color: var(--color-signal);
}

.demo-page-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: var(--space-6);
  padding-top: 0;
}

.demo-route-summary {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
}

.demo-route-summary img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-route-summary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(248, 247, 242, 0.72));
}

.demo-summary-card {
  position: absolute;
  z-index: 1;
  left: var(--space-5);
  right: var(--space-5);
  bottom: var(--space-5);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.demo-summary-card strong {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
}

.demo-summary-card p {
  margin-top: var(--space-2);
  color: var(--color-muted);
}

.demo-scheduler {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: var(--space-4);
  align-items: start;
  padding-top: 0;
  padding-bottom: var(--space-8);
}

.demo-context-card,
.demo-booking-card {
  padding: clamp(24px, 3vw, 40px);
}

.demo-context-card {
  position: sticky;
  top: 124px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(238, 246, 241, 0.7)),
    radial-gradient(circle at 86% 18%, rgba(184, 217, 74, 0.18), transparent 32%);
}

.demo-context-card h2,
.demo-card-header h2 {
  margin-top: var(--space-2);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.demo-context-card p {
  margin-top: var(--space-3);
  color: var(--color-muted);
  line-height: 1.6;
}

.demo-context-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
  color: var(--color-text);
  font-weight: 800;
}

.demo-context-list svg {
  color: var(--color-primary);
}

.demo-booking-card {
  background: var(--color-dark);
  color: var(--color-bg);
}

.demo-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.demo-card-header svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: var(--radius-md);
  background: rgba(184, 217, 74, 0.12);
  color: var(--color-signal);
}

.demo-day-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.demo-day-strip span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: #c6d0cc;
  font-weight: 800;
}

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

.selected-slot {
  min-height: 48px;
  display: flex;
  align-items: center;
  margin: var(--space-4) 0;
  padding: 0 var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(184, 217, 74, 0.1);
  color: var(--color-signal);
  font-weight: 800;
}

.demo-page-form {
  padding-top: var(--space-2);
}

.demo-page-form label {
  color: #e6eee9;
}

.demo-page-form input,
.demo-page-form select,
.demo-page-form textarea {
  border-color: rgba(248, 247, 242, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-bg);
}

.demo-page-form select option {
  color: var(--color-text);
}

.site-footer {
  padding: var(--space-7) var(--page-padding) var(--space-4);
  background: var(--color-dark);
  color: var(--color-bg);
}

.footer-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--space-5);
}

.footer-brand img {
  width: 156px;
}

.footer-brand p,
.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: #c6d0cc;
}

.footer-grid h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-md);
  color: var(--color-bg);
}

.footer-grid a {
  display: block;
  margin-bottom: var(--space-2);
  transition: color 160ms ease;
}

.footer-grid a:hover {
  color: var(--color-signal);
}

.social-row {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.social-row a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(248, 247, 242, 0.14);
  border-radius: var(--radius-pill);
}

.social-row svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  width: min(var(--container), 100%);
  margin: var(--space-6) auto 0;
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  border-top: 1px solid rgba(248, 247, 242, 0.12);
  font-size: var(--text-sm);
}

.reveal {
  opacity: 1;
}

@media (max-width: 1120px) {
  .works-section,
  .why-shell,
  .hover-workflow,
  .plant-grid,
  .demo-panel,
  .product-hero,
  .product-flow-section,
  .demo-page-hero,
  .demo-scheduler,
  .auth-shell {
    grid-template-columns: 1fr;
  }

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

  .quality-field {
    height: 560px;
  }

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

  .product-visual-shell {
    min-height: 520px;
  }

  .auth-shell {
    width: min(720px, 100%);
  }

  .auth-visual {
    min-height: 520px;
  }

  .demo-context-card {
    position: static;
  }

  .why-stage {
    min-height: 540px;
  }

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

  .capture-card,
  .resolve-card,
  .prove-card {
    grid-column: span 1;
  }

  .workflow-story-card {
    grid-column: span 2;
  }

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

@media (max-width: 980px) {
  .mobile-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav-wrap {
    position: relative;
  }

  .nav-menu {
    position: fixed;
    inset: 96px var(--page-padding) auto var(--page-padding);
    max-height: calc(100vh - 116px);
    overflow: auto;
    display: none;
    padding: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-float);
  }

  body.nav-open .nav-menu {
    display: block;
  }

  .nav-group,
  .nav-actions {
    display: grid;
    gap: var(--space-2);
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin: var(--space-2) 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
  }

  .nav-item.is-open .mega-menu {
    display: grid;
  }

  .mega-grid,
  .solution-grid,
  .role-grid,
  .pricing-grid,
  .proof-grid,
  .product-proof-strip,
  .product-feature-grid,
  .product-flow,
  .demo-slot-grid,
  .platform-tabs,
  .product-panel,
  .split-heading,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .platform-tab {
    justify-content: flex-start;
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .works-bento,
  .story-steps {
    grid-template-columns: 1fr;
  }

  .workflow-story-card {
    grid-column: span 1;
  }

  .product-page,
  .demo-page-main {
    padding-top: 112px;
  }

  .page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .supplier-route-card {
    grid-template-columns: 1fr;
  }

  .supplier-score-large {
    width: 150px;
    height: 150px;
    border-width: 12px;
  }

  .auth-sso-grid,
  .demo-day-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 120px;
    padding-bottom: var(--space-5);
  }

  .hero-title {
    font-size: clamp(40px, 12vw, 48px);
  }

  .hero-lede {
    font-size: var(--text-md);
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .quality-field {
    height: 620px;
    border-radius: var(--radius-lg);
  }

  .why-story {
    padding: var(--space-6) 0;
  }

  .why-shell {
    gap: var(--space-5);
  }

  .why-copy h2,
  .why-copy p {
    max-width: none;
  }

  .why-beats span {
    width: 100%;
    border-radius: var(--radius-md);
  }

  .why-stage {
    min-height: 680px;
    border-radius: var(--radius-lg);
  }

  .why-stage::before,
  .stage-label {
    display: none;
  }

  .why-map {
    width: 146%;
    max-width: none;
    left: -23%;
  }

  .scatter-note,
  .resolved-step {
    width: 158px;
    padding: 12px;
  }

  .scatter-note strong {
    font-size: var(--text-md);
  }

  .note-sheet {
    top: 42px;
    left: 18px;
  }

  .note-email {
    top: 176px;
    left: auto;
    right: 18px;
  }

  .note-audit {
    top: 314px;
    bottom: auto;
    left: 18px;
  }

  .resolve-core {
    top: 54%;
    left: 50%;
    width: 132px;
    height: 132px;
  }

  .resolve-core img {
    width: 50px;
  }

  .resolved-step {
    right: auto;
    left: 50%;
    translate: -50% 0;
  }

  .resolved-one {
    top: auto;
    bottom: 170px;
  }

  .resolved-two {
    top: auto;
    bottom: 104px;
  }

  .resolved-three {
    bottom: 38px;
  }

  .quality-field-map {
    width: 156%;
    max-width: none;
    left: -28%;
  }

  .field-stage {
    display: none;
  }

  .workflow-stage,
  .plant-map {
    min-height: 560px;
  }

  .workflow-button {
    font-size: clamp(22px, 7vw, 30px);
  }

  .workflow-visual {
    inset: var(--space-3);
    padding: var(--space-4);
    gap: 8px;
  }

  .workflow-visual h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .route-panel {
    min-height: 260px;
    margin-top: 18px;
    padding: var(--space-3);
  }

  .route-fields,
  .route-chain,
  .cause-tree,
  .response-route {
    grid-template-columns: 1fr;
  }

  .supplier-panel {
    grid-template-columns: 1fr;
    place-items: center;
    gap: var(--space-3);
  }

  .supplier-score {
    width: 104px;
    height: 104px;
    border-width: 9px;
  }

  .supplier-tasks {
    width: 100%;
  }

  .evidence-doc {
    width: 148px;
    min-height: 58px;
    font-size: var(--text-xs);
  }

  .main-doc {
    top: 18px;
  }

  .offset-one {
    left: 14px;
    top: 108px;
  }

  .offset-two {
    right: 14px;
    top: 118px;
  }

  .audit-ready {
    bottom: 16px;
  }

  .customer-message {
    max-width: 220px;
  }

  .response-route span {
    min-height: 38px;
  }

  .signal-chip {
    padding: var(--space-2) 10px;
    font-size: var(--text-xs);
  }

  .chip-defect {
    left: var(--space-3);
    top: 90px;
  }

  .chip-audit {
    left: auto;
    right: var(--space-3);
    top: 122px;
  }

  .chip-complaint {
    left: var(--space-3);
    bottom: 148px;
  }

  .chip-supplier {
    left: auto;
    right: var(--space-3);
    bottom: 186px;
  }

  .quality-core {
    width: 184px;
    height: 184px;
  }

  .core-mark {
    width: 62px;
    height: 62px;
  }

  .core-mark img {
    width: 44px;
  }

  .field-proof {
    width: 168px;
    min-height: 48px;
    font-size: var(--text-xs);
  }

  .proof-owner {
    right: var(--space-3);
    top: 214px;
  }

  .proof-capa {
    left: var(--space-3);
    top: 310px;
    right: auto;
  }

  .proof-ready {
    right: var(--space-3);
    bottom: 92px;
  }

  .field-sequence {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    bottom: var(--space-3);
  }

  .field-sequence span {
    min-height: 36px;
  }

  .product-panel,
  .demo-panel,
  .demo-booking,
  .product-route-card,
  .auth-card,
  .auth-glass-panel,
  .demo-context-card,
  .demo-booking-card {
    padding: var(--space-4);
  }

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

  .product-page,
  .demo-page-main {
    padding-top: 100px;
  }

  .page-hero-copy h1,
  .demo-page-copy h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .page-hero-copy p,
  .demo-page-copy p {
    font-size: var(--text-md);
  }

  .product-visual-shell,
  .demo-route-summary,
  .auth-visual {
    min-height: 500px;
  }

  .product-route-card {
    left: var(--space-3);
    right: var(--space-3);
    bottom: var(--space-3);
    min-height: 300px;
  }

  .defect-context {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: var(--space-3);
  }

  .defect-route-line,
  .route-state,
  .capa-chain-visual svg {
    display: none;
  }

  .defect-intake-visual,
  .capa-chain-visual {
    min-height: auto;
  }

  .capa-node {
    position: static;
    width: 100%;
    margin-bottom: var(--space-2);
  }

  .supplier-score-large {
    width: 128px;
    height: 128px;
    border-width: 10px;
  }

  .supplier-score-large strong {
    font-size: 40px;
  }

  .product-proof-strip article,
  .product-feature-card,
  .product-flow article {
    min-height: auto;
  }

  .demo-summary-card {
    left: var(--space-3);
    right: var(--space-3);
    bottom: var(--space-3);
    padding: var(--space-4);
  }

  .auth-main {
    padding: var(--space-3);
  }

  .auth-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-route-meter {
    width: 120px;
    height: 120px;
    border-width: 10px;
  }

  .auth-links,
  .auth-row {
    flex-direction: column;
  }
}

/* Product page spacing refinement */
.product-page {
  padding-top: 118px;
}

.product-page .section-shell {
  width: min(1280px, calc(100% - (var(--page-padding) * 2)));
}

.product-page .product-hero {
  min-height: auto;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 64px);
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(52px, 6vw, 78px);
}

.product-page .page-hero-copy {
  max-width: 640px;
  text-align: left;
}

.product-page h1,
.product-page h2,
.product-page h3,
.product-page p,
.product-page .section-heading,
.product-page .product-proof-strip article,
.product-page .product-feature-card,
.product-page .product-flow article,
.product-page .page-cta {
  text-align: left;
}

.product-page .section-kicker {
  justify-content: flex-start;
}

.product-page .page-hero-copy > .section-kicker {
  display: flex;
  width: fit-content;
}

.product-page .page-eyebrow {
  margin-bottom: var(--space-4);
  display: flex;
  width: fit-content;
}

.product-page .page-hero-copy h1 {
  max-width: 640px;
  font-size: clamp(40px, 4.25vw, 62px);
  line-height: 1.08;
}

.product-page .page-hero-copy p {
  max-width: 590px;
  margin-top: var(--space-3);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.58;
}

.product-page .page-actions {
  margin-top: var(--space-4);
}

.product-page .product-visual-shell {
  min-height: clamp(430px, 42vw, 520px);
}

.product-page .product-route-card {
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  min-height: 280px;
  padding: clamp(20px, 2.2vw, 30px);
}

.product-page .route-card-top {
  min-height: 58px;
  padding: var(--space-2) var(--space-3);
}

.product-page .defect-intake-visual {
  min-height: 210px;
  margin-top: var(--space-3);
}

.product-page .defect-photo {
  width: min(320px, 70%);
  min-height: 90px;
}

.product-page .defect-context span {
  min-height: 44px;
  font-size: var(--text-sm);
}

.product-page .capa-chain-visual {
  min-height: 260px;
}

.product-page .capa-node {
  width: 150px;
  min-height: 76px;
  padding: 12px;
}

.product-page .supplier-route-card {
  gap: var(--space-4);
  grid-template-columns: minmax(132px, 0.62fr) minmax(0, 1fr);
}

.product-page .supplier-score-large {
  width: 136px;
  height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  border-width: 11px;
  box-shadow: 0 0 0 11px rgba(184, 217, 74, 0.1);
}

.product-page .supplier-score-large strong {
  font-size: 40px;
  line-height: 0.95;
  transform: translateY(1px);
}

.product-page .supplier-score-large span {
  max-width: 86px;
  font-size: 13px;
  line-height: 1.12;
}

.product-page .supplier-action-stack {
  gap: var(--space-2);
}

.product-page .supplier-action-stack div {
  min-height: 56px;
  padding: 12px 14px;
}

.product-page .product-proof-strip {
  gap: var(--space-3);
  margin-top: clamp(26px, 3vw, 46px);
}

.product-page .product-proof-strip article {
  min-height: 190px;
  padding: var(--space-4);
}

.product-page .product-feature-section {
  margin-top: clamp(28px, 4vw, 56px);
  padding-top: clamp(64px, 7vw, 86px);
}

.product-page .product-feature-section .section-heading {
  display: block;
  max-width: 820px;
  margin: 0;
  text-align: left;
}

.product-page .product-feature-section .section-kicker {
  justify-content: flex-start;
}

.product-page .product-feature-section .section-heading p {
  max-width: 660px;
  margin: var(--space-3) 0 0;
}

.product-page .product-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.product-page .product-feature-card {
  min-height: 220px;
  padding: var(--space-4);
}

.product-page .product-flow-section {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  margin-top: clamp(30px, 4vw, 58px);
  padding-top: clamp(64px, 7vw, 86px);
}

.product-page .product-flow-section h2 {
  max-width: 460px;
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.1;
}

.product-page .product-flow article {
  min-height: 160px;
  padding: var(--space-4);
}

.product-page .page-cta {
  margin-top: clamp(76px, 8vw, 112px);
  margin-bottom: clamp(72px, 8vw, 112px);
  padding: clamp(28px, 4vw, 48px);
}

.product-page .page-cta h2 {
  max-width: 720px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.1;
}

@media (max-width: 1120px) {
  .product-page .product-hero {
    padding-top: var(--space-6);
    gap: var(--space-5);
  }

  .product-page .page-hero-copy {
    max-width: 760px;
  }

  .product-page .product-visual-shell {
    min-height: 500px;
  }

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

@media (max-width: 980px) {
  .product-page {
    padding-top: 108px;
  }

  .product-page .product-flow-section {
    grid-template-columns: 1fr;
  }

  .product-page .product-flow-section h2 {
    max-width: none;
  }

  .product-page .product-proof-strip {
    grid-template-columns: 1fr;
  }

  .product-page .supplier-route-card {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .product-page {
    padding-top: 100px;
  }

  .product-page .product-hero {
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
  }

  .product-page .page-hero-copy h1 {
    font-size: clamp(36px, 11vw, 44px);
  }

  .product-page .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .product-page .product-route-card {
    min-height: 280px;
    padding: var(--space-4);
  }

  .product-page .supplier-score-large {
    width: 124px;
    height: 124px;
    border-width: 10px;
    box-shadow: 0 0 0 9px rgba(184, 217, 74, 0.1);
  }

  .product-page .supplier-score-large strong {
    font-size: 36px;
  }
}

/* Funding announcement */
.nav-news {
  position: relative;
}

.nav-news::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-signal);
  transform: translateX(-50%);
}

.nav-news.is-current {
  color: var(--color-primary);
}

.funding-strip {
  padding-top: 112px;
}

.funding-strip-after-entry {
  padding-top: var(--space-7);
  padding-bottom: var(--space-3);
}

.funding-strip-card {
  min-height: 64px;
  padding: 12px 16px 12px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
  border: 1px solid rgba(15, 91, 76, 0.2);
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(238, 246, 241, 0.92), rgba(255, 255, 255, 0.92));
  box-shadow: 0 12px 34px rgba(13, 23, 21, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.funding-strip-card:hover,
.funding-strip-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(15, 91, 76, 0.36);
  box-shadow: 0 18px 42px rgba(13, 23, 21, 0.1);
}

.funding-strip-label,
.funding-strip-link,
.funding-strip-copy,
.funding-strip-copy small {
  display: flex;
  align-items: center;
}

.funding-strip-label {
  gap: 8px;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
}

.funding-strip-label svg,
.funding-strip-link svg {
  width: 17px;
  height: 17px;
}

.funding-strip-copy {
  min-width: 0;
  gap: var(--space-3);
}

.funding-strip-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
}

.funding-strip-copy small {
  flex: 0 0 auto;
  gap: var(--space-2);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.funding-strip-copy small::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
}

.funding-strip-link {
  gap: 8px;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Homepage prologue: scattered quality signals resolve into one evidence record. */
.entry-sequence {
  position: relative;
  height: 220svh;
  margin-top: var(--space-4);
  color: #f5f6ef;
  background: #07130f;
}

.entry-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 53% 53%, rgba(54, 114, 92, 0.24), transparent 33%),
    radial-gradient(circle at 92% 84%, rgba(184, 217, 74, 0.08), transparent 27%),
    linear-gradient(118deg, #07130f 0%, #0b1a15 56%, #07110f 100%);
}

.entry-sticky::before,
.entry-sticky::after {
  content: "";
  position: absolute;
  inset: auto;
  border: 1px solid rgba(215, 231, 222, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.entry-sticky::before {
  width: 52vw;
  height: 52vw;
  right: -28vw;
  top: -30vw;
}

.entry-sticky::after {
  width: 34vw;
  height: 34vw;
  left: -20vw;
  bottom: -22vw;
}

.entry-frame {
  position: relative;
  width: min(1560px, calc(100% - (var(--page-padding) * 2)));
  height: 100%;
  min-height: inherit;
  margin: 0 auto;
  padding: 124px 0 34px;
  display: grid;
  grid-template-rows: auto auto minmax(340px, 1fr) auto;
}

.entry-status,
.entry-footer {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(224, 234, 229, 0.6);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.entry-status {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(224, 234, 229, 0.12);
}

.entry-status-live,
.entry-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.entry-status-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-signal);
  box-shadow: 0 0 0 6px rgba(184, 217, 74, 0.08);
}

.entry-copy-stack {
  position: relative;
  z-index: 7;
  height: clamp(160px, 22vh, 200px);
  padding-top: clamp(20px, 4vh, 42px);
  pointer-events: none;
}

.entry-copy {
  position: absolute;
  top: clamp(20px, 4vh, 42px);
  left: 0;
  width: min(820px, 70vw);
}

.entry-copy:not(.entry-copy-scatter) {
  opacity: 0;
}

.entry-copy p {
  margin: 0 0 10px;
  color: var(--color-signal);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.entry-copy h2 {
  max-width: 820px;
  color: #f5f6ef;
  font-size: clamp(34px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 1.03;
  text-wrap: balance;
}

.entry-stage {
  position: relative;
  z-index: 2;
  min-height: 340px;
}

.entry-traces {
  position: absolute;
  inset: -12% 0 -2%;
  width: 100%;
  height: 114%;
  overflow: visible;
}

.entry-trace,
.entry-proof-trace,
.entry-orbit {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.entry-trace {
  stroke: url(#entryTraceGradient);
  stroke-width: 1.35;
  stroke-linecap: round;
  opacity: 0.58;
}

.entry-proof-trace {
  stroke: var(--color-signal);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.12;
}

.entry-orbit {
  transform-origin: 614px 318px;
  stroke: rgba(184, 217, 74, 0.22);
  stroke-width: 1;
  stroke-dasharray: 5 13;
}

.entry-orbit-inner {
  stroke: rgba(224, 234, 229, 0.12);
  stroke-dasharray: 2 9;
}

.entry-signal {
  position: absolute;
  z-index: 4;
  width: clamp(190px, 15vw, 244px);
  min-height: 66px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(224, 234, 229, 0.16);
  border-radius: 6px;
  background: rgba(20, 40, 33, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  will-change: transform, opacity;
}

.entry-signal > span:not(.entry-signal-icon) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.entry-signal small,
.entry-core small {
  color: rgba(224, 234, 229, 0.48);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
}

.entry-signal strong {
  overflow: hidden;
  color: #f5f6ef;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.entry-signal em {
  color: rgba(224, 234, 229, 0.58);
  font-size: 9px;
  font-style: normal;
}

.entry-signal-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
}

.entry-signal-icon svg {
  width: 17px;
  height: 17px;
}

.entry-signal-icon.is-defect { color: #ed8c72; }
.entry-signal-icon.is-capa { color: #e7ad67; }
.entry-signal-icon.is-audit { color: #8dc6b5; }
.entry-signal-icon.is-supplier { color: #9fb9df; }
.entry-signal-icon.is-complaint { color: #d4e889; }

.signal-defect { left: 2%; top: 5%; }
.signal-capa { left: 8%; bottom: 5%; }
.signal-audit { left: 39%; top: -4%; }
.signal-supplier { right: 5%; top: 10%; }
.signal-complaint { right: 8%; bottom: 3%; }

.entry-core {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 53%;
  width: 132px;
  height: 132px;
  padding: 18px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(184, 217, 74, 0.28);
  border-radius: 50%;
  background: rgba(9, 25, 20, 0.92);
  box-shadow: 0 0 70px rgba(83, 151, 123, 0.18), inset 0 0 36px rgba(184, 217, 74, 0.04);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.entry-core-pulse {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(184, 217, 74, 0.16);
  border-radius: inherit;
}

.entry-core img {
  width: 34px;
  height: 34px;
}

.entry-core strong {
  color: #f5f6ef;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
}

.entry-proof-record {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 53%;
  width: min(500px, 38vw);
  min-height: 214px;
  padding: 22px;
  border: 1px solid rgba(184, 217, 74, 0.3);
  border-radius: 7px;
  background: rgba(16, 38, 30, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), 0 0 80px rgba(87, 147, 121, 0.16);
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.entry-proof-topline,
.entry-proof-meta {
  display: flex;
  align-items: center;
}

.entry-proof-topline {
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(224, 234, 229, 0.12);
  color: var(--color-signal);
  font-size: 10px;
  font-weight: 600;
}

.entry-proof-topline span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.entry-proof-topline svg {
  width: 15px;
  height: 15px;
}

.entry-proof-topline small {
  color: rgba(224, 234, 229, 0.58);
}

.entry-proof-record > strong {
  display: block;
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
}

.entry-proof-meta {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(224, 234, 229, 0.1);
  border-bottom: 1px solid rgba(224, 234, 229, 0.1);
}

.entry-proof-meta span {
  padding: 12px 10px;
  display: grid;
  gap: 2px;
  color: rgba(224, 234, 229, 0.48);
  font-size: 9px;
}

.entry-proof-meta span + span {
  border-left: 1px solid rgba(224, 234, 229, 0.1);
}

.entry-proof-meta b {
  color: #f5f6ef;
  font-size: 11px;
  font-weight: 500;
}

.entry-proof-stamp {
  position: absolute;
  right: 22px;
  bottom: -18px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--radius-pill);
  background: var(--color-signal);
  color: #102019;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.entry-proof-stamp svg {
  width: 14px;
  height: 14px;
}

.entry-footer {
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(224, 234, 229, 0.12);
}

.entry-scroll-cue i {
  position: relative;
  width: 18px;
  height: 28px;
  border: 1px solid rgba(224, 234, 229, 0.34);
  border-radius: 12px;
}

.entry-scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 2px;
  height: 6px;
  border-radius: 2px;
  background: var(--color-signal);
  transform: translateX(-50%);
  animation: entry-scroll-dot 1.8s ease-in-out infinite;
}

.entry-progress {
  flex: 1;
  max-width: 420px;
  height: 1px;
  overflow: hidden;
  background: rgba(224, 234, 229, 0.14);
}

.entry-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #d88935, var(--color-signal));
  transform: scaleX(0);
  transform-origin: left center;
}

@keyframes entry-scroll-dot {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.3; }
  50% { transform: translate(-50%, 9px); opacity: 1; }
}

.entry-sequence.is-static {
  height: auto;
}

.entry-sequence.is-static .entry-sticky {
  position: relative;
  height: auto;
  min-height: 760px;
}

.entry-sequence.is-static .entry-copy-scatter,
.entry-sequence.is-static .entry-copy-connect,
.entry-sequence.is-static .entry-signal,
.entry-sequence.is-static .entry-trace,
.entry-sequence.is-static .entry-scroll-cue {
  display: none;
}

.entry-sequence.is-static .entry-copy-proof,
.entry-sequence.is-static .entry-proof-record {
  opacity: 1;
}

.entry-sequence.is-static .entry-core {
  opacity: 0.18;
}

@media (max-width: 980px) {
  .entry-sequence {
    height: 185svh;
  }

  .entry-frame {
    padding-top: 112px;
  }

  .entry-copy {
    width: min(760px, 90vw);
  }

  .entry-signal {
    width: 194px;
  }

  .signal-audit {
    left: 35%;
  }

  .entry-proof-record {
    width: min(500px, 62vw);
  }
}

@media (max-width: 640px) {
  .entry-sequence {
    height: 170svh;
    margin-top: var(--space-3);
  }

  .entry-sticky {
    min-height: 620px;
  }

  .entry-frame {
    width: calc(100% - 32px);
    padding: 100px 0 22px;
    grid-template-rows: auto 148px minmax(260px, 1fr) auto;
  }

  .entry-status,
  .entry-footer {
    font-size: 9px;
  }

  .entry-status-live {
    gap: 7px;
  }

  .entry-copy,
  .entry-copy h2 {
    width: 100%;
    max-width: 100%;
  }

  .entry-copy h2 {
    font-size: clamp(31px, 9.5vw, 46px);
  }

  .entry-stage {
    min-height: 260px;
  }

  .entry-traces {
    inset: -2% -22% -2%;
    width: 144%;
  }

  .entry-signal {
    width: 156px;
    min-height: 54px;
    padding: 8px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 7px;
  }

  .entry-signal-icon {
    width: 30px;
    height: 30px;
  }

  .entry-signal-icon svg {
    width: 14px;
    height: 14px;
  }

  .entry-signal strong {
    font-size: 10px;
  }

  .entry-signal em {
    display: none;
  }

  .signal-defect { left: 0; top: 8%; }
  .signal-capa { left: 2%; bottom: 4%; }
  .signal-audit { left: calc(50% - 78px); top: -3%; }
  .signal-supplier { right: 0; top: 15%; }
  .signal-complaint { right: 1%; bottom: 2%; }

  .entry-core {
    width: 104px;
    height: 104px;
    padding: 13px;
  }

  .entry-core img {
    width: 29px;
    height: 29px;
  }

  .entry-proof-record {
    width: calc(100% - 18px);
    min-height: 194px;
    padding: 18px;
  }

  .entry-proof-record > strong {
    margin-top: 18px;
    font-size: 21px;
  }

  .entry-proof-meta {
    margin-top: 18px;
  }

  .entry-proof-meta span {
    padding: 10px 6px;
  }

  .entry-proof-stamp {
    right: 18px;
  }

  .entry-footer > span:last-child {
    display: none;
  }

  .entry-progress {
    max-width: 42vw;
  }

  .entry-sequence.is-static .entry-sticky {
    min-height: 650px;
  }
}

/* Homepage entry v2: an inspection instrument, not a second hero. */
.entry-sequence {
  position: relative;
  height: 285svh;
  margin-top: var(--space-4);
  color: #f4f5ef;
  background: #07100d;
}

.entry-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #07100d;
}

.entry-sticky::before,
.entry-sticky::after {
  display: none;
}

.entry-surface {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, transparent 0 49.93%, rgba(230, 239, 233, 0.055) 49.93% 50.07%, transparent 50.07%),
    linear-gradient(180deg, #07100d 0%, #0b1813 100%);
}

.entry-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(90deg, transparent 0 11.95vw, rgba(235, 242, 237, 0.035) 12vw, transparent 12.05vw);
  mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 82%, transparent 100%);
}

.entry-chrome {
  position: absolute;
  z-index: 15;
  top: clamp(104px, 13vh, 128px);
  left: var(--page-padding);
  right: var(--page-padding);
  padding-bottom: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(230, 239, 233, 0.16);
  color: rgba(230, 239, 233, 0.48);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.entry-chrome > :last-child { text-align: right; }

.entry-chrome-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(230, 239, 233, 0.72);
}

.entry-chrome-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-signal);
  box-shadow: 0 0 0 5px rgba(184, 217, 74, 0.08);
}

.entry-ruler {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
}

.entry-ruler-x {
  left: var(--page-padding);
  right: var(--page-padding);
  bottom: 72px;
  height: 8px;
  border-bottom: 1px solid rgba(230, 239, 233, 0.18);
  background: repeating-linear-gradient(90deg, rgba(230, 239, 233, 0.32) 0 1px, transparent 1px 4vw);
}

.entry-ruler-y {
  top: 20%;
  bottom: 72px;
  left: var(--page-padding);
  width: 8px;
  border-left: 1px solid rgba(230, 239, 233, 0.18);
  background: repeating-linear-gradient(180deg, rgba(230, 239, 233, 0.32) 0 1px, transparent 1px 8vh);
}

.entry-route {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 53%;
  width: min(74vw, 920px);
  height: min(74vh, 720px);
  overflow: visible;
  transform: translate(-50%, -50%);
}

.entry-route-ring,
.entry-route-tail,
.entry-route-check {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.entry-route-ring,
.entry-route-tail {
  stroke: rgba(201, 225, 214, 0.74);
  stroke-width: 2;
}

.entry-route-check {
  stroke: var(--color-signal);
  stroke-width: 5;
}

.entry-aperture {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 53%;
  width: min(39vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 217, 74, 0.38);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(184, 217, 74, 0.04), 0 0 100px rgba(64, 122, 99, 0.14);
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.entry-aperture::before,
.entry-aperture::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(230, 239, 233, 0.15);
}

.entry-aperture::before { inset: 12%; }
.entry-aperture::after { inset: -9%; }

.entry-aperture-axis {
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(230, 239, 233, 0.14);
}

.entry-aperture-axis.axis-x { width: 118%; height: 1px; transform: translate(-50%, -50%); }
.entry-aperture-axis.axis-y { width: 1px; height: 118%; transform: translate(-50%, -50%); }

.entry-aperture-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-signal);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.entry-fragment {
  position: absolute;
  z-index: 7;
  width: clamp(170px, 16vw, 238px);
  min-height: 78px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  border-top: 1px solid rgba(230, 239, 233, 0.48);
  border-bottom: 1px solid rgba(230, 239, 233, 0.13);
  background: rgba(8, 20, 16, 0.66);
  color: #f4f5ef;
  backdrop-filter: blur(12px);
  will-change: transform, opacity;
}

.entry-fragment::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 28px;
  height: 2px;
  background: var(--fragment-accent, var(--color-signal));
}

.entry-fragment small {
  grid-column: 1 / -1;
  color: rgba(230, 239, 233, 0.43);
  font-size: 8px;
  font-weight: 600;
}

.entry-fragment strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
}

.entry-fragment span,
.entry-fragment em {
  color: rgba(230, 239, 233, 0.58);
  font-size: 9px;
  font-style: normal;
}

.entry-fragment em {
  grid-row: 2 / 4;
  grid-column: 2;
  align-self: center;
  color: var(--fragment-accent, var(--color-signal));
  font-weight: 600;
}

.fragment-defect { --fragment-accent: #ed8c72; left: 8%; top: 26%; transform: rotate(-3deg); }
.fragment-capa { --fragment-accent: #e7ad67; left: 14%; bottom: 16%; transform: rotate(2deg); }
.fragment-audit { --fragment-accent: #8dc6b5; left: 42%; top: 18%; transform: rotate(-1deg); }
.fragment-supplier { --fragment-accent: #9fb9df; right: 8%; top: 31%; transform: rotate(3deg); }
.fragment-complaint { --fragment-accent: #d4e889; right: 13%; bottom: 14%; transform: rotate(-2deg); }

.entry-scan {
  position: absolute;
  z-index: 10;
  top: 18%;
  bottom: 68px;
  left: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--color-signal) 14%, var(--color-signal) 86%, transparent);
  box-shadow: 0 0 28px rgba(184, 217, 74, 0.7);
  will-change: transform, opacity;
}

.entry-scan::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 11vw;
  background: linear-gradient(90deg, transparent, rgba(184, 217, 74, 0.045));
}

.entry-scan span {
  position: absolute;
  left: 12px;
  bottom: 16px;
  width: max-content;
  color: var(--color-signal);
  font-size: 8px;
  font-weight: 600;
  writing-mode: vertical-rl;
}

.entry-lock {
  position: absolute;
  z-index: 12;
  left: 50%;
  top: 53%;
  width: min(720px, 60vw);
  min-height: 136px;
  padding: 18px;
  display: grid;
  grid-template-columns: 74px minmax(150px, 0.8fr) minmax(260px, 1.5fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(184, 217, 74, 0.42);
  background: rgba(8, 25, 19, 0.94);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48), 0 0 80px rgba(93, 153, 128, 0.18);
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.entry-lock-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(230, 239, 233, 0.13);
}

.entry-lock-mark img { width: 46px; height: 46px; }
.entry-lock-id { display: grid; gap: 5px; }
.entry-lock-id small,
.entry-lock-metrics small { color: rgba(230, 239, 233, 0.43); font-size: 8px; font-weight: 600; }
.entry-lock-id strong { font-family: var(--font-heading); font-size: clamp(22px, 2.2vw, 34px); font-weight: 400; }

.entry-lock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(230, 239, 233, 0.13);
}

.entry-lock-metrics span {
  min-height: 52px;
  padding: 8px 16px;
  display: grid;
  align-content: center;
  gap: 5px;
  color: rgba(244, 245, 239, 0.86);
  font-size: 10px;
}

.entry-lock-metrics span + span { border-left: 1px solid rgba(230, 239, 233, 0.13); }

.entry-lock-status {
  justify-self: end;
  padding: 9px 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  background: var(--color-signal);
  color: #102019;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.entry-lock-status svg { width: 13px; height: 13px; }

.entry-index {
  position: absolute;
  z-index: 15;
  left: var(--page-padding);
  right: var(--page-padding);
  bottom: 36px;
  display: grid;
  grid-template-columns: auto minmax(120px, 420px) auto;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: rgba(230, 239, 233, 0.48);
  font-size: 9px;
  font-weight: 600;
}

.entry-progress {
  width: min(420px, 48vw);
  max-width: none;
  height: 1px;
  background: rgba(230, 239, 233, 0.16);
}

.entry-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-signal);
  transform: scaleX(0);
  transform-origin: left center;
}

.entry-iris {
  position: absolute;
  z-index: 30;
  left: 50%;
  top: 53%;
  width: 12vmin;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-canvas, #f8f7f1);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.01);
  pointer-events: none;
  will-change: transform, opacity;
}

.entry-sequence.is-static {
  height: 72svh;
}

.entry-sequence.is-static .entry-sticky {
  position: relative;
  height: 72svh;
}

.entry-sequence.is-static .entry-fragment,
.entry-sequence.is-static .entry-scan,
.entry-sequence.is-static .entry-aperture {
  display: none;
}

.entry-sequence.is-static .entry-lock { opacity: 1; }

@media (max-width: 980px) {
  .entry-lock { width: min(720px, 82vw); grid-template-columns: 64px 0.8fr 1.4fr; }
  .entry-lock-status { position: absolute; right: 18px; bottom: -15px; }
  .entry-lock-mark { width: 64px; height: 64px; }
  .entry-route { width: 88vw; }
}

@media (max-width: 640px) {
  .entry-sequence { height: 245svh; margin-top: var(--space-3); }
  .entry-sticky { min-height: 600px; }
  .entry-chrome { top: 96px; left: 16px; right: 16px; grid-template-columns: 1fr auto; }
  .entry-chrome > :last-child { display: none; }
  .entry-ruler-x { left: 16px; right: 16px; bottom: 56px; }
  .entry-ruler-y { left: 16px; bottom: 56px; }
  .entry-route { top: 51%; width: 118vw; height: 64vh; }
  .entry-aperture { top: 51%; width: 72vw; }
  .entry-fragment { width: 142px; min-height: 66px; padding: 10px; }
  .entry-fragment strong { font-size: 12px; }
  .fragment-defect { left: 5%; top: 25%; }
  .fragment-capa { left: 6%; bottom: 15%; }
  .fragment-audit { left: 45%; top: 18%; }
  .fragment-supplier { right: 3%; top: 37%; }
  .fragment-complaint { right: 5%; bottom: 12%; }
  .entry-scan { top: 18%; bottom: 54px; }
  .entry-lock {
    top: 51%;
    width: calc(100% - 32px);
    min-height: 190px;
    padding: 16px;
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }
  .entry-lock-mark { width: 50px; height: 50px; }
  .entry-lock-mark img { width: 36px; height: 36px; }
  .entry-lock-metrics { grid-column: 1 / -1; border-top: 1px solid rgba(230, 239, 233, 0.13); border-left: 0; }
  .entry-lock-metrics span { padding: 10px 8px; }
  .entry-lock-status { right: 16px; }
  .entry-index { left: 16px; right: 16px; bottom: 28px; }
  .entry-progress { width: 58vw; }
  .entry-sequence.is-static,
  .entry-sequence.is-static .entry-sticky { height: 68svh; }
}

.news-main {
  padding-top: 126px;
}

.funding-article {
  overflow: hidden;
}

.funding-hero {
  padding-top: var(--space-7);
  padding-bottom: var(--space-8);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: end;
}

.funding-hero-copy {
  min-width: 0;
}

.funding-meta {
  margin: var(--space-6) 0 var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.funding-meta span {
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-tint);
  color: var(--color-primary);
  font-weight: 600;
}

.funding-meta time::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: var(--space-3);
  vertical-align: middle;
  border-radius: 50%;
  background: var(--color-accent);
}

.funding-hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

.funding-hero h1 span {
  color: var(--color-primary);
}

.funding-lede {
  max-width: 720px;
  margin: var(--space-5) 0 0;
  color: var(--color-muted);
  font-size: clamp(18px, 2vw, 22px);
}

.funding-lede a,
.article-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(15, 91, 76, 0.28);
  text-underline-offset: 4px;
}

.funding-milestone {
  padding: var(--space-5);
  border: 1px solid rgba(15, 91, 76, 0.22);
  border-radius: var(--radius-lg);
  background: var(--color-primary-strong);
  color: var(--color-bg);
  box-shadow: var(--shadow-float);
}

.milestone-label {
  display: block;
  color: #c6d0cc;
  font-size: var(--text-sm);
  text-transform: uppercase;
}

.funding-milestone > strong {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--font-heading);
  font-size: clamp(54px, 7vw, 76px);
  line-height: 1;
  font-weight: 500;
  color: var(--color-signal);
}

.milestone-line {
  height: 1px;
  margin: var(--space-5) 0;
  background: rgba(248, 247, 242, 0.16);
}

.funding-milestone dl {
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

.funding-milestone dl div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}

.funding-milestone dt {
  color: #aebdb7;
}

.funding-milestone dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
}

.funding-milestone dd a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.funding-milestone dd svg {
  width: 15px;
  height: 15px;
}

.funding-body {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  justify-content: space-between;
  gap: clamp(56px, 8vw, 112px);
  border-top: 1px solid var(--color-border);
}

.article-content {
  min-width: 0;
}

.article-content section + section,
.article-content blockquote + section {
  margin-top: var(--space-8);
}

.article-content h2,
.article-aside h2 {
  margin: var(--space-3) 0 var(--space-4);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
}

.article-content h2 {
  max-width: 680px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.article-content p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.article-content p + p {
  margin-top: var(--space-4);
}

.article-content blockquote {
  margin: var(--space-8) 0 0;
  padding: var(--space-5) var(--space-6);
  border-left: 3px solid var(--color-signal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--color-surface-tint);
}

.article-content blockquote p {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
}

.article-content blockquote cite {
  display: block;
  margin-top: var(--space-3);
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-style: normal;
}

.company-profile-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.company-profile-links a {
  padding: var(--space-3);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.company-profile-links a:hover,
.company-profile-links a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(15, 91, 76, 0.35);
  box-shadow: var(--shadow-card);
}

.company-profile-links a > svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.company-profile-links span {
  display: grid;
}

.company-profile-links small {
  color: var(--color-muted);
}

.article-aside {
  position: relative;
}

.article-aside-card {
  position: sticky;
  top: 126px;
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.article-aside-card > span {
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
}

.article-aside h2 {
  font-size: var(--text-2xl);
  line-height: 1.3;
}

.article-aside .btn {
  width: 100%;
  justify-content: center;
}

.aside-text-link {
  margin-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
}

.aside-text-link svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 980px) {
  .funding-strip-card {
    grid-template-columns: auto 1fr;
  }

  .funding-strip-link {
    display: none;
  }

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

  .funding-hero {
    padding-top: var(--space-6);
    padding-bottom: var(--space-7);
  }

  .funding-milestone {
    max-width: 560px;
  }

  .article-aside-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .funding-strip {
    padding-top: 100px;
  }

  .funding-strip-card {
    padding: var(--space-3);
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

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

  .funding-strip-copy strong {
    overflow: visible;
    white-space: normal;
    line-height: 1.4;
  }

  .funding-strip-copy small::before {
    display: none;
  }

  .news-main {
    padding-top: 104px;
  }

  .funding-hero {
    padding-top: var(--space-5);
  }

  .funding-meta {
    margin-top: var(--space-5);
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-2);
  }

  .funding-meta time::before {
    display: none;
  }

  .funding-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .funding-milestone {
    padding: var(--space-4);
  }

  .funding-milestone dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .funding-milestone dd {
    text-align: left;
  }

  .funding-body {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
  }

  .article-content section + section,
  .article-content blockquote + section,
  .article-content blockquote {
    margin-top: var(--space-7);
  }

  .article-content blockquote {
    padding: var(--space-4);
  }

  .company-profile-links {
    grid-template-columns: 1fr;
  }
}

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

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