:root {
  color-scheme: dark;
  scroll-behavior: smooth;
  --hero-frame-width: min(calc(100vw - 20px), 1600px);
  --hero-header-height: clamp(56px, calc(var(--hero-frame-width) * 64 / 918), 92px);
  --page-pad: clamp(20px, 5vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg-canvas);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(ellipse 80% 48% at 50% 0%, rgba(255, 106, 26, 0.07), transparent 58%),
    var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 58%);
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 500;
  transform: translateY(-150%);
  background: var(--accent);
  color: var(--accent-fg);
  padding: 10px 14px;
  border-radius: var(--r-xs);
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  width: var(--hero-frame-width);
  height: var(--hero-header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  padding: 0 clamp(14px, 2.4vw, 30px);
  overflow: visible;
  background: rgba(7, 8, 10, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
  visibility: visible;
  backdrop-filter: blur(14px);
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), backdrop-filter var(--dur-base) var(--ease-out);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 8, 10, 0.86);
  border-color: rgba(58, 110, 168, 0.22);
  backdrop-filter: blur(18px);
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-lockup {
  width: auto;
  height: auto;
  gap: 8px;
}

.brand-mark {
  height: 46px;
  width: auto;
  /* itt-mark.png is the metallic IT mark with a real transparent background
     (trimmed tight) — no box, no blend-mode needed, centers cleanly */
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-wordmark__top {
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
}

.brand-wordmark__bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.brand-wordmark__bottom span {
  width: 10px;
  height: 1px;
  background: var(--accent);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.8vw, 42px);
}

.site-nav a,
.text-link {
  color: var(--fg);
  font-size: clamp(10px, 0.84vw, 14px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease-out);
}

.site-nav a {
  padding: 10px 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--fg);
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.16), rgba(14, 10, 8, 0.38));
  border-color: rgba(255, 106, 26, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 106, 26, 0.18),
    0 0 28px rgba(255, 106, 26, 0.3);
  outline: 0;
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"],
.text-link:hover,
.footer-links a:hover,
.footer-links button:hover {
  color: var(--accent);
}

.site-nav a[aria-current="page"] {
  text-shadow: 0 0 18px rgba(255, 106, 26, 0.28);
}

.button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  padding: 14px 24px;
  border-radius: var(--r-xs);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

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

.button:active {
  transform: scale(0.98);
}

.button--primary {
  background: var(--grad-orange);
  color: var(--accent-fg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button--primary:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), var(--glow-md);
}

.button--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--accent);
}

.button--outline:hover {
  background: rgba(255, 106, 26, 0.08);
}

.header-cta {
  align-self: center;
  flex: 0 0 auto;
  min-width: clamp(114px, 12vw, 200px);
  min-height: clamp(36px, 3.5vw, 52px);
  max-height: calc(var(--hero-header-height) - 18px);
  padding-inline: clamp(16px, 2.4vw, 38px);
  font-size: clamp(10px, 0.9vw, 14px);
  white-space: nowrap;
  background: rgba(255, 106, 26, 0.03);
  border-color: rgba(255, 106, 26, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.16);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--fg);
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.16), rgba(14, 10, 8, 0.38));
  border-color: rgba(255, 106, 26, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 106, 26, 0.18),
    0 0 28px rgba(255, 106, 26, 0.3);
  outline: 0;
  transform: translateY(-1px);
}

.arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-left: auto;
  background: transparent;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 22px;
  height: 1px;
  background: var(--fg);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

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

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  width: var(--hero-frame-width);
  aspect-ratio: 918 / 342;
  min-height: clamp(520px, 42vw, 680px);
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(ellipse 68% 70% at 63% 40%, rgba(174, 205, 236, 0.24), rgba(58, 110, 168, 0.13) 42%, rgba(7, 8, 10, 0.08) 78%),
    linear-gradient(90deg, rgba(7, 8, 10, 0.99) 0%, rgba(7, 8, 10, 0.96) 32%, rgba(7, 8, 10, 0.44) 48%, rgba(7, 8, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.42) 0%, rgba(7, 8, 10, 0.06) 40%, rgba(7, 8, 10, 0.72) 100%),
    var(--bg-canvas);
  border: 1px solid rgba(112, 158, 205, 0.18);
  border-top: 0;
  border-radius: 0 28px 0 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset -1px 0 0 rgba(58, 110, 168, 0.28),
    inset -120px 0 110px -140px rgba(147, 184, 218, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.34);
}

.hero::after {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(68%, 1040px);
  content: "";
  background: url("assets/hero-panel-art-2x-safe.png") right bottom / auto 88% no-repeat;
  filter: brightness(1.14) contrast(1.04) saturate(1.05);
  opacity: 0.95;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 16%, #000 30%, #000 100%);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--hero-header-height) + clamp(44px, 6vw, 82px)) var(--page-pad) clamp(42px, 5vw, 64px);
  background:
    radial-gradient(ellipse 62% 48% at 50% 0%, rgba(255, 106, 26, 0.09), transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 16px 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.page-hero h1 span {
  color: var(--accent);
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto;
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.65;
}

.hero__glow {
  display: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  content: "";
  background:
    radial-gradient(ellipse 44% 70% at 55% 42%, rgba(58, 110, 168, 0.22), rgba(16, 38, 62, 0.1) 48%, transparent 76%),
    linear-gradient(90deg, transparent 0%, rgba(58, 110, 168, 0.08) 42%, rgba(147, 184, 218, 0.08) 56%, transparent 72%),
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(147, 184, 218, 0.045) 79px 80px, transparent 81px 158px);
  opacity: 0.9;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 28%, #000 52%, transparent 88%);
}

.hero-hotspots {
  display: none;
}

.hero-hotspot {
  position: absolute;
  display: block;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  color: transparent;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  box-shadow: none;
  appearance: none;
  cursor: pointer;
  text-indent: -9999px;
  transition:
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}

.hero-hotspot:hover,
.hero-hotspot:focus-visible {
  background:
    linear-gradient(180deg, rgba(58, 110, 168, 0.16), rgba(10, 16, 28, 0.38));
  border-color: rgba(58, 110, 168, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(58, 110, 168, 0.18),
    0 0 28px rgba(58, 110, 168, 0.3);
  outline: 0;
  transform: translateY(-1px);
}

.hero-hotspot::after {
  position: absolute;
  right: 14%;
  bottom: -1px;
  left: 14%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, #3a6ea8, transparent);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.hero-hotspot:hover::after,
.hero-hotspot:focus-visible::after {
  opacity: 1;
}

.hero-hotspot--home:hover,
.hero-hotspot--home:focus-visible,
.hero-hotspot--start:hover,
.hero-hotspot--start:focus-visible,
.hero-hotspot--contact:hover,
.hero-hotspot--contact:focus-visible {
  border-color: rgba(58, 110, 168, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(58, 110, 168, 0.2),
    0 0 34px rgba(58, 110, 168, 0.34),
    0 14px 34px rgba(3, 10, 22, 0.38);
}

.hero-hotspot--home {
  left: 1.2%;
  top: 4.6%;
  width: 22.8%;
  height: 13.8%;
}

.hero-hotspot--solutions {
  left: 33.2%;
  top: 6.6%;
  width: 9.5%;
  height: 9%;
}

.hero-hotspot--demos {
  left: 45.9%;
  top: 6.6%;
  width: 10.6%;
  height: 9%;
}

.hero-hotspot--process {
  left: 59.1%;
  top: 6.6%;
  width: 9.5%;
  height: 9%;
}

.hero-hotspot--about {
  left: 70.4%;
  top: 6.6%;
  width: 8.3%;
  height: 9%;
}

.hero-hotspot--contact {
  left: 80.3%;
  top: 5.5%;
  width: 13.4%;
  height: 10.7%;
}

.hero-hotspot--start {
  left: 1.3%;
  top: 78.8%;
  width: 19.7%;
  height: 9.4%;
}

.hero__grid {
  position: absolute;
  inset: var(--hero-header-height) 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 378px) 1fr;
  align-items: start;
  gap: 0;
  max-width: none;
  margin: 0;
  padding: 30px 14px 40px;
  opacity: 1;
  pointer-events: auto;
}

.hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.2vw, 17px);
  max-width: 520px;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.hero__copy .eyebrow {
  display: none;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__title {
  display: grid;
  gap: 1px;
  width: 480px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.45vw, 35px);
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.52), 0 0 18px rgba(0, 0, 0, 0.45);
  transform: scaleX(0.78);
  transform-origin: left top;
}

.hero__title span {
  background: none;
  color: #d7d9df;
  -webkit-text-fill-color: #d7d9df;
}

.hero__title strong,
.section-head h2 span,
.closing h2 span {
  background: var(--grad-orange);
  background-clip: text;
  color: transparent;
}

.hero__title strong {
  background: none;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.hero__body {
  max-width: 340px;
  margin: 0;
  color: var(--fg-2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.hero__actions .button {
  min-width: 178px;
  min-height: 40px;
  padding: 10px 19px;
  color: var(--fg);
  background: rgba(7, 8, 10, 0.48);
  border: 1px solid rgba(255, 106, 26, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 106, 26, 0.12),
    0 0 20px rgba(255, 106, 26, 0.08);
  font-size: 10px;
}

.hero__actions .button:hover,
.hero__actions .button:focus-visible {
  color: var(--fg);
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.16), rgba(14, 10, 8, 0.42));
  border-color: rgba(255, 106, 26, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 106, 26, 0.18),
    0 0 28px rgba(255, 106, 26, 0.3);
}

.hero__actions .text-link {
  display: none;
}

.hero__visual {
  display: none;
}

.hero__image-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.48));
}

.hero__image-shell::after {
  display: none;
}

.hero__image-shell img {
  width: 100%;
  max-height: min(720px, calc(100svh - 190px));
  object-fit: contain;
}

.hero__slash,
.closing__slash {
  position: absolute;
  left: -11%;
  right: -11%;
  top: 53%;
  height: 4px;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, transparent 0%, transparent 27%, #ffd8a8 49%, #ff6a1a 50%, #ffd8a8 51%, transparent 73%, transparent 100%);
  box-shadow: 0 0 22px rgba(255, 106, 26, 0.55);
  opacity: 0.72;
}

.industry-strip,
.process {
  background: var(--bg-canvas);
  border-block: 1px solid var(--border);
}

.industry-strip {
  padding: clamp(44px, 6vw, 72px) var(--page-pad) clamp(54px, 7vw, 86px);
}

.strip-title {
  margin: 0 0 38px;
  color: var(--fg-2);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  max-width: 1180px;
  margin: 0 auto;
}

.industry {
  position: relative;
  display: grid;
  min-height: 204px;
  padding: 28px 24px 26px;
  justify-items: center;
  align-content: center;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.08), transparent 56%),
    #111927;
  border: 1px solid rgba(255, 106, 26, 0.22);
  border-bottom-color: rgba(255, 106, 26, 0.76);
  border-radius: var(--r-sm);
  color: var(--fg-3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 44px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(255, 106, 26, 0.06);
  text-align: center;
  text-decoration: none;
  transition:
    color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

.industry::after {
  position: absolute;
  inset: auto 22px -1px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
  transition:
    background var(--dur-fast) var(--ease-out),
    opacity var(--dur-fast) var(--ease-out);
}

.industry:hover {
  color: var(--fg);
  background:
    linear-gradient(180deg, rgba(58, 110, 168, 0.12), transparent 56%),
    #111927;
  border-color: rgba(58, 110, 168, 0.86);
  border-bottom-color: #3a6ea8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(58, 110, 168, 0.18),
    0 22px 54px rgba(3, 10, 22, 0.4),
    0 0 34px rgba(58, 110, 168, 0.18);
  transform: translateY(-2px);
}

.industry:hover::after {
  background: linear-gradient(90deg, transparent, #3a6ea8, transparent);
  opacity: 1;
}

.industry__icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: var(--accent);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 106, 26, 0.24), transparent 58%),
    rgba(10, 16, 28, 0.72);
  border: 1px solid rgba(255, 106, 26, 0.42);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 24px rgba(255, 106, 26, 0.14);
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

.industry:hover .industry__icon {
  color: #8fb7e6;
  background:
    radial-gradient(circle at 50% 35%, rgba(58, 110, 168, 0.32), transparent 58%),
    rgba(10, 16, 28, 0.78);
  border-color: rgba(58, 110, 168, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 0 32px rgba(58, 110, 168, 0.24),
    0 0 18px rgba(58, 110, 168, 0.2);
}

.industry svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry__copy {
  display: grid;
  gap: 7px;
}

.industry__label,
.pillar h2 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.industry__subtitle {
  color: var(--fg-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}

.pillars,
.section,
.process,
.closing {
  padding: clamp(64px, 9vw, 122px) var(--page-pad);
}

.pillars {
  padding-top: clamp(26px, 3.6vw, 44px);
}

.pillars {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

.pillar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 22px;
  align-items: start;
  /* pillars are stretched to equal height by the grid; pack the two rows to the
     top (don't let the row tracks stretch) so the header->text gap is a constant
     row-gap on every card instead of varying with how long each description is. */
  align-content: start;
  min-width: 0;
  padding: 0 32px;
}

.pillar:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 106, 26, 0.4), transparent);
}

.pillar img {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  filter: invert(56%) sepia(90%) saturate(2400%) hue-rotate(355deg) brightness(101%);
}

.pillar h2 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--fg);
  font-size: 20px;
  letter-spacing: 0.06em;
}

.pillar p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.62;
}

.section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.systems-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.98) 0%, rgba(11, 13, 16, 0.9) 52%, rgba(11, 13, 16, 0.72) 100%),
    var(--bg);
}

.systems-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58vw, 920px);
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(11, 13, 16, 0.56) 36%, rgba(11, 13, 16, 0.1) 100%),
    url("assets/robot-wide.png") center right / cover no-repeat;
  opacity: 0.36;
}

.systems-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 54% 42% at 82% 18%, rgba(255, 106, 26, 0.08), transparent 62%);
}

.systems-section .section-head,
.systems-section .card-grid {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 72px);
  text-align: center;
}

.section-head h2,
.closing h2 {
  margin: 16px 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-head p:last-child,
.closing p:not(.eyebrow) {
  margin: 0;
  color: var(--fg-3);
  font-size: 16px;
  line-height: 1.65;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.detail-card {
  min-height: 300px;
  padding: 30px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--hairline-top);
}

.detail-card h2,
.detail-card h3 {
  margin: 0 0 14px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.detail-card p {
  margin: 0;
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.64;
}

.detail-card .eyebrow {
  margin-bottom: 14px;
}

.industry-workflows {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 58% 46% at 50% 0%, rgba(255, 106, 26, 0.08), transparent 62%),
    var(--bg);
}

.workflow-tabs {
  position: relative;
  counter-reset: workflow-tab;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1280px;
  margin: -26px auto 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.08), transparent 34%),
    rgba(18, 21, 25, 0.88);
  border: 1px solid rgba(255, 106, 26, 0.22);
  border-radius: var(--r-lg);
  box-shadow: var(--hairline-top), 0 20px 60px rgba(0, 0, 0, 0.24);
}

.workflow-tab-indicator {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: var(--indicator-w, 0);
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 26, 0.95), transparent);
  box-shadow: 0 0 18px rgba(255, 106, 26, 0.42);
  transform: translate3d(var(--indicator-x, 0), var(--indicator-y, 51px), 0);
  transition:
    width 360ms var(--ease-out),
    transform 360ms var(--ease-out),
    opacity 220ms var(--ease-out);
}

.workflow-tabs__label {
  display: none;
  position: relative;
  z-index: 2;
  align-items: center;
  padding: 0 22px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
  border-right: 1px solid var(--border);
}

.workflow-tab {
  counter-increment: workflow-tab;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  color: var(--fg-3);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.workflow-tab:first-of-type {
  border-left: 0;
}

.workflow-tab::before {
  position: relative;
  z-index: 1;
  color: rgba(255, 106, 26, 0.78);
  content: "0" counter(workflow-tab);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.workflow-tab span {
  position: relative;
  z-index: 1;
}

.workflow-tab::after {
  position: absolute;
  right: 18px;
  bottom: 12px;
  left: 18px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.workflow-tab:hover,
.workflow-tab.is-active {
  color: var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.14), rgba(255, 106, 26, 0.04));
}

.workflow-tab.is-active {
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.34), 0 0 24px rgba(255, 106, 26, 0.12);
}

.workflow-tab:hover::after,
.workflow-tab.is-active::after {
  opacity: 1;
}

.workflow-panels {
  max-width: 1280px;
  margin: 0 auto;
}

.workflow-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.07), transparent 34%),
    rgba(18, 21, 25, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--hairline-top);
}

.workflow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 58%, rgba(255, 106, 26, 0.1) 58.2%, transparent 58.7%);
  opacity: 0.7;
}

.workflow-panel > * {
  position: relative;
  z-index: 1;
}

.workflow-panel__intro {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 32px;
}

.workflow-panel__intro h2 {
  margin: 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.04;
  text-transform: uppercase;
}

.workflow-panel__intro p:not(.eyebrow) {
  margin: 0;
  color: var(--fg-3);
  font-size: 16px;
  line-height: 1.7;
}

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

.workflow-card {
  position: relative;
  min-height: 220px;
  padding: 22px 72px 22px 22px;
  overflow: hidden;
  background: rgba(7, 8, 10, 0.56);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}

.workflow-card::before,
.workflow-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.workflow-card::before {
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  background: rgba(255, 106, 26, 0.045);
  border: 1px solid rgba(255, 106, 26, 0.36);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 22px rgba(255, 106, 26, 0.08);
}

.workflow-card::after {
  top: 30px;
  right: 30px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 106, 26, 0.86);
}

.workflow-card:nth-child(6n + 1)::after {
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 106, 26, 0.08);
}

.workflow-card:nth-child(6n + 2)::after {
  height: 11px;
  border-top-width: 5px;
  border-radius: 2px;
}

.workflow-card:nth-child(6n + 3)::after {
  width: 11px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 5px -5px 0 -3px rgba(255, 106, 26, 0.86);
}

.workflow-card:nth-child(6n + 4)::after {
  width: 16px;
  height: 9px;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.workflow-card:nth-child(6n + 5)::after {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border-right-color: transparent;
  transform: rotate(35deg);
}

.workflow-card:nth-child(6n + 6)::after {
  top: 28px;
  width: 16px;
  height: 16px;
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: 5px -5px 0 -3px rgba(255, 106, 26, 0.86), 10px -10px 0 -6px rgba(255, 106, 26, 0.7);
}

.workflow-card:hover {
  border-color: rgba(255, 106, 26, 0.26);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.workflow-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.workflow-card h3 {
  margin: 0 0 12px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.workflow-card p {
  margin: 0;
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.62;
}

.workflow-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(22px, 3vw, 34px);
  padding: clamp(18px, 2.4vw, 26px);
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.12), rgba(58, 110, 168, 0.08)),
    rgba(7, 8, 10, 0.58);
  border: 1px solid rgba(255, 106, 26, 0.28);
  border-radius: var(--r-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 42px rgba(0, 0, 0, 0.22);
}

.workflow-cta p {
  max-width: 430px;
  margin: 0;
  color: var(--fg);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.workflow-cta .button {
  flex: 0 0 auto;
  min-width: min(100%, 240px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 0 28px rgba(255, 106, 26, 0.18);
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 62px;
  height: 2px;
  background: var(--grad-slash);
  opacity: 0;
  transform: rotate(-12deg);
  transition: opacity var(--dur-base) var(--ease-out);
}

.solution-card:hover {
  transform: translateY(-3px);
  background: var(--bg-raised);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2), var(--hairline-top);
}

.solution-card:hover::after {
  opacity: 1;
}

.solution-card > p:first-child {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin: 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.15;
  text-transform: uppercase;
}

.solution-card > p:not(:first-child) {
  margin: 0;
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.62;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.tag-row span {
  padding: 5px 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xs);
  color: var(--fg-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 30px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.08), transparent 62%),
    linear-gradient(135deg, rgba(18, 28, 44, 0.96), rgba(9, 13, 20, 0.98));
  border: 1px solid rgba(255, 106, 26, 0.24);
  border-radius: var(--r-md);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.timeline__dot {
  display: none;
}

.timeline__num {
  width: fit-content;
  margin: 0;
  padding: 6px 9px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  background: rgba(255, 106, 26, 0.08);
  border: 1px solid rgba(255, 106, 26, 0.32);
  border-radius: var(--r-xs);
}

.timeline__duration {
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 8px;
  color: var(--fg-2);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
}

.timeline h3 {
  margin: 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.timeline p {
  max-width: 245px;
  margin: 0;
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.6;
}

.section-cta {
  position: relative;
  max-width: 820px;
  margin: clamp(30px, 4vw, 48px) auto 0;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.1), transparent 42%),
    rgba(18, 21, 25, 0.9);
  border: 1px solid rgba(255, 106, 26, 0.28);
  border-radius: var(--r-lg);
  box-shadow: var(--hairline-top), 0 24px 70px rgba(0, 0, 0, 0.28);
}

.section-cta h2 {
  margin: 10px 0 12px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: uppercase;
}

.section-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--fg-3);
  font-size: 16px;
  line-height: 1.7;
}

.pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 56% 44% at 50% 8%, rgba(255, 106, 26, 0.08), transparent 62%),
    var(--bg);
}

.pricing.section {
  padding-top: clamp(42px, 5vw, 66px);
}

.pricing-fit {
  max-width: 960px;
  margin: clamp(28px, 4vw, 42px) auto 0;
  padding: clamp(18px, 2.4vw, 26px);
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.045), transparent 45%),
    rgba(18, 21, 25, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  box-shadow: none;
}

.pricing-fit p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--fg-2);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-fit__note {
  margin-top: 12px !important;
  color: var(--fg-3) !important;
  font-size: 13px !important;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  gap: 22px;
  padding: 32px;
  background: rgba(18, 21, 25, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--hairline-top);
}

.pricing-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.08), rgba(18, 21, 25, 0.94) 42%),
    var(--bg-elevated);
  border-color: rgba(255, 106, 26, 0.46);
  box-shadow: var(--glow-sm), var(--hairline-top);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 106, 26, 0.38);
  border-radius: var(--r-xs);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card__top {
  display: grid;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__top p {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pricing-card h3 {
  max-width: 310px;
  margin: 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.08;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.price span {
  color: var(--fg-3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card > p {
  margin: 0;
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.64;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: var(--fg-2);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--accent);
  box-shadow: var(--glow-sm);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-faq {
  max-width: 980px;
  margin: clamp(44px, 6vw, 72px) auto 0;
}

.pricing-faq__head {
  margin-bottom: 20px;
  text-align: center;
}

.pricing-faq__head h2 {
  margin: 10px 0 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.06), transparent 34%),
    rgba(18, 21, 25, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: var(--hairline-top);
}

.faq-item[open] {
  border-color: rgba(255, 106, 26, 0.34);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 20px 24px;
  color: var(--fg);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 760px;
  margin: -4px 24px 24px;
  color: var(--fg-3);
  font-size: 15px;
  line-height: 1.7;
}

.closing {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 106, 26, 0.11), transparent 60%);
}

.closing__slash {
  top: 50%;
  transform: rotate(-8deg);
  opacity: 0.5;
}

.closing__inner {
  position: relative;
  display: flex;
  max-width: 780px;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
}

.closing h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 74px);
}

.closing p:not(.eyebrow) {
  max-width: 560px;
}

.site-footer {
  background: var(--bg-canvas);
  padding: clamp(48px, 7vw, 72px) var(--page-pad) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) 2fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  align-items: flex-start;
}

.footer-logo {
  width: min(280px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 6px;
  color: var(--fg-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--fg-3);
  cursor: pointer;
  font-size: 13px;
  text-align: left;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1280px;
  margin: 24px auto 0;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 8, 10, 0.72);
  backdrop-filter: blur(10px);
  animation: fade-in var(--dur-base) var(--ease-out);
}

.modal-overlay[hidden] {
  display: none;
}

.contact-modal {
  position: relative;
  width: min(92vw, 500px);
  max-height: min(90svh, 740px);
  overflow: auto;
  padding: clamp(26px, 4vw, 38px);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-4);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  color: var(--fg-2);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.contact-modal h2 {
  margin: 13px 0 8px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-modal > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--fg-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg-raised);
  color: var(--fg);
  padding: 12px 14px;
  font-size: 14px;
  letter-spacing: 0;
  resize: vertical;
  text-transform: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--border-focus);
  outline: none;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  line-height: 1.45;
}

.form-status.is-success { color: #46d39a; }
.form-status.is-error { color: #ff5c5c; }

/* Honeypot: off-screen (not display:none) so bots auto-fill it but real users
   never see or tab to it. A non-empty value is rejected server-side. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reveal {
  animation: lift-in var(--dur-cinema) var(--ease-out) both;
}

.reveal--delay {
  animation-delay: 110ms;
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 1100px) {
  .hero {
    min-height: clamp(660px, 46vw, 760px);
    aspect-ratio: auto;
  }

  .hero__grid {
    grid-template-columns: minmax(0, clamp(520px, 45vw, 700px)) 1fr;
    padding: clamp(34px, 3.2vw, 58px) clamp(28px, 3vw, 48px) clamp(54px, 4vw, 72px);
  }

  .hero__copy {
    gap: clamp(14px, 1.35vw, 22px);
  }

  .hero__title {
    width: clamp(620px, 48vw, 760px);
    font-size: clamp(42px, 3.75vw, 56px);
  }

  .hero__body {
    max-width: clamp(520px, 42vw, 670px);
    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.46;
  }

  .hero__actions .button {
    min-width: clamp(240px, 18vw, 300px);
    min-height: clamp(50px, 3.5vw, 60px);
    font-size: clamp(12px, 0.9vw, 15px);
  }
}

@media (max-width: 1099px) and (min-width: 841px) {
  :root {
    --hero-frame-width: calc(100vw - 20px);
    --hero-header-height: clamp(72px, 8vw, 88px);
  }

  .site-header {
    gap: clamp(12px, 2vw, 24px);
  }

  .brand-wordmark__top {
    font-size: clamp(15px, 1.8vw, 20px);
  }

  .brand-wordmark__bottom {
    font-size: clamp(7px, 0.9vw, 9px);
  }

  .site-nav {
    gap: clamp(8px, 1.8vw, 18px);
  }

  .site-nav a {
    font-size: clamp(9px, 1.05vw, 11px);
    padding-inline: 6px;
  }

  .header-cta {
    min-width: clamp(112px, 14vw, 150px);
    min-height: clamp(42px, 5vw, 58px);
    font-size: clamp(9px, 1vw, 12px);
  }

  .hero {
    margin-top: var(--hero-header-height);
    min-height: clamp(380px, 46vw, 500px);
    aspect-ratio: auto;
    background:
      radial-gradient(ellipse 48% 46% at 74% 34%, rgba(147, 184, 218, 0.26), rgba(58, 110, 168, 0.08) 55%, transparent 78%),
      linear-gradient(90deg, rgba(7, 8, 10, 0.99) 0%, rgba(7, 8, 10, 0.95) 45%, rgba(7, 8, 10, 0.44) 70%, rgba(7, 8, 10, 0.78) 100%),
      linear-gradient(180deg, rgba(7, 8, 10, 0.28) 0%, rgba(7, 8, 10, 0.06) 44%, rgba(7, 8, 10, 0.82) 100%),
      var(--bg-canvas);
  }

  .hero::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: min(58%, 620px);
    content: "";
    background: url("assets/hero-panel-art-2x-safe.png") right center / auto 104% no-repeat;
    filter: brightness(1.45) contrast(1.06) saturate(1.08);
    opacity: 0.88;
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  }

  .hero__grid {
    inset: 0;
    z-index: 2;
    grid-template-columns: minmax(0, 52%) 1fr;
    padding: clamp(38px, 5vw, 54px) clamp(22px, 4vw, 38px);
  }

  .hero__title {
    width: min(520px, 52vw);
    font-size: clamp(38px, 5vw, 54px);
  }

  .hero__body {
    max-width: min(430px, 46vw);
    font-size: clamp(15px, 1.8vw, 18px);
  }

  .pillar-grid,
  .card-grid,
  .detail-grid,
  .workflow-grid,
  .pricing-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card,
  .solution-card,
  .detail-card {
    min-height: auto;
  }
}

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

@media (max-width: 840px) {
  :root {
    --hero-frame-width: calc(100vw - 16px);
    --hero-header-height: 72px;
    --page-pad: clamp(16px, 5vw, 28px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    height: var(--hero-header-height);
    padding-inline: clamp(12px, 4vw, 18px);
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    border: 1px solid rgba(255, 106, 26, 0.42);
    border-radius: var(--r-xs);
    background: rgba(255, 106, 26, 0.04);
  }

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

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

  .site-header.is-open .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--hero-header-height) + 8px);
    right: 8px;
    left: auto;
    z-index: 99;
    width: min(310px, calc(100vw - 16px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(7, 8, 10, 0.96);
    border: 1px solid rgba(255, 106, 26, 0.28);
    border-radius: 0 18px 0 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48), var(--hairline-top);
    backdrop-filter: blur(18px);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    position: static;
    width: auto;
    min-height: 0;
    background: transparent;
    color: var(--fg);
  }

  .hero {
    width: var(--hero-frame-width);
    min-height: clamp(470px, 68vw, 560px);
    height: auto;
    aspect-ratio: auto;
    margin-top: var(--hero-header-height);
    padding: 0;
    background:
      radial-gradient(ellipse 58% 48% at 73% 25%, rgba(174, 205, 236, 0.38), rgba(58, 110, 168, 0.14) 52%, transparent 80%),
      linear-gradient(90deg, rgba(7, 8, 10, 0.98) 0%, rgba(7, 8, 10, 0.88) 42%, rgba(7, 8, 10, 0.04) 68%, rgba(7, 8, 10, 0.08) 100%),
      linear-gradient(180deg, rgba(7, 8, 10, 0.08) 0%, rgba(7, 8, 10, 0.04) 38%, rgba(7, 8, 10, 0.86) 82%, rgba(7, 8, 10, 0.98) 100%),
      var(--bg-canvas);
  }

  .hero::after {
    top: 0;
    right: 0;
    bottom: auto;
    width: 66%;
    height: 72%;
    background-position: right top;
    background-size: auto 100%;
    filter: brightness(1.5) contrast(1.08) saturate(1.1);
    opacity: 0.92;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  }

  .hero__grid {
    inset: 0;
    z-index: 2;
    grid-template-columns: 1fr;
    align-content: end;
    padding: clamp(26px, 7vw, 42px) clamp(16px, 5vw, 28px);
  }

  .hero__copy {
    gap: clamp(14px, 3vw, 20px);
    max-width: min(100%, 620px);
  }

  .hero__title {
    width: min(100%, 560px);
    font-size: clamp(28px, 6.8vw, 42px);
    transform: none;
  }

  .hero__body {
    max-width: min(100%, 560px);
    font-size: clamp(14px, 2.2vw, 17px);
    line-height: 1.52;
  }

  .hero__actions .button {
    min-width: min(100%, 260px);
    min-height: 52px;
    padding: 12px 20px;
    font-size: 12px;
  }

  .hero__visual {
    max-width: 560px;
    margin: 0 auto;
  }

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

  .pillar-grid,
  .card-grid,
  .detail-grid,
  .workflow-grid,
  .pricing-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .systems-section .solution-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc((100% - 20px) / 2));
  }

  .pillar {
    padding: 28px;
    border-bottom: 1px solid var(--border);
  }

  .pillar:nth-child(2)::after {
    display: none;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --hero-frame-width: calc(100vw - 12px);
    --hero-header-height: 68px;
  }

  .site-header {
    width: var(--hero-frame-width);
    height: var(--hero-header-height);
    padding-inline: 12px;
    border-radius: 0 20px 0 0;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .brand-mark {
    height: 40px;
    width: auto;
  }

  .brand-wordmark__top {
    font-size: 14px;
  }

  .brand-wordmark__bottom {
    font-size: 8px;
    letter-spacing: 0.2em;
  }

  .hero {
    width: var(--hero-frame-width);
    min-height: clamp(590px, 145vw, 700px);
    height: auto;
    aspect-ratio: auto;
    margin-top: var(--hero-header-height);
    padding: 0;
    background:
      radial-gradient(ellipse 74% 40% at 64% 18%, rgba(174, 205, 236, 0.42), rgba(58, 110, 168, 0.14) 56%, transparent 82%),
      linear-gradient(90deg, rgba(7, 8, 10, 0.62) 0%, rgba(7, 8, 10, 0.2) 46%, rgba(7, 8, 10, 0) 78%, rgba(7, 8, 10, 0.18) 100%),
      linear-gradient(180deg, rgba(7, 8, 10, 0.02) 0%, rgba(7, 8, 10, 0.02) 36%, rgba(7, 8, 10, 0.82) 58%, rgba(7, 8, 10, 0.99) 100%),
      var(--bg-canvas);
  }

  .hero::after {
    width: 100%;
    height: 54%;
    background-position: 62% top;
    background-size: auto 100%;
    filter: brightness(1.52) contrast(1.08) saturate(1.1);
    opacity: 0.95;
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

  .hero-hotspots {
    display: none;
  }

  .hero__title {
    width: 100%;
    font-size: clamp(29px, 8.2vw, 39px);
    transform: none;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .site-header .header-cta {
    width: auto;
  }

  .text-link {
    width: 100%;
    text-align: center;
  }

  .hero__visual {
    max-width: min(94%, 390px);
  }

  .industry-grid,
  .pillar-grid,
  .card-grid,
  .detail-grid,
  .workflow-grid,
  .pricing-grid,
  .timeline,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  /* Pillars use the icon-beside-heading layout at all widths (see base .pillar);
     on phones just tighten the gaps and shrink the icon a touch. */
  .pillar { column-gap: 14px; row-gap: 4px; }
  .pillar img { width: 40px; height: 40px; }

  .page-hero {
    padding-top: calc(var(--hero-header-height) + 48px);
    padding-bottom: 48px;
  }

  .page-hero h1,
  .section-head h2,
  .closing h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .page-hero p:not(.eyebrow),
  .section-head p:last-child,
  .closing p:not(.eyebrow),
  .workflow-panel__intro p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }

  .systems-section .solution-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

  .industry-grid {
    gap: 28px 12px;
  }

  .workflow-tabs {
    grid-template-columns: 1fr 1fr;
    margin-top: -18px;
  }

  .workflow-tabs__label {
    grid-column: 1 / -1;
    min-height: 38px;
    justify-content: center;
    padding: 10px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .workflow-tab {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .workflow-panel {
    padding: 22px;
    border-radius: var(--r-md);
  }

  .workflow-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .workflow-cta .button {
    width: 100%;
  }

  .workflow-card {
    min-height: auto;
  }

  .pillar {
    padding: 24px 0;
  }

  .pillar::after {
    display: none;
  }

  .solution-card {
    min-height: 280px;
    padding: 24px;
  }

  .pricing-card {
    min-height: auto;
    padding: 24px;
  }

  .price {
    font-size: clamp(36px, 14vw, 54px);
  }

  .pricing-badge {
    position: static;
    width: fit-content;
    order: -1;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 18px;
    font-size: 13px;
    letter-spacing: 0.05em;
  }

  .faq-item p {
    margin: -2px 18px 20px;
    font-size: 14px;
  }

  .timeline {
    gap: 28px;
  }

  .timeline li {
    min-height: auto;
    padding: 24px;
  }

  .footer-grid {
    gap: 36px;
  }

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

@media (max-width: 430px) {
  .brand-mark {
    height: 36px;
    width: auto;
  }

  .brand-wordmark__bottom span {
    display: none;
  }

  .hero__body {
    font-size: 16px;
  }

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

  .strip-title,
  .eyebrow {
    letter-spacing: 0.16em;
  }
}

/* ---- Demos section (demos.html) ---- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.demo-card__tag { color: var(--accent); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin: 0.25rem 0 0.75rem; }
.demo-card__cta { margin-top: auto; align-self: flex-start; }
.demos-section .solution-card { display: flex; flex-direction: column; }
.demos-notes { margin-top: 2.5rem; text-align: center; }
.demos-note { color: var(--fg); opacity: 0.65; font-size: 0.95rem; margin: 0.4rem 0; }
.demos-note--investor { opacity: 0.85; }
.link-button { background: none; border: none; padding: 0; color: var(--accent); font: inherit; font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.link-button:hover { opacity: 0.8; }
.pricing-context { margin: 2.5rem auto 0; max-width: 56ch; text-align: center; color: var(--fg); opacity: 0.7; font-size: 0.95rem; }
@media (min-width: 760px) { .demos-section .card-grid { grid-template-columns: repeat(2, 1fr); } }
.section-intro { text-align: center; max-width: 64ch; margin: 0 auto 2.5rem; }
.section-intro .section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0.4rem 0 0.6rem; }
.section-intro .section-title span { color: var(--accent); }
/* ---- Slim footer + polish (auto-finish pass) ---- */
.footer-slim { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 2rem 0 1.25rem; }
.footer-slim .footer-logo { max-width: 120px; height: auto; }
.footer-nav { display: flex; gap: 1.5rem; align-items: center; }
.footer-nav a, .footer-nav button { color: var(--fg); opacity: 0.75; font: inherit; background: none; border: none; padding: 0; cursor: pointer; text-decoration: none; transition: opacity 0.2s ease; }
.footer-nav a:hover, .footer-nav button:hover { opacity: 1; }
.footer-contact { display: flex; gap: 1.25rem; margin: 0; }
.footer-contact a { color: var(--accent); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; text-underline-offset: 3px; }
.brand-dot { display: inline-block; width: 0.65em; height: 0.65em; border-radius: 50%; margin-right: 0.5em; vertical-align: baseline; box-shadow: 0 0 12px currentColor; }
.demos-section .solution-card { transition: transform 0.25s ease, border-color 0.25s ease; }
.demos-section .solution-card:hover { transform: translateY(-4px); border-color: var(--it-orange, var(--accent)); }

/* ---- Full-bleed animated hero (typing robot video) ----
   Resets the bespoke fixed-aspect framed-panel hero into a clean,
   full-height two-column section: robot video left, copy right. */
.hero--full {
  position: relative;
  width: 100%;
  aspect-ratio: auto;
  min-height: clamp(560px, 90vh, 920px);
  height: auto;
  display: flex;
  flex-direction: column;
  padding-top: var(--hero-header-height);
  box-sizing: border-box;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-canvas);
}
.hero--full::before, .hero--full::after { content: none; display: none; }
.hero--full .hero__glow { display: none; }
.hero__grid--full {
  position: relative;
  z-index: 1;
  inset: auto;
  width: 100%;
  max-width: none;
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 0;
}
/* Robot fills the LEFT half edge-to-edge; copy on the RIGHT with padding */
.hero__grid--robot-left .hero__copy {
  grid-column: 2; grid-row: 1;
  align-self: center;
  padding: 2rem clamp(28px, 5vw, 80px);
  max-width: 820px;
}
/* Restore the production metallic headline treatment (Shane's dev polish
   flattened + shrank it). Scoped to the homepage hero so it wins over the
   flat .hero__title rules without touching other pages. */
.hero__grid--robot-left .hero__copy .hero__title {
  width: auto;
  max-width: 100%;
  font-size: clamp(40px, 4.6vw, 70px);
  letter-spacing: -0.012em;
  line-height: 1.0;
  transform: none;
  gap: 2px;
}
.hero__grid--robot-left .hero__copy .hero__title span {
  background: linear-gradient(180deg, #f4f5f7 0%, #9aa0aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero__grid--robot-left .hero__copy .hero__title strong {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero__grid--robot-left .hero__visual--robot { grid-column: 1; grid-row: 1; }
.hero__visual--robot { display: block; position: relative; align-self: stretch; }
.robot-stage { position: absolute; inset: 0; width: auto; max-width: none; margin: 0; }
.robot-stage__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
/* soft fade on the inner (right) edge so the video melts toward the copy */
.robot-stage::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent 74%, var(--bg-canvas) 100%);
}
.hero-terminal { margin-top: 1.75rem; font-family: var(--font-mono); font-size: 0.9rem; color: var(--fg-3); }
.hero-terminal__prefix { color: var(--accent); font-weight: 600; }
.hero-terminal__caret { display: inline-block; width: 0.55em; height: 1.05em; margin-left: 2px; background: var(--accent); vertical-align: text-bottom; animation: caretBlink 1.1s steps(1) infinite; }
@keyframes caretBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .hero-terminal__caret { animation: none; }
}
/* Two-column hero (>=861px): fill the whole cell so the robot is large with its head
   up at the top (the look Red prefers). object-position keeps it grounded at the bottom.
   `cover` trims the sides to fill — the keyboard's right edge sits under the right-edge
   fade, and the arm trims a touch in narrow/tall windows (accepted; Red prefers the larger
   robot over the arm-safe variant). Mobile (<=860px) keeps its stacked treatment below. */
@media (min-width: 861px) {
  .robot-stage { inset: 0; aspect-ratio: auto; height: auto; max-height: none; }
  .robot-stage__video { object-position: center bottom; }
}
/* 861-1500px: a side-by-side video column gets too narrow/portrait here and `cover`
   would crop the robot's arms. Below 1500px stack — the video becomes a full-width 16:9
   banner (the WHOLE robot is shown, nothing cropped) and the headline/copy reflow below
   it. The two-column layout resumes at >=1501px (the arm trims a little between ~1500 and
   the full-bleed-safe ~1800px range — a deliberate trade-off so side-by-side returns sooner). */
@media (min-width: 861px) and (max-width: 1500px) {
  .hero--full { min-height: 0; }
  .hero__grid--full { grid-template-columns: 1fr; }
  .hero__grid--robot-left .hero__visual--robot { grid-column: 1; grid-row: 1; }
  .hero__grid--robot-left .hero__copy {
    grid-column: 1; grid-row: 2;
    align-self: start; max-width: none;
    padding: 1.75rem clamp(28px, 6vw, 80px) 2.5rem;
  }
  .robot-stage {
    position: relative; inset: auto;
    width: 100%; height: auto; aspect-ratio: 16 / 9;
    max-width: none; margin: 0;
  }
  .robot-stage__video {
    position: relative; inset: auto;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .robot-stage::after { display: none; }
}
@media (max-width: 860px) {
  .hero--full { min-height: auto; padding-top: calc(var(--hero-header-height, 80px) + 1rem); padding-bottom: 1rem; }
  .hero__grid--full { grid-template-columns: 1fr; min-height: 0; }
  /* revert robot from full-bleed cover to normal stacked flow on mobile */
  .hero__visual--robot { align-self: stretch; }
  .robot-stage { position: relative; inset: auto; width: 100%; max-width: 560px; margin: 0 auto; }
  .robot-stage__video { position: relative; inset: auto; width: 100%; height: auto; object-fit: contain; }
  .robot-stage::after { display: none; }
  .hero__grid--robot-left .hero__copy { padding: 1.25rem clamp(20px, 5vw, 28px); max-width: none; }
  /* stack: robot above copy on mobile (single column) */
  .hero__grid--robot-left .hero__copy,
  .hero__grid--robot-left .hero__visual--robot { grid-column: 1; }
  .hero__grid--robot-left .hero__visual--robot { grid-row: 1; }
  .hero__grid--robot-left .hero__copy { grid-row: 2; }
  /* terminal sits directly below the robot video (above the headline) on mobile (Red) */
  .hero-terminal { order: -1; margin-top: 0; }
}

/* ============================================================
   Site-wide metallic heading treatment (2026-06-13 beautify
   round) — match the homepage hero's premium silver+orange
   clip-text look across every page's headings. Appended last
   so it wins by source order over the flat dev-polish colors. */
.page-hero h1,
.section-intro .section-title,
.closing h2,
.pricing-faq h2,
.section-cta h2 {
  background: linear-gradient(180deg, #f4f5f7 0%, #9aa0aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.page-hero h1 span,
.section-intro .section-title span,
.closing h2 span {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
