:root {
  --ink: #111423;
  --muted: #5f6475;
  --paper: #f4f5fb;
  --white: #ffffff;
  --line: #d8dbea;
  --navy: #0b1021;
  --navy-2: #121a33;
  --navy-3: #161f3c;
  --purple: #6c35ff;
  --magenta: #f414d8;
  --cyan: #26c6f9;
  --green: #33c16c;
  --amber: #ffbf4d;
  --red: #f35b66;
  --shadow: 0 22px 60px rgba(8, 12, 28, 0.18);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

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

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

.skip-link {
  left: 16px;
  position: fixed;
  top: 16px;
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 32px));
  transition: opacity 160ms ease, transform 160ms ease;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 21, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand img {
  height: 22px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 13px;
  border-radius: 4px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-cta[aria-current="page"] {
  color: var(--navy);
  background: var(--cyan);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: var(--navy);
  background: var(--cyan);
  box-shadow: 0 0 0 1px rgba(38, 198, 249, 0.18), 0 12px 26px rgba(38, 198, 249, 0.16);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

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

.button.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button svg,
.nav-cta svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.hero-home {
  min-height: calc(100vh - 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 10, 21, 0.96) 0%, rgba(7, 10, 21, 0.82) 39%, rgba(7, 10, 21, 0.36) 68%, rgba(7, 10, 21, 0.16) 100%),
    url("/assets/images/industrial-operators-hero.webp") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 76%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  padding: 76px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  align-items: end;
  gap: 54px;
}

.hero-copy {
  max-width: 760px;
  padding-bottom: 38px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wordmark img {
  width: 42px;
  height: 30px;
  object-fit: contain;
}

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

h1 {
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.route-title {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 920px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
  font-weight: 850;
}

.lead {
  margin-top: 24px;
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.42;
}

.light-lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  align-self: center;
  justify-self: end;
  width: min(420px, 100%);
  transform: translateY(24px);
}

.tablet-frame {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 13, 30, 0.72);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 16px;
}

.tablet-frame img {
  width: 100%;
  border-radius: 6px;
  background: #000;
}

.proof-caption {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.proof-caption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.4;
  border-left: 2px solid var(--cyan);
  padding-left: 10px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-strip a,
.signal-strip div {
  min-height: 112px;
  padding: 20px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.signal-strip strong {
  color: var(--white);
  font-size: 15px;
}

.section {
  padding: 104px 0;
}

.section.compact {
  padding: 72px 0;
}

.section.dark {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(145deg, #070a15 0%, var(--navy) 54%, #15102a 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.section.light {
  background: var(--paper);
}

.section.white {
  background: var(--white);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.section-header p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.dark .section-header p,
.dark .muted,
.dark .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-1 {
  display: grid;
  gap: 18px;
}

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

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

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

.panel,
.case-item,
.step,
.form-shell {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.panel {
  padding: 28px;
}

.dark .panel {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.panel p,
.case-item p,
.step p,
.text p,
.body-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.dark .panel p,
.dark .text p,
.dark .step p {
  color: rgba(255, 255, 255, 0.68);
}

.panel h3,
.case-item h3,
.step h3 {
  margin-bottom: 14px;
}

.accent-cyan {
  color: var(--cyan);
}

.accent-green {
  color: var(--green);
}

.accent-magenta {
  color: var(--magenta);
}

.rule-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.rule-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  padding: 20px;
  background: var(--white);
}

.rule-row strong {
  font-size: 14px;
  line-height: 1.3;
}

.rule-row p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.route-hero {
  padding: 100px 0 70px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(145deg, #070a15 0%, var(--navy) 52%, #15102a 100%);
  background-size: 84px 84px, 84px 84px, auto;
}

.route-hero .lead {
  max-width: 800px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.image-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 18px 48px rgba(16, 20, 40, 0.12);
}

.image-panel.dark-frame {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.12);
}

.image-panel img {
  width: 100%;
  border-radius: 6px;
}

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

.module-list li,
.clean-list li {
  list-style: none;
}

.module-list,
.clean-list {
  margin: 0;
  padding: 0;
}

.module-list li {
  border-left: 3px solid var(--cyan);
  padding: 4px 0 4px 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.workflow-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.workflow-table th,
.workflow-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.45;
}

.workflow-table th {
  color: var(--ink);
  background: #eef1fb;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workflow-table tr:last-child td {
  border-bottom: 0;
}

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

.tier {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.tier h2 {
  font-size: 34px;
}

.tier ul,
.boundary-list,
.footer-links,
.case-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tier li,
.boundary-list li,
.case-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.tier li:last-child,
.boundary-list li:last-child,
.case-points li:last-child {
  border-bottom: 0;
}

.check {
  color: var(--green);
  font-weight: 900;
}

.no {
  color: var(--red);
  font-weight: 900;
}

.sequence {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.sequence div {
  min-height: 152px;
  padding: 22px;
  background: var(--white);
}

.sequence span {
  display: block;
  margin-bottom: 18px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.sequence p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.boundary-map {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.boundary-map div {
  padding: 28px;
  background: var(--white);
}

.boundary-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #30415f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.boundary-map .approved {
  border-top: 4px solid var(--green);
}

.boundary-map .blocked {
  border-top: 4px solid var(--red);
}

.boundary-map .visible {
  border-top: 4px solid var(--cyan);
}

.case-library {
  display: grid;
  gap: 16px;
}

.case-item {
  display: grid;
  grid-template-columns: 230px 1fr 1fr 1fr;
  gap: 22px;
  padding: 24px;
}

.case-item h3 {
  margin: 0;
}

.case-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.step {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 24px;
}

.step-number {
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.proof-story {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.proof-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 10px;
}

.proof-nav a {
  color: var(--muted);
  font-size: 14px;
  padding: 10px 12px;
  border-left: 2px solid var(--line);
}

.proof-nav a:hover {
  color: var(--ink);
  border-left-color: var(--purple);
}

.dark .proof-nav a {
  color: rgba(255, 255, 255, 0.66);
  border-left-color: rgba(255, 255, 255, 0.16);
}

.dark .proof-nav a:hover {
  color: var(--white);
  border-left-color: var(--cyan);
}

.story-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.story-section h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
}

.story-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.dark .story-section {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.dark .story-section p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.form-shell {
  padding: 28px;
  box-shadow: 0 18px 48px rgba(16, 20, 40, 0.12);
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108, 53, 255, 0.14);
}

.field-error {
  min-height: 18px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.4;
}

.success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(51, 193, 108, 0.32);
  border-radius: 6px;
  background: rgba(51, 193, 108, 0.1);
  color: #176d3a;
  font-size: 14px;
  line-height: 1.5;
}

.success.visible {
  display: block;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #070a15;
  padding: 70px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.6fr);
  gap: 36px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-grid p,
.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    padding: 18px;
    background: rgba(7, 10, 21, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .menu-open .nav-links {
    display: grid;
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

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

  .hero-layout {
    align-items: start;
    padding-top: 56px;
  }

  .hero-proof {
    justify-self: start;
    transform: none;
  }

  .signal-strip,
  .grid-3,
  .grid-4,
  .comparison,
  .sequence,
  .boundary-map,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-item {
    grid-template-columns: 1fr 1fr;
  }

  .proof-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .nav-shell {
    width: min(100% - 24px, var(--max));
  }

  .hero-home {
    background:
      linear-gradient(180deg, rgba(7, 10, 21, 0.95) 0%, rgba(7, 10, 21, 0.85) 48%, rgba(7, 10, 21, 0.7) 100%),
      url("/assets/images/industrial-operators-hero.webp") center top / cover no-repeat;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .signal-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .module-list,
  .sequence,
  .boundary-map,
  .case-item,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rule-row,
  .step {
    grid-template-columns: 1fr;
  }

  .workflow-table {
    display: block;
    overflow-x: auto;
  }

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

  .button,
  .nav-cta {
    width: 100%;
  }

  .proof-nav {
    grid-template-columns: 1fr;
  }
}

/* Premium rebuild layer */
:root {
  --black: #020613;
  --black-2: #071022;
  --black-3: #0d162b;
  --ink: #0d1222;
  --muted: #687085;
  --paper: #f4f6fb;
  --white: #ffffff;
  --line: #dce1ec;
  --line-dark: rgba(185, 204, 238, 0.18);
  --cyan: #2bc6f6;
  --cyan-2: #6fe8ff;
  --blue: #006fff;
  --green: #33c16c;
  --violet: #6c35ff;
  --magenta: #f414d8;
  --red: #ff4f61;
  --shadow: 0 28px 80px rgba(3, 8, 25, 0.28);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
}

.site-header {
  background: rgba(13, 17, 29, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-shell {
  min-height: 68px;
}

.brand {
  letter-spacing: 0.16em;
}

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

.nav-links a {
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-cta,
.button.primary {
  background: var(--cyan);
  color: #021026;
  box-shadow: 0 10px 30px rgba(43, 198, 246, 0.22);
}

.button,
.nav-cta {
  border-radius: 3px;
  min-height: 42px;
}

.button.secondary,
.button.outline-dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.button.dark {
  background: #020613;
  color: var(--white);
}

h1,
h2 {
  font-weight: 900;
  text-wrap: balance;
}

.hero-home {
  min-height: calc(100vh - 68px);
  background:
    linear-gradient(90deg, rgba(2, 6, 19, 0.99) 0%, rgba(2, 6, 19, 0.96) 45%, rgba(2, 6, 19, 0.84) 72%, rgba(2, 6, 19, 0.72) 100%),
    url("/assets/images/field/operator-rounds.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 198, 246, 0.16), transparent 28%),
    linear-gradient(110deg, transparent 0%, rgba(43, 198, 246, 0.09) 64%, transparent 100%);
  pointer-events: none;
}

.hero-home::after {
  opacity: 0.74;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

.hero-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  gap: 64px;
  align-items: center;
  padding: 72px 0 58px;
}

.hero-copy {
  max-width: 780px;
  padding-bottom: 0;
}

.wordmark {
  margin-bottom: 30px;
}

h1 {
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 0.98;
}

.hero-title {
  max-width: 780px;
  font-size: clamp(54px, 5.4vw, 78px);
  line-height: 1.02;
}

.hero-title span {
  display: block;
}

.lead {
  max-width: 620px;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.46;
}

.hero-proof {
  width: min(560px, 100%);
  transform: none;
}

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

.command-preview {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 17, 38, 0.94), rgba(2, 6, 19, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.preview-header,
.preview-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-header {
  padding: 4px 2px 0;
}

.preview-header span,
.preview-bottom span {
  color: var(--cyan-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-header strong {
  color: var(--white);
  font-size: 18px;
}

.preview-screen {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #000;
}

.preview-screen img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.mini-ops-screen {
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: 16px;
  color: #15161b;
  background:
    linear-gradient(145deg, rgba(121, 64, 255, 0.08), rgba(243, 74, 165, 0.05)),
    #f5f6fa;
}

.mini-ops-top,
.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mini-ops-top span,
.mini-row span,
.mini-ops-grid span {
  color: #7a7f8f;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-ops-top strong {
  font-size: 14px;
}

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

.mini-ops-grid div,
.mini-row {
  border: 1px solid #dde2eb;
  border-radius: 7px;
  background: #ffffff;
}

.mini-ops-grid div {
  display: grid;
  gap: 5px;
  padding: 12px;
}

.mini-ops-grid strong {
  font-size: 24px;
  line-height: 1;
}

.mini-trend {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 82px;
  padding: 12px;
  border: 1px solid #dde2eb;
  border-radius: 7px;
  background:
    linear-gradient(#eef1f6 1px, transparent 1px),
    #ffffff;
  background-size: 100% 26px;
}

.mini-trend span {
  flex: 1;
  min-height: 14px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #2bc6f6, #006fff);
}

.mini-trend .warn {
  background: linear-gradient(180deg, #ff4f61, #d20d22);
}

.mini-row {
  padding: 10px 12px;
}

.mini-row strong {
  color: #15161b;
  font-size: 13px;
}

.mini-row em {
  color: #07743f;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

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

.preview-bottom div {
  min-height: 74px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.055);
}

.preview-bottom strong {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.28;
}

.device-stage {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 17, 38, 0.92), rgba(2, 5, 14, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}

.device-tablet {
  position: absolute;
  right: 30px;
  top: 46px;
  width: 70%;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.device-laptop {
  position: absolute;
  left: 26px;
  bottom: 24px;
  width: 68%;
  border-radius: 10px;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.42));
}

.device-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: 182px;
  padding: 16px;
  border: 1px solid rgba(43, 198, 246, 0.32);
  border-radius: 6px;
  background: rgba(2, 6, 19, 0.82);
  color: var(--white);
}

.device-badge span {
  color: var(--cyan-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.device-badge strong {
  font-size: 20px;
  line-height: 1.05;
}

.device-badge p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.proof-caption {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.proof-caption span {
  min-height: 60px;
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 2px solid var(--cyan);
  border-radius: 4px;
  background: rgba(2, 6, 19, 0.66);
}

.signal-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #111a2e;
}

.signal-strip a,
.signal-strip div {
  min-height: 104px;
  background: #071022;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 112px 0;
}

.section.dark {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(145deg, #020613 0%, #071022 54%, #0e0a24 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.section.light {
  background: #f4f6fb;
}

.section.white {
  background: var(--white);
}

.section-header {
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.52fr);
}

.eyebrow {
  color: var(--cyan);
  letter-spacing: 0.14em;
}

.light .eyebrow,
.white .eyebrow {
  color: #30415f;
}

.panel,
.case-item,
.step,
.form-shell {
  border-radius: 6px;
}

.panel {
  border-color: rgba(13, 18, 34, 0.1);
  box-shadow: none;
}

.dark .panel,
.tier {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.14);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.media-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(13, 18, 34, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.media-card.dark-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: #050a18;
  color: var(--white);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card.contain img {
  object-fit: contain;
  background: #05070d;
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(2, 6, 19, 0.78);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.media-caption strong {
  display: block;
  color: var(--white);
  margin-bottom: 5px;
}

.media-caption p {
  font-size: 13px;
  line-height: 1.45;
}

.logsheet-conversion {
  display: grid;
  grid-template-columns: minmax(340px, 0.76fr) minmax(0, 1.14fr);
  gap: 22px;
  align-items: stretch;
}

.sheet-source,
.live-sheet {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.sheet-source {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 16px;
}

.source-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.source-label span {
  color: var(--violet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-label strong {
  color: var(--ink);
  font-size: 14px;
}

.source-image {
  display: grid;
  place-items: center;
  border: 1px solid #e6eaf2;
  border-radius: 6px;
  background: #f7f9fd;
  overflow: hidden;
}

.source-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.source-document {
  align-items: start;
  padding: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.source-document img {
  display: block;
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.sheet-source p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.paper-logsheet {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #e3e8f1;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.paper-title {
  display: grid;
  gap: 4px;
  text-align: center;
}

.paper-title span {
  color: #6d7486;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paper-title strong {
  color: var(--ink);
  font-size: 16px;
}

.paper-meta-row,
.paper-signoff {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.paper-meta-row span,
.paper-signoff span {
  min-height: 34px;
  padding: 9px 10px;
  border: 1px solid #dbe1ec;
  border-radius: 4px;
  background: #f6f8fc;
  color: #687085;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-signoff {
  grid-template-columns: 1fr 0.7fr;
}

.paper-section {
  display: grid;
  gap: 8px;
}

.paper-section h4 {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.paper-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 10px;
}

.paper-table th,
.paper-table td {
  height: 28px;
  padding: 6px;
  border: 1px solid #d9dfeb;
  text-align: center;
  color: #3c4558;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.paper-table th {
  background: #20283a;
  color: rgba(255, 255, 255, 0.84);
  font-size: 9px;
  font-weight: 850;
}

.paper-table td:first-child {
  color: #687085;
  background: #f4f6fb;
  font-weight: 850;
}

.blocked-cell {
  background: #080b13;
}

.manual-cell {
  background: #fff4db;
}

.live-sheet {
  padding: 22px;
  box-shadow: 0 22px 62px rgba(16, 20, 40, 0.12);
  overflow-x: auto;
}

.sheet-topline,
.sheet-meta,
.sheet-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sheet-topline {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.sheet-topline span,
.sheet-section-title span {
  color: var(--violet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sheet-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(51, 193, 108, 0.24);
  border-radius: 999px;
  background: rgba(51, 193, 108, 0.1);
  color: #146b39;
  font-size: 12px;
  font-weight: 850;
}

.sheet-meta {
  margin: 16px 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.sheet-meta div {
  min-width: 142px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f9fd;
}

.sheet-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sheet-meta strong {
  font-size: 13px;
}

.sheet-section-title {
  margin: 20px 0 10px;
}

.modern-logsheet {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  font-size: 12px;
}

.modern-logsheet th,
.modern-logsheet td {
  padding: 9px 7px;
  border-bottom: 1px solid #e6eaf2;
  text-align: left;
  vertical-align: middle;
}

.modern-logsheet th {
  color: #536079;
  background: #f5f7fb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.modern-logsheet tr:last-child td {
  border-bottom: 0;
}

.modern-logsheet strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.modern-logsheet small {
  color: var(--muted);
}

.value-ok,
.value-empty,
.value-alert {
  display: inline-flex;
  justify-content: center;
  min-width: 54px;
  padding: 5px 8px;
  border-radius: 999px;
  font-weight: 850;
}

.value-ok {
  background: rgba(51, 193, 108, 0.1);
  color: #146b39;
}

.value-empty {
  background: #eef1f7;
  color: #6a7284;
}

.value-alert {
  background: rgba(255, 79, 97, 0.1);
  color: #a72636;
}

.product-spread {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.product-stage {
  border: 1px solid rgba(13, 18, 34, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(121, 64, 255, 0.12), rgba(236, 67, 164, 0.08)),
    #f7f8fb;
  padding: 16px;
  box-shadow: var(--shadow);
}

.connect-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 18px;
  border-color: rgba(43, 198, 246, 0.18);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #030816 0%, #071426 62%, #031822 100%);
  background-size: 52px 52px, 52px 52px, auto;
  overflow: hidden;
}

.connect-stage img {
  position: relative;
  z-index: 1;
  width: min(116%, 760px);
  max-width: none;
  transform: translateY(10px) scale(1.04);
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.42));
}

.stage-chip {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(43, 198, 246, 0.28);
  border-radius: 999px;
  color: #bff3ff;
  background: rgba(2, 6, 19, 0.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.ops-visual {
  position: relative;
  display: grid;
  color: #14151a;
}

.ops-dashboard {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #dde1ea;
  border-radius: 8px;
  background: #f4f6f9;
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.22);
}

.ops-topbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e2e5ec;
  background: #ffffff;
}

.ops-topbar span,
.ops-nav span,
.ops-metrics span,
.ops-chart span,
.ops-records span,
.ops-queue span,
.tablet-top span,
.tablet-card span,
.tablet-entry span {
  color: #7a7f8f;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-topbar strong {
  color: #15161b;
  font-size: 15px;
}

.ops-topbar em {
  justify-self: end;
  padding: 5px 10px;
  border: 1px solid rgba(31, 160, 91, 0.24);
  border-radius: 999px;
  color: #07743f;
  background: #e9fbf1;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.ops-layout {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 216px;
  min-height: 354px;
}

.ops-nav {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px 12px;
  border-right: 1px solid #e2e5ec;
  background: #ffffff;
}

.ops-nav strong {
  margin: 0 0 14px;
  color: #0b1021;
  font-size: 15px;
  letter-spacing: 0.16em;
}

.ops-nav span {
  display: block;
  padding: 9px 10px;
  border-radius: 999px;
  color: #24252b;
  letter-spacing: 0.02em;
  text-transform: none;
}

.ops-nav .active {
  color: #021026;
  background: #2bc6f6;
}

.ops-main {
  display: grid;
  gap: 13px;
  padding: 18px;
}

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

.ops-metrics div,
.ops-chart,
.ops-records div,
.ops-queue,
.ops-tablet {
  border: 1px solid #dfe3eb;
  border-radius: 8px;
  background: #ffffff;
}

.ops-metrics div {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
}

.ops-metrics strong {
  color: #16171c;
  font-size: 22px;
  line-height: 1;
}

.ops-chart {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.ops-chart div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.ops-chart strong {
  color: #16171c;
  font-size: 13px;
}

.ops-chart svg {
  width: 100%;
  height: 118px;
  overflow: visible;
}

.ops-chart path {
  fill: none;
  stroke: #e8ebf1;
  stroke-width: 1;
}

.ops-chart polyline {
  fill: none;
  stroke: #006fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-chart .secondary {
  stroke: #2bc6f6;
  stroke-width: 3;
  opacity: 0.76;
}

.ops-records {
  display: grid;
  gap: 7px;
}

.ops-records div {
  display: grid;
  grid-template-columns: 78px minmax(88px, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
}

.ops-records strong {
  color: #15161b;
  font-size: 13px;
  line-height: 1.15;
  white-space: nowrap;
}

.ops-records em {
  padding: 4px 8px;
  border-radius: 999px;
  color: #06743d;
  background: #e9fbf1;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.ops-records .alert {
  color: #b4071b;
  background: #ffe8ec;
}

.ops-queue {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 18px 18px 18px 0;
  padding: 14px 12px 14px;
}

.ops-queue strong {
  color: #15161b;
  font-size: 17px;
  line-height: 1.15;
}

.ops-queue p {
  color: #5f6675;
  font-size: 12px;
  line-height: 1.45;
}

.ops-tablet {
  position: absolute;
  z-index: 2;
  top: 152px;
  right: 12px;
  bottom: auto;
  width: 184px;
  margin: 0;
  padding: 12px;
  border-color: #c8d0df;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.22);
}

.ops-tablet::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  border-radius: 8px 8px 0 0;
  background: var(--cyan);
}

.ops-tablet::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 28px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #cfd6e5;
  border-left: 1px solid #cfd6e5;
  background: #ffffff;
  transform: rotate(45deg);
}

.tablet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.ops-tablet .tablet-top span {
  color: #4d5a70;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tablet-top em {
  color: #6d7688;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.tablet-title {
  display: block;
  color: #111423;
  font-size: 15px;
  line-height: 1.15;
}

.tablet-reading {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #e2e7f0;
  border-radius: 6px;
  background: #f8fafc;
}

.tablet-reading span {
  color: #7b8497;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.tablet-reading strong {
  color: #111423;
  font-size: 13px;
  line-height: 1.15;
}

.tablet-reading em {
  color: #5f687a;
  font-size: 10px;
  font-style: normal;
  line-height: 1.25;
}

.ops-tablet .tablet-entry span {
  color: #9a293b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.tablet-entry {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  padding: 9px 10px;
  border: 1px solid #ffd6dd;
  border-radius: 6px;
  background: #fff2f5;
}

.tablet-entry strong {
  color: #d20d22;
  max-width: none;
  font-size: 11px;
  line-height: 1.15;
  text-align: left;
  white-space: normal;
}

.tablet-action {
  display: block;
  margin-top: 8px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #ffffff;
  background: #151720;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.ops-queue .tablet-action {
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.ops-queue span.tablet-action {
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.light .boundary-list li,
.white .boundary-list li {
  color: var(--muted);
  border-bottom-color: var(--line);
}

.product-stage img {
  border-radius: 5px;
}

.surface-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.surface-shot {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 58px rgba(16, 20, 40, 0.08);
}

.surface-shot h3 {
  margin-bottom: 7px;
}

.surface-shot p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.surface-screen {
  min-height: 310px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid #dde2eb;
  border-radius: 7px;
  color: #15161b;
  background:
    linear-gradient(145deg, rgba(121, 64, 255, 0.08), rgba(243, 74, 165, 0.05)),
    #f5f6fa;
  background-size: 42px 42px, 42px 42px, auto;
}

.surface-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.surface-bar span,
.field-card span,
.entry-pad span,
.review-kpis span,
.review-row span,
.queue-step span,
.queue-step em {
  color: #7a7f8f;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.surface-bar strong {
  font-size: 14px;
}

.tablet-surface {
  display: grid;
  align-content: start;
  max-width: 260px;
  margin: 0 auto;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 7px #111217, 0 18px 48px rgba(17, 24, 39, 0.14);
}

.field-card,
.entry-pad,
.surface-action,
.review-kpis div,
.review-row,
.queue-step,
.queue-note {
  border: 1px solid #dde2eb;
  border-radius: 5px;
  background: #ffffff;
}

.field-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid #e0e4ed;
  background: #f8f9fc;
}

.field-card strong {
  color: #15161b;
  font-size: 22px;
  line-height: 1.1;
}

.field-card p {
  color: #677083;
  font-size: 12px;
}

.entry-pad {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 15px;
  border: 1px solid #ffd7dd;
  background: #fff0f3;
}

.entry-pad strong {
  color: #d20d22;
  font-size: 28px;
  line-height: 1;
}

.surface-action {
  margin-top: 12px;
  padding: 12px;
  color: #ffffff;
  background: #17181d;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.review-surface {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
}

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

.review-kpis div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid #e0e4ed;
  background: #ffffff;
}

.review-kpis strong {
  color: #15161b;
  font-size: 22px;
}

.review-chart {
  display: flex;
  align-items: end;
  gap: 9px;
  min-height: 110px;
  padding: 13px;
  border: 1px solid #e0e4ed;
  border-radius: 5px;
  background:
    linear-gradient(#eef1f6 1px, transparent 1px),
    #ffffff;
  background-size: 100% 28px;
}

.review-chart span {
  flex: 1;
  min-height: 18px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #2bc6f6, #006fff);
}

.review-chart .alert {
  background: linear-gradient(180deg, #ff4f61, #d20d22);
}

.review-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid #e0e4ed;
  background: #ffffff;
}

.review-row strong {
  color: #15161b;
  font-size: 14px;
}

.review-row em {
  color: #d20d22;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.queue-surface {
  display: grid;
  align-content: start;
  gap: 10px;
}

.queue-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  padding: 12px;
  border: 1px solid #e0e4ed;
  background: #ffffff;
}

.queue-step span {
  color: var(--cyan);
  grid-row: span 2;
}

.queue-step strong {
  color: #15161b;
  font-size: 13px;
}

.queue-step em {
  font-style: normal;
}

.queue-step.active {
  border-color: rgba(121, 64, 255, 0.22);
  background: #f5f0ff;
}

.queue-note {
  padding: 13px;
  color: #5f6675;
  font-size: 13px;
  line-height: 1.45;
}

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

.module-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.module-card span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(43, 198, 246, 0.34);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.module-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.connect-diagram {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 160px minmax(220px, 0.75fr);
  gap: 22px;
  align-items: center;
}

.diagram-column,
.diagram-outcomes,
.diagram-core {
  display: grid;
  gap: 12px;
}

.diagram-node,
.diagram-core,
.diagram-outcome {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 18px;
}

.diagram-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.diagram-node::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.diagram-core {
  min-height: 210px;
  place-items: center;
  text-align: center;
  border-color: rgba(236, 67, 164, 0.36);
  background:
    radial-gradient(circle at 50% 0%, rgba(236, 67, 164, 0.16), transparent 50%),
    linear-gradient(145deg, #fff0f8 0%, #ffffff 62%);
  box-shadow: inset 0 0 0 1px rgba(236, 67, 164, 0.14), 0 18px 46px rgba(80, 24, 54, 0.1);
}

.diagram-core span {
  padding: 6px 9px;
  border: 1px solid rgba(236, 67, 164, 0.28);
  border-radius: 999px;
  color: #8b1d56;
  background: rgba(236, 67, 164, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diagram-core strong {
  color: #071022;
  font-size: 24px;
}

.diagram-core p {
  color: #30415f;
}

.diagram-outcome {
  border-color: rgba(43, 198, 246, 0.28);
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: center;
  padding: 40px;
  border: 1px solid rgba(43, 198, 246, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(2, 6, 19, 0.98), rgba(7, 16, 34, 0.96) 56%, rgba(3, 24, 34, 0.95));
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--white);
}

.closing-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.58;
}

.closing-cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.walkthrough {
  display: grid;
  grid-template-columns: minmax(560px, 0.95fr) minmax(420px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.walkthrough .video-shell {
  height: clamp(500px, 40vw, 620px);
  aspect-ratio: auto;
}

.video-shell {
  position: relative;
  border: 1px solid rgba(43, 198, 246, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #020613;
  background-size: 48px 48px, 48px 48px, auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.video-player {
  display: block;
}

.video-player:not(.is-playing) .inline-video {
  opacity: 0;
}

.video-player.is-playing .video-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inline-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  background: #020613;
  object-fit: cover;
}

.video-embed {
  min-height: 0;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  background: #000;
}

.video-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: var(--white);
  background: #020613;
  cursor: pointer;
  min-height: 0;
  overflow: hidden;
  text-decoration: none;
  text-align: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.video-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(43, 198, 246, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(2, 6, 19, 0), rgba(2, 6, 19, 0.38)),
    linear-gradient(90deg, rgba(2, 6, 19, 0.34), transparent 54%, rgba(2, 6, 19, 0.18));
  pointer-events: none;
}

.video-cover:hover img,
.video-cover:focus-visible img {
  opacity: 0.9;
}

.video-cover:hover .play-button,
.video-cover:focus-visible .play-button {
  background: rgba(43, 198, 246, 0.9);
  box-shadow: 0 0 0 10px rgba(43, 198, 246, 0.14);
}

.video-cover:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -4px;
}

.video-cover .play-button {
  z-index: 2;
}

.video-overlay {
  position: absolute;
  left: 18px;
  right: auto;
  bottom: 18px;
  z-index: 2;
  display: inline-grid;
  gap: 3px;
  max-width: min(330px, calc(100% - 36px));
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(2, 6, 19, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.video-overlay span {
  color: var(--cyan-2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.video-overlay strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  line-height: 1.1;
}

.video-overlay p {
  display: none;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(2, 6, 19, 0.62);
  color: var(--white);
  display: grid;
  place-items: center;
}

.play-button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
}

.timeline-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line-dark);
}

.timeline-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.timeline-row strong {
  color: var(--cyan-2);
  font-size: 12px;
}

.timeline-row p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.48;
}

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

.proof-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.proof-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #05070d;
}

.proof-tile div {
  padding: 18px;
}

.proof-tile p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.case-tabs span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f8fafc;
  color: #30415f;
  font-size: 12px;
  font-weight: 850;
}

.case-tabs span.active {
  border-color: #071022;
  background: #071022;
  color: var(--white);
}

.case-legend span {
  cursor: default;
}

.case-item {
  align-items: center;
}

.case-kicker {
  color: #006fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.row-arrow {
  justify-self: end;
  color: var(--cyan);
  font-weight: 900;
}

.implementation-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.68fr);
  gap: 28px;
  align-items: stretch;
}

.pilot-principles {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
}

.pilot-principles ul,
.success-signals ul,
.contact-trust {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pilot-principles li,
.success-signals li,
.contact-trust li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.success-signals {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #071022;
  color: var(--white);
  padding: 28px;
}

.success-signals li {
  color: rgba(255, 255, 255, 0.72);
}

.proof-lede {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 0.62fr);
  gap: 38px;
  align-items: center;
}

.proof-video {
  border: 1px solid rgba(43, 198, 246, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #020613;
  background-size: 48px 48px, 48px 48px, auto;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.proof-video.video-embed {
  min-height: 0;
}

.proof-video img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #020613;
}

.proof-video .video-cover img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.proof-video .video-overlay {
  max-width: 320px;
}

.proof-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.contact-shell {
  min-height: calc(100vh - 68px);
  background:
    linear-gradient(90deg, rgba(2, 6, 19, 0.96), rgba(2, 6, 19, 0.82)),
    url("/assets/images/field/operator-rounds.jpg") center / cover no-repeat;
}

.contact-shell .route-hero {
  background: transparent;
  padding-bottom: 40px;
}

.contact-shell .section.white {
  background: transparent;
}

.contact-shell .contact-layout {
  color: var(--white);
}

.contact-shell .light-lead,
.contact-shell .text p {
  color: rgba(255, 255, 255, 0.72);
}

.form-shell {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.step-progress span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #d9deea;
}

.step-progress span.active {
  background: var(--cyan);
}

.success-panel {
  display: none;
  padding: 24px;
  border: 1px solid rgba(51, 193, 108, 0.34);
  border-radius: 6px;
  background: rgba(51, 193, 108, 0.1);
  color: #075b2e;
}

.success-panel.visible {
  display: block;
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.form-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.contact-trust {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  max-width: 430px;
}

.contact-trust li {
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .hero-layout,
  .product-spread,
  .media-grid,
  .logsheet-conversion,
  .connect-diagram,
  .walkthrough,
  .implementation-board,
  .proof-lede {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: 330px;
  }

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

  .section-header {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .module-board,
  .proof-gallery,
  .surface-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-layout {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .ops-queue {
    grid-column: 1 / -1;
    margin: 0 14px 14px;
    min-height: 278px;
    padding-right: 196px;
  }

  .ops-tablet {
    top: 18px;
    right: 12px;
    bottom: auto;
    width: 174px;
  }
}

@media (max-width: 1100px) {
  .walkthrough {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .walkthrough .video-shell {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .walkthrough .inline-video {
    position: static;
  }
}

@media (max-width: 680px) {
  .hero-home {
    background:
      linear-gradient(180deg, rgba(2, 6, 19, 0.96) 0%, rgba(2, 6, 19, 0.9) 58%, rgba(2, 6, 19, 0.74) 100%),
      url("/assets/images/field/operator-rounds.jpg") center / cover no-repeat;
  }

  .hero-layout {
    padding-top: 48px;
  }

  .device-stage {
    min-height: 290px;
  }

  .device-tablet {
    right: 14px;
    top: 70px;
    width: 78%;
  }

  .device-laptop {
    left: 14px;
    width: 76%;
  }

  .device-badge {
    left: 12px;
    top: 12px;
    width: calc(100% - 24px);
  }

  .proof-caption,
  .module-board,
  .proof-gallery,
  .surface-gallery,
  .preview-bottom {
    grid-template-columns: 1fr;
  }

  .surface-screen {
    min-height: 260px;
  }

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

  .mini-ops-screen {
    min-height: 230px;
    padding: 12px;
  }

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

  .mini-ops-grid div {
    padding: 9px;
  }

  .mini-ops-grid strong {
    font-size: 18px;
  }

  .ops-layout {
    grid-template-columns: 1fr;
  }

  .ops-topbar {
    grid-template-columns: 1fr;
  }

  .ops-topbar em {
    justify-self: start;
  }

  .ops-nav {
    display: none;
  }

  .ops-main {
    padding: 12px;
  }

  .ops-metrics {
    grid-template-columns: 1fr;
  }

  .ops-records div {
    grid-template-columns: 1fr;
  }

  .ops-queue {
    min-height: 370px;
    padding-right: 12px;
    padding-bottom: 238px;
  }

  .ops-tablet {
    top: auto;
    right: 14px;
    bottom: 16px;
    width: 174px;
  }

  .ops-chart svg {
    height: 96px;
  }

  .product-stage {
    padding: 12px;
  }

  .route-title,
  h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .modern-logsheet {
    min-width: 0;
  }

  .live-sheet {
    overflow-x: visible;
    padding: 16px;
  }

  .sheet-topline,
  .sheet-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .sheet-meta div {
    width: 100%;
  }

  .modern-logsheet thead {
    display: none;
  }

  .modern-logsheet,
  .modern-logsheet tbody,
  .modern-logsheet tr,
  .modern-logsheet td {
    display: block;
  }

  .modern-logsheet tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid #e6eaf2;
  }

  .modern-logsheet tr:last-child {
    border-bottom: 0;
  }

  .modern-logsheet td {
    padding: 0;
    border-bottom: 0;
    min-width: 0;
  }

  .modern-logsheet td:nth-child(1),
  .modern-logsheet td:nth-child(2) {
    grid-column: 1 / -1;
  }

  .modern-logsheet td::before {
    display: block;
    margin-bottom: 4px;
    color: #6a7284;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .modern-logsheet td:nth-child(1)::before {
    content: "Tag";
  }

  .modern-logsheet td:nth-child(2)::before {
    content: "Measurement";
  }

  .modern-logsheet td:nth-child(3)::before {
    content: "Target";
  }

  .modern-logsheet td:nth-child(4)::before {
    content: "Range";
  }

  .modern-logsheet td:nth-child(5)::before {
    content: "10:00";
  }

  .modern-logsheet td:nth-child(6)::before {
    content: "14:00";
  }

  .modern-logsheet td:nth-child(7)::before {
    content: "22:00";
  }

  .modern-logsheet td:nth-child(8)::before {
    content: "02:00";
  }

  .value-ok,
  .value-empty,
  .value-alert {
    justify-content: flex-start;
    min-width: 0;
  }

  .connect-diagram {
    gap: 12px;
  }

  .comparison,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .diagram-node::after {
    display: none;
  }

  .source-image {
    min-height: 260px;
  }

  .video-embed,
  .proof-video.video-embed {
    min-height: 0;
  }
}

/* --- Buyer-enablement components (stats, pricing, certifications, specs) --- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dark .stat {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.stat .num {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat .label {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.dark .stat .label {
  color: rgba(255, 255, 255, 0.68);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-card.featured {
  border-color: rgba(43, 198, 246, 0.5);
  box-shadow: 0 18px 48px rgba(16, 20, 40, 0.12);
}

.price-tag {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

.price-amount {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.05;
}

.price-amount small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.price-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.price-card .button {
  margin-top: auto;
}

.price-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.cert-badge {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.cert-badge strong {
  display: block;
  font-size: 15px;
}

.cert-badge span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.flow-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.flow-node {
  padding: 24px;
  background: var(--white);
  font-size: 14px;
  line-height: 1.45;
}

.flow-node strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.flow-node span {
  color: var(--muted);
  font-size: 13px;
}

.flow-node.read-only {
  border-top: 4px solid var(--cyan);
}

.flow-node.blocked {
  border-top: 4px solid var(--red);
}

@media (max-width: 900px) {
  .stat-row,
  .cert-grid,
  .flow-map {
    grid-template-columns: repeat(2, 1fr);
  }

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