/* luminexusa.com — site styles. Static, no build step.
   Palette comes from the brand's own hero imagery (see README.md). */

:root {
  --bg: #0b1120;
  --bg-2: #0f1728;
  --panel: #111a2e;
  --panel-2: #16213a;
  --line: #223049;
  --ink: #e6ecf7;
  --muted: #93a2bd;
  --dim: #64748b;
  --brand: #6366f1;
  --brand-2: #818cf8;
  --brand-dim: #4f46e5;
  --focus: #a5b4fc;
  --max: 1040px;
  --gutter: 18px;
  --radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 14px/1.6 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; margin: 0; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-2); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }

.skip {
  position: absolute; left: 12px; top: -75px; z-index: 100;
  padding: 8px 12px; background: var(--brand); color: #fff; border-radius: 4px; font-weight: 600;
}
.skip:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 10px 20px; border-radius: 6px;
  font-size: 12px; font-weight: 600; line-height: 1.2; border: 1px solid transparent;
  transition: background-color .18s, border-color .18s, color .18s;
}
.btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dim); border-color: var(--brand-dim); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--brand-2); background: rgba(99,102,241,.10); color: var(--ink); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 27px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,17,32,.86); backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 20px; flex-wrap: wrap; }
/* Source artwork is a 149x40 raster; displayed at 22px tall so it is never upscaled. */
.logo img { height: 34px; width: auto; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 21px; }
.site-nav a:not(.btn) { font-size: 14px; font-weight: 500; color: var(--muted); padding: 4px 0; }
.site-nav a:not(.btn):hover { color: var(--ink); }
.nav-cta .btn { padding: 10px 18px; font-size: 13px; }
.nav-toggle {
  display: none; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  padding: 7px 10px; border-radius: 6px; font: inherit; font-size: 11px; cursor: pointer;
}
.nav-toggle-bars { position: relative; width: 14px; height: 2px; background: currentColor; }
.nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; width: 14px; height: 2px; background: currentColor;
}
.nav-toggle-bars::before { top: -4px; } .nav-toggle-bars::after { top: 4px; }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; flex-basis: 100%; padding-bottom: 9px; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 3px; }
  .site-nav a:not(.btn) { display: block; padding: 8px 3px; font-size: 13px; border-top: 1px solid var(--line); }
  .nav-cta { margin-top: 8px; }
  .nav-cta .btn { display: block; text-align: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .6; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,17,32,.55) 0%, rgba(11,17,32,.78) 60%, var(--bg) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 36px; align-items: center;
  padding-block: clamp(32px, 4.5vw, 56px);
}
.eyebrow {
  font-size: 14px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--brand-2);
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(1.76rem, 4.16vw, 3.12rem); max-width: 18ch; }
.hero-lede { margin-top: 18px; font-size: clamp(0.84rem, 1.36vw, 1rem); color: var(--muted); max-width: 58ch; }

.hero-panel {
  background: rgba(17,26,46,.78); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 21px; backdrop-filter: blur(6px);
}
.panel-title { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); font-weight: 600; margin-bottom: 14px; }
.deliverables { list-style: none; display: grid; gap: 10px; }
.deliverables li { display: grid; grid-template-columns: 26px 1fr; gap: 9px; align-items: start; }
.deliverables b { display: block; font-size: 0.8rem; color: var(--ink); margin-bottom: 2px; }
.deliverables span:last-child { font-size: .76rem; color: var(--muted); line-height: 1.5; }
.d-num { font-size: 10px; font-weight: 700; color: var(--brand-2); letter-spacing: .08em; padding-top: 3px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 27px; }
}

/* ---------- Stats ---------- */
.stats { border-block: 1px solid var(--line); background: var(--bg-2); }
.stats dl { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; padding-block: 30px; text-align: center; }
.stats div { display: flex; flex-direction: column-reverse; }
.stats dd { font-size: clamp(1.36rem, 2.56vw, 1.92rem); font-weight: 700; line-height: 1.1; }
.stats dt { font-size: 10px; color: var(--dim); margin-top: 4px; }
@media (max-width: 760px) {
  .stats dl { grid-template-columns: repeat(2, 1fr); gap: 21px 12px; }
  .stats div:last-child { grid-column: 1 / -1; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(32px, 4.2vw, 52px); }
.section-head { max-width: 64ch; }
.section-head h2 { font-size: clamp(1.44rem, 3.04vw, 2.16rem); }
.section-lede { margin-top: 14px; color: var(--muted); font-size: 0.864rem; }

.band { position: relative; overflow: hidden; isolation: isolate; border-block: 1px solid var(--line); }
.band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; z-index: -2; }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(11,17,32,.95), rgba(11,17,32,.72));
}

.grid { display: grid; gap: 15px; margin-top: 36px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .cols-4, .cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cols-4, .cols-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 21px;
  transition: border-color .2s;
}
.card:hover { border-color: var(--brand-dim); }
.card h3 { font-size: 0.92rem; margin-bottom: 8px; }
.card p { font-size: .77.6rem; color: var(--muted); }
.card-accent { border-left: 3px solid var(--brand); }
.card-accent .pillar-kicker { margin-bottom: 8px; }

/* ---------- Platform pillars ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-top: 36px; align-items: stretch; }
.pillar { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.pillar-featured { border-color: var(--brand-dim); background: var(--panel-2); }
.pillar-kicker { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-2); font-weight: 700; margin-bottom: 9px; }
.pillar h3 { font-size: 1.04rem; margin-bottom: 9px; }
.pillar p { color: var(--muted); font-size: .78.4rem; }
.ticks { list-style: none; margin-top: 15px; display: grid; gap: 7px; }
.ticks li { position: relative; padding-left: 18px; font-size: .76rem; color: var(--ink); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 5px;
  border-left: 2px solid var(--brand-2); border-bottom: 2px solid var(--brand-2); transform: rotate(-45deg);
}
.mdm-features { margin-top: 15px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.mdm-features h3 { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-2); margin-bottom: 3px; }
.ticks.feature-grid { grid-template-columns: repeat(4, 1fr); gap: 9px 18px; }
@media (max-width: 1000px) {
  .pillars { grid-template-columns: 1fr; }
}
@media (max-width: 960px) { .ticks.feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ticks.feature-grid { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 36px; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 16px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 27px; height: 27px;
  border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; font-size: 11px; margin-bottom: 14px;
}
.step h3 { font-size: 0.864rem; margin-bottom: 8px; }
.step p { font-size: .74.4rem; color: var(--muted); }
@media (max-width: 1100px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } .step { display: grid; grid-template-columns: 27px 1fr; column-gap: 12px; } .step h3 { grid-column: 2; } .step p { grid-column: 2; } .step-num { margin-bottom: 0; } }

/* ---------- Compliance ---------- */
.cert-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 36px; }
.cert-col h3 { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-2); margin-bottom: 10px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.chips li { font-size: 10px; padding: 4px 9px; border-radius: 4px; border: 1px solid var(--line); background: var(--panel); color: var(--muted); }
.creds { margin-top: 33px; }
@media (max-width: 960px) { .cert-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cert-cols { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 36px; align-items: start; }
.about-copy { display: grid; gap: 14px; color: var(--muted); font-size: 0.832rem; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 21px; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 36px; align-items: start; }
.contact h2 { font-size: clamp(1.44rem, 3.04vw, 2.16rem); max-width: 20ch; }
.contact-details { display: grid; gap: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 21px; }
.contact-details dt { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); font-weight: 600; margin-bottom: 3px; }
.contact-details dd { font-size: 0.84rem; }
.contact-details a { color: var(--brand-2); }
.contact-details a:hover { color: var(--ink); text-decoration: underline; }
.todo { color: var(--muted); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: 33px; font-size: 11px; color: var(--dim); }
.site-footer .wrap { display: grid; grid-template-columns: auto 1fr auto; gap: 18px 30px; align-items: center; }
.footer-brand img { height: 20px; width: auto; margin-bottom: 8px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.footer-nav a { color: var(--muted); }
.footer-legal a { color: var(--brand-2); }
@media (max-width: 860px) { .site-footer .wrap { grid-template-columns: 1fr; } }

/* ---------- Product catalog ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.chip {
  padding: 7px 14px; border-radius: 75px; border: 1px solid var(--line); background: transparent;
  color: var(--muted); font: inherit; font-size: 11px; cursor: pointer; transition: background-color .16s, border-color .16s, color .16s;
}
.chip:hover { border-color: var(--brand-dim); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }
.filter-status { margin-top: 10px; font-size: 10px; color: var(--dim); min-height: 1.4em; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 18px; align-items: start; }
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

.product { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.product:hover { border-color: var(--brand-dim); }
.product[hidden] { display: none; }
.product-shot {
  display: flex; align-items: center; justify-content: center; height: 158px; padding: 16px;
  background: radial-gradient(120% 100% at 50% 0, rgba(99,102,241,.16), transparent 68%), var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.product-shot img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.no-shot { font-size: 10px; letter-spacing: .14em; color: var(--dim); text-transform: uppercase; }
.product-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-sku { font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--brand-2); margin-bottom: 8px; }
.product h3 { font-size: 0.896rem; margin-bottom: 6px; }
.product-tagline { font-size: .76rem; color: var(--muted); }
.badges { list-style: none; display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.badges li { font-size: 9px; letter-spacing: .04em; padding: 3px 8px; border-radius: 4px; border: 1px solid var(--line); background: var(--bg-2); color: var(--muted); }
.product details { margin-top: 15px; border-top: 1px solid var(--line); padding-top: 10px; }
.product summary {
  cursor: pointer; list-style: none; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand-2); display: flex; align-items: center; padding: 3px 0;
}
.product summary::-webkit-details-marker { display: none; }
.product summary::after { content: "+"; font-size: 14px; line-height: 1; margin-left: auto; color: var(--dim); }
.product details[open] summary::after { content: "\2212"; }
.spec { margin-top: 10px; font-size: .7.2rem; }
.spec div { display: grid; grid-template-columns: 81px 1fr; gap: 9px; padding: 5px 0; border-top: 1px solid rgba(38,43,61,.7); }
.spec div:first-child { border-top: 0; }
.spec dt { color: var(--dim); font-size: 10px; padding-top: 2px; }
.spec dd { color: var(--muted); line-height: 1.5; overflow-wrap: anywhere; }
.more-row { margin-top: 21px; display: flex; justify-content: center; }
.more-row .btn[hidden] { display: none; }
.note { margin-top: 21px; font-size: .73.6rem; color: var(--dim); max-width: 70ch; }
.note a { color: var(--brand-2); }

/* ---------- Deployment: the exploded view (the one scroll-driven act) ----------
   The section is 4 viewports tall; the stage sticks for the whole travel and
   site.js writes --p (0..1) on the section. Plates lift on --k, labels light
   up on --on. Everything else is the page's normal look. */
.xv-act { position: relative; height: 320vh; background: var(--bg); border-block: 1px solid var(--line); }
.xv-stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: grid; align-items: center; }
.xv-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 36px; }
.xv-scene { perspective: 1125px; perspective-origin: 55% 40%; }
.xv-stack {
  position: relative; width: min(92%, 420px); aspect-ratio: 1100 / 724; margin: 0 auto;
  transform-style: preserve-3d;
  transform: rotateX(56deg) rotateZ(calc(-22deg - var(--p, 0) * 9deg)) scale(.96);
  will-change: transform;
}
.xv-plate {
  position: absolute; inset: 0; transform-style: preserve-3d;
  transform: translateZ(calc(var(--k, 0) * var(--z) * var(--zs, 1) * 1px));
  will-change: transform, opacity;
}
.xv-plate-hw img { width: 100%; height: auto; filter: drop-shadow(0 38px 38px rgba(0,0,0,.8)); }
.xv-glass {
  inset: 6% 4%; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(129,140,248,.55);
  background: linear-gradient(135deg, rgba(129,140,248,.22), rgba(129,140,248,.07));
  box-shadow: 0 22px 45px -15px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.08);
  opacity: var(--k, 0); color: var(--brand-2);
}
.xv-tag { position: absolute; top: 5%; left: 4%; font-size: clamp(8px, 0.8vw, 11px); letter-spacing: .12em; font-weight: 700; color: var(--ink); }
.xv-bars { position: absolute; inset: 28% 10% 18% 10%; display: grid; align-content: space-between; }
.xv-bars i { display: block; height: 14%; width: var(--w); border-radius: 3px; background: rgba(129,140,248,.45); }
.xv-tiles { position: absolute; inset: 26% 10% 16% 10%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8%; }
.xv-tiles i { display: block; aspect-ratio: 1; border-radius: 22%; background: rgba(129,140,248,.45); }
.xv-net { position: absolute; inset: 18% 12% 12% 12%; width: 76%; height: 70%; color: #c3ceff; }

.xv-copy h2 { font-size: clamp(1.28rem, 2.4vw, 1.84rem); margin-top: 4px; }
.xv-copy .section-lede { margin-top: 9px; margin-bottom: 16px; font-size: 0.8rem; }
.xv-labels li { opacity: .28; transition: opacity 260ms ease-out; }
.xv-labels li.is-on { opacity: 1; }
.xv-close { margin-top: 15px; color: var(--ink); font-weight: 600; opacity: 0; transition: opacity 320ms ease-out; }
.xv-close.is-on { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .xv-act { height: auto; padding-block: clamp(54px, 7.2vw, 90px); }
  .xv-stage { position: static; height: auto; }
  .xv-plate { --k: 1; }
  .xv-labels li, .xv-close { opacity: 1; }
}
@media (max-width: 900px) {
  .xv-grid { grid-template-columns: 1fr; grid-template-rows: 42svh auto; gap: 9px; align-items: start; padding-top: 9px; }
  .xv-scene { perspective: 825px; perspective-origin: 50% 30%; display: grid; align-items: end; height: 100%; --zs: .6; }
  .xv-stack { width: min(60.8vw, 300px); transform: rotateX(54deg) rotateZ(calc(-14deg - var(--p, 0) * 8deg)) scale(.82); }
  .xv-copy.hero-panel { padding: 15px; }
  .xv-copy h2 { font-size: 1.08rem; }
  .xv-copy .section-lede { display: none; }
  .deliverables.xv-labels { gap: 6px; }
  .xv-labels b { display: inline; }
  .xv-labels b::after { content: ". "; }
  .xv-labels span:last-child { font-size: .70.4rem; line-height: 1.4; }
}

/* ---------- Multi-page (2026-09-13) ---------- */
.site-nav a[aria-current="page"] { color: var(--ink); }
.glance-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 36px 48px; align-items: center; }
.facts { display: grid; gap: 10px; }
.facts > div { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.facts dt { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-2); font-weight: 700; margin-bottom: 3px; }
.facts dd { margin: 0; color: var(--muted); font-size: .77.6rem; }
@media (max-width: 900px) { .glance-grid { grid-template-columns: 1fr; } }

.core-grid { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.core-card { display: flex; flex-direction: column; gap: 4px; height: 100%; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; color: inherit; text-decoration: none; transition: border-color .16s; }
.core-card:hover { border-color: var(--brand-dim); color: inherit; }
.core-shot { display: grid; place-items: center; height: 112px; margin-bottom: 6px; border-radius: 6px; background: var(--bg); overflow: hidden; }
.core-shot img { max-height: 90px; max-width: 86%; width: auto; object-fit: contain; }
.core-card b { font-size: 0.816rem; }
.core-card span:last-child { font-size: .7.2rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 1100px) { .core-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .core-grid { grid-template-columns: 1fr 1fr; } .core-shot { height: 90px; } }

.card-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.card-link:hover { color: inherit; }
.card-more { margin-top: auto; padding-top: 10px; font-size: .76rem; font-weight: 600; color: var(--brand-2); }
.card-more::after { content: " \2192"; }

.cta-band { background: var(--bg-2); border-top: 1px solid var(--line); }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 24px 36px; align-items: center; }
.cta-grid h2 { font-size: clamp(1.28rem, 2.4vw, 1.84rem); }
.cta-grid .cta-row { margin-top: 0; }
@media (max-width: 800px) { .cta-grid { grid-template-columns: 1fr; } }

/* Section pages: the first block is the page head. */
body:not(.page-home) main > .section:first-child h1 { font-size: clamp(1.6rem, 3.52vw, 2.48rem); max-width: 20ch; }

/* ---------- Landing graphics (2026-09-13) ---------- */
.card-icon { width: 24px; height: 24px; color: var(--brand-2); display: block; flex: 0 0 auto; }
.card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.card-head h3, .card-head .pillar-kicker { margin: 0; }
.fact-icon { width: 18px; height: 18px; color: var(--brand-2); float: right; margin-left: 9px; opacity: .9; }
.hero-visual { position: relative; }
.hero-device { display: block; width: 100%; height: auto; filter: drop-shadow(0 22px 38px rgba(0,0,0,.7)); pointer-events: none; }
.hero-screen {
  position: absolute; left: 3.8%; top: 6.1%; width: 88.2%; height: 83.3%;
  margin: 0; padding: 3.5% 5%; border: 0; border-radius: 6px; backdrop-filter: none;
  background: linear-gradient(180deg, #171b26, #0c0e15);
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.hero-screen .screen-logo { position: absolute; top: 5%; right: 5%; width: 17%; height: auto; opacity: .95; }
.hero-screen .panel-title { font-size: 9px; letter-spacing: .16em; margin-bottom: 5px; padding-right: 22%; }
.hero-screen .deliverables { gap: 2px; }
.hero-screen .deliverables li { grid-template-columns: 22px 1fr; gap: 6px; }
.hero-screen .deliverables b { font-size: 11.5px; margin-bottom: 0; }
.hero-screen .deliverables span:last-child { font-size: 10px; line-height: 1.25; }
.hero-screen .d-num { font-size: 9px; padding-top: 2px; }
@media (max-width: 900px) {
  .hero-screen { position: static; width: auto; height: auto; margin-top: 10px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(17,26,46,.92); }
  .hero-screen .screen-logo { display: none; }  /* the tablet above already shows the splash logo */
  .hero-screen .panel-title { font-size: 10px; margin-bottom: 12px; padding-right: 0; }
  .hero-screen .deliverables { gap: 10px; }
  .hero-screen .deliverables li { grid-template-columns: 26px 1fr; gap: 9px; }
  .hero-screen .deliverables b { font-size: 14px; }
  .hero-screen .deliverables span:last-child { font-size: 13px; line-height: 1.45; }
  .hero-screen .d-num { font-size: 10px; }
}
.ai-head { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 24px 42px; align-items: center; margin-bottom: 6px; }
.ai-figure { margin: 0; }
.shot-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #0e1017; box-shadow: 0 22px 45px -15px rgba(0,0,0,.8); }
.shot-frame img { display: block; width: 100%; height: auto; }
.ai-figure figcaption { margin-top: 8px; font-size: .7.2rem; color: var(--dim); }
@media (max-width: 900px) { .ai-head { grid-template-columns: 1fr; } }

/* ---------- Contact form ---------- */
.contact-form { margin-top: 22px; display: grid; gap: 12px; max-width: 40rem; }
.contact-form label { display: grid; gap: 5px; font-size: 12px; font-weight: 600; color: var(--muted); }
.contact-form .opt { font-weight: 400; color: var(--dim); }
.contact-form input, .contact-form textarea {
  font: inherit; font-size: 14px; color: var(--ink); background: var(--panel); border: 1px solid var(--line);
  border-radius: 7px; padding: 9px 11px; width: 100%; transition: border-color .16s, box-shadow .16s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(99,102,241,.35); }
.contact-form input[aria-invalid="true"], .contact-form textarea[aria-invalid="true"] { border-color: #dc2626; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.contact-form .cta-row { margin-top: 6px; align-items: center; }
.contact-form .hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 13px; color: var(--muted); }
.form-status.ok { color: #4ade80; }
.form-status.err { color: #f87171; }
.contact-form.is-sent { opacity: .6; pointer-events: none; }

/* ---------- Hero screen boot sequence ----------
   When the page opens the tablet "boots": the title, then 01, 02, 03, 04 arrive
   in order (about 0.8 s apart). After that a soft indigo highlight moves through
   the four items on a slow loop. Under reduced motion everything is simply shown. */
@keyframes screen-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.hero-screen .screen-logo { animation: screen-in .6s ease-out both; }
.hero-screen .panel-title { animation: screen-in .6s ease-out .4s both; }
.hero-screen .deliverables li { position: relative; border-radius: 6px; margin: 0 -8px; padding: 2px 8px; animation: screen-in .7s ease-out both; }
.hero-screen .deliverables li:nth-child(1) { animation-delay: 1.1s; }
.hero-screen .deliverables li:nth-child(2) { animation-delay: 1.9s; }
.hero-screen .deliverables li:nth-child(3) { animation-delay: 2.7s; }
.hero-screen .deliverables li:nth-child(4) { animation-delay: 3.5s; }
/* The moving highlight: a 12 s loop, each item lit for a quarter of it, starting
   once the boot sequence has finished. */
@keyframes screen-lit {
  0%, 4% { background: rgba(99,102,241,0); }
  8%, 22% { background: rgba(99,102,241,.16); }
  27%, 100% { background: rgba(99,102,241,0); }
}
.hero-screen .deliverables li::after {
  content: ""; position: absolute; inset: 0; border-radius: 6px; pointer-events: none;
  animation: screen-lit 12s linear infinite; animation-delay: 4.6s;
}
.hero-screen .deliverables li:nth-child(2)::after { animation-delay: 7.6s; }
.hero-screen .deliverables li:nth-child(3)::after { animation-delay: 10.6s; }
.hero-screen .deliverables li:nth-child(4)::after { animation-delay: 13.6s; }
@media (prefers-reduced-motion: reduce) {
  .hero-screen .screen-logo, .hero-screen .panel-title, .hero-screen .deliverables li, .hero-screen .deliverables li::after { animation: none; }
}
@media (max-width: 900px) {
  .hero-screen .deliverables li { margin: 0; padding: 0; }
}

/* ---------- Console slideshow (Intelligence, built in) ----------
   Four screens cross-fade on a 24 s loop, 6 s each, pure CSS. Pauses while the
   pointer rests on it. Under reduced motion only the first screen is shown. */
.ai-slides .shot-frame { position: relative; aspect-ratio: 2 / 1; }
.ai-slides .slide { position: absolute; inset: 0; opacity: 0; animation: slide-show 24s ease-in-out infinite; animation-delay: calc(var(--i) * 6s); }
.ai-slides .slide img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.ai-slides figcaption { position: relative; min-height: 3em; }
.ai-slides .slide-cap { position: absolute; inset: 0 0 auto 0; opacity: 0; animation: slide-show 24s ease-in-out infinite; animation-delay: calc(var(--i) * 6s); }
@keyframes slide-show {
  0% { opacity: 0; } 4% { opacity: 1; } 25% { opacity: 1; } 29% { opacity: 0; } 100% { opacity: 0; }
}
.ai-slides:hover .slide, .ai-slides:hover .slide-cap { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .ai-slides .slide, .ai-slides .slide-cap { animation: none; }
  .ai-slides .slide[style="--i:0"], .ai-slides .slide-cap[style="--i:0"] { opacity: 1; }
}

/* ---------- Industries: sector story ---------- */
.sector-index { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.sector-index a { font-size: 12px; font-weight: 600; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; text-decoration: none; }
.sector-index a:hover { color: var(--ink); border-color: var(--brand); }
.sectors-story { display: grid; gap: 28px; margin-top: 40px; }
.sector { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); gap: 28px 40px; align-items: center; padding: 28px 0 32px; border-top: 1px solid var(--line); scroll-margin-top: 80px; }
.sector:nth-child(even) .sector-copy { order: 2; }
.sector h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-bottom: 10px; }
.sector-rules { color: var(--muted); }
.sector-rules b { color: var(--ink); }
.sector-kicker { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--brand-2); margin-top: 16px; }
.sector .ticks { margin-top: 8px; }
.sector-aside { display: grid; gap: 12px; }
.linecard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: grid; gap: 12px; }
.linecard .sector-kicker { margin-top: 0; }
.linecard img { max-height: 190px; width: auto; max-width: 100%; margin: 6px auto 0; filter: drop-shadow(0 16px 24px rgba(0,0,0,.6)); }
.sector-cap { font-size: 12px; color: var(--dim); }
.sectors-more { margin-top: 24px; }
.cols-2 { grid-template-columns: 1fr; }
@media (max-width: 900px) {
  .sector { grid-template-columns: 1fr; }
  .sector:nth-child(even) .sector-copy { order: 0; }
  .cols-2 { grid-template-columns: 1fr; }
}
.art-row { display: flex; align-items: flex-end; justify-content: center; gap: 18px; margin-top: 6px; }
.art-row img { height: 150px; width: auto; filter: none; }
.art-row img:last-child { height: 100px; }
.sectors-more .card { max-width: 48rem; }
.art-row-photos { align-items: center; gap: 14px; }
.photo-plate { border-radius: 8px; overflow: hidden; background: #e9e9ec; flex: 0 0 auto; }
.photo-plate img { display: block; height: 230px; width: auto; }
.art-row-photos .cutout { height: 250px; filter: drop-shadow(0 16px 24px rgba(0,0,0,.6)); }
@media (max-width: 480px) { .photo-plate img { height: 150px; } .art-row-photos .cutout { height: 165px; } }

/* ---------- How we work: the journey ---------- */
.journey { list-style: none; margin: 40px 0 0; padding: 0; display: grid; gap: 0; position: relative; }
.journey::before { content: ""; position: absolute; left: 21px; top: 24px; bottom: 24px; width: 1px; background: var(--line); }
.phase { position: relative; display: grid; grid-template-columns: 44px minmax(0, 1.3fr) minmax(0, .9fr); gap: 20px 32px; align-items: start; padding: 20px 0 36px; }
.phase-num { width: 44px; height: 44px; border-radius: 50%; background: var(--panel); border: 1px solid var(--brand-dim); display: grid; place-items: center; font-size: 13px; font-weight: 700; color: var(--brand-2); position: relative; z-index: 1; }
.phase h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 6px 0 10px; }
.phase-story { color: var(--muted); }
.phase-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; margin-top: 14px; }
.phase-cols .sector-kicker { margin-top: 0; }
.phase-cols .ticks { margin-top: 6px; }
.phase-figure { margin: 6px 0 0; align-self: center; }
.phase-figure img { width: 100%; height: auto; }
.phase-figure:not(.phase-figure-xv):not(.phase-figure-deploy) img:not(.shot-frame img) { filter: drop-shadow(0 22px 34px rgba(0,0,0,.7)); }
.phase-figure-deploy { display: flex; align-items: flex-end; justify-content: center; gap: 18px; }
.phase-figure-deploy img { width: auto; height: 220px; filter: drop-shadow(0 16px 24px rgba(0,0,0,.6)); }
.phase-figure-deploy img:last-child { height: 130px; }
.phase-figure-xv { --zs: .55; padding-top: 90px; }
.phase-figure-xv .xv-scene { perspective: 1200px; perspective-origin: 55% 40%; }
.phase-figure-xv .xv-stack { width: 88%; --p: .5; transform: rotateX(56deg) rotateZ(-26deg) scale(.85); }
.xv-static .xv-plate { --k: 1; }
@media (max-width: 900px) {
  .phase { grid-template-columns: 36px 1fr; }
  .phase-num { width: 36px; height: 36px; font-size: 12px; }
  .journey::before { left: 17px; }
  .phase-figure { grid-column: 2; }
  .phase-cols { grid-template-columns: 1fr; }
  .phase-figure-xv { min-height: 240px; }
}
.phase-figure-team img { filter: none !important; }
.phase-figure-team .sector-cap { margin-top: 6px; text-align: center; }

/* ---------- Platform: layers ---------- */
.layers { list-style: none; margin: 32px 0 8px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.layers li { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; display: grid; gap: 4px; }
.layer-num { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--brand-2); }
.layers b { font-size: .98rem; }
.layers span:last-child { font-size: .86rem; color: var(--muted); line-height: 1.45; }
.aside-device { width: 100%; height: auto; filter: drop-shadow(0 22px 34px rgba(0,0,0,.7)); }
.sector-wide { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
.sector .feature-grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 1000px) { .layers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .sector-wide { grid-template-columns: 1fr; } .sector .feature-grid { grid-template-columns: 1fr; } }
.art-row-pair { align-items: center; gap: 12px; }
.art-row-pair img { height: auto; max-height: 170px; width: auto; max-width: 58%; filter: drop-shadow(0 16px 24px rgba(0,0,0,.6)); }
.art-row-pair img:last-child { max-height: 150px; max-width: 38%; }

/* ---------- Products: family strip, placeholders, design to order ---------- */
.family-strip { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.family { display: grid; grid-template-rows: auto auto 1fr; gap: 4px; height: 100%; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; color: inherit; text-decoration: none; transition: border-color .16s; }
.family:hover { border-color: var(--brand-dim); color: inherit; }
.family-shot { display: grid; place-items: center; height: 140px; margin-bottom: 8px; border-radius: 8px; background: var(--bg); overflow: hidden; }
.family-shot img { max-height: 118px; max-width: 86%; width: auto; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,.55)); }
.family b { font-size: 1rem; }
.family span:last-child { font-size: .88rem; color: var(--muted); line-height: 1.45; }
@media (max-width: 900px) { .family-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .family-strip { grid-template-columns: 1fr; } }
.catalog-head { margin-top: 44px; scroll-margin-top: 80px; }
.catalog-title { font-size: 1.25rem; }
.no-shot { display: grid; gap: 8px; place-items: center; }
.no-shot svg { width: 44px; height: 44px; color: var(--brand-dim); }
.design-to-order { margin-top: 40px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px 40px; align-items: center; background: var(--panel); border: 1px solid var(--brand-dim); border-radius: var(--radius); padding: 24px 28px; }
.design-to-order h3 { font-size: 1.2rem; margin-bottom: 6px; }
.design-to-order p { color: var(--muted); font-size: .95rem; }
@media (max-width: 700px) { .design-to-order { grid-template-columns: 1fr; } }

/* ---------- Compliance ledger ---------- */
.ledger { margin: 36px 0 0; display: grid; }
.ledger > div { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 12px 40px; padding: 22px 0; border-top: 1px solid var(--line); scroll-margin-top: 80px; }
.ledger dt { display: grid; gap: 4px; align-content: start; font-size: 1.15rem; font-weight: 700; line-height: 1.25; }
.ledger dt .sector-kicker { margin-top: 0; }
.ledger dd { margin: 0; display: grid; gap: 12px; }
.ledger dd p { color: var(--muted); font-size: .97rem; }
.ledger dd .ticks { margin-top: 0; }
.creds { margin-top: 36px; }
@media (max-width: 800px) { .ledger > div { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .95fr); gap: 32px 48px; align-items: center; }
.about-figure { margin: 0; }
.about-figure img { width: 100%; height: auto; }
.belief { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }
.belief-motto { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; letter-spacing: -.01em; margin-bottom: 4px; }
.belief .grid { margin-top: 20px; }
.about-grid { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }
.about-h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
.facts-row { grid-template-columns: repeat(4, 1fr); margin-top: 28px; }
@media (max-width: 900px) { .about-hero { grid-template-columns: 1fr; } .facts-row { grid-template-columns: 1fr 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }
.quotes { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quotes blockquote { margin: 0; height: 100%; background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--brand); border-radius: var(--radius); padding: 20px 22px; display: grid; grid-template-rows: auto 1fr auto; gap: 12px; }
.quotes .quote-head { font-size: 1.05rem; font-weight: 600; line-height: 1.4; }
.quotes .quote-body { font-size: .92rem; color: var(--muted); line-height: 1.55; }
.quotes footer { display: grid; gap: 2px; font-size: .88rem; }
.quotes footer b { color: var(--ink); }
.quotes footer span { color: var(--muted); }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- Contact: selects, next steps ---------- */
.contact-form select {
  font: inherit; font-size: 14px; color: var(--ink); background: var(--panel); border: 1px solid var(--line);
  border-radius: 7px; padding: 9px 11px; width: 100%; appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.contact-form select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(99,102,241,.35); }
.contact-side { display: grid; gap: 16px; align-content: start; }
.next-steps { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.next-steps .sector-kicker { margin-top: 0; }
.steps-mini { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 10px; counter-reset: st; }
.steps-mini li { position: relative; padding-left: 28px; font-size: .92rem; color: var(--muted); line-height: 1.5; }
.steps-mini li::before { counter-increment: st; content: counter(st); position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--brand-dim); color: var(--brand-2); font-size: 11px; font-weight: 700; display: grid; place-items: center; }
.steps-mini b { color: var(--ink); }
.next-steps .note { margin-top: 12px; font-size: .84rem; }
/* The native dropdown list follows color-scheme, not the select's own styling. */
:root { color-scheme: dark; }
.contact-form select { color-scheme: dark; }
.contact-form option { background: var(--panel); color: var(--ink); }

/* ---------- www: two-family strip on /products/ ---------- */
.family-strip-2 { grid-template-columns: repeat(2, 1fr); }
.site-www .hero-visual figcaption { margin-top: 8px; font-size: .72rem; color: var(--dim); }
.site-www #console { margin-top: 40px; }
