:root {
  --bg: #070b0f;
  --bg-2: #0a1016;
  --panel: rgba(17, 25, 33, 0.78);
  --panel-solid: #101820;
  --panel-2: #131d27;
  --line: rgba(210, 224, 236, 0.13);
  --line-strong: rgba(210, 224, 236, 0.23);
  --text: #f2f5f7;
  --muted: #9aa8b5;
  --muted-2: #6e7b87;
  --brand: #7ec8ff;
  --brand-soft: rgba(126, 200, 255, 0.14);
  --instruments: #68b9ff;
  --tactical: #65d79a;
  --advanced: #a887ff;
  --success: #69d88d;
  --warning: #f4bd58;
  --radius: 18px;
  --radius-sm: 11px;
  --shadow: 0 20px 60px rgba(0,0,0,.28);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% -10%, rgba(126, 200, 255, .11), transparent 30%),
    radial-gradient(circle at 10% 18%, rgba(118, 143, 165, .06), transparent 22%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(126,200,255,.22); }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 82px 0; border-top: 1px solid var(--line); }
.section-tight { padding: 58px 0; border-top: 1px solid var(--line); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.neutral { color: #aeb9c3; }
.section-title { margin: 0; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.05; letter-spacing: -.04em; }
.section-lead { margin: 18px 0 0; color: var(--muted); max-width: 680px; font-size: 1.03rem; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 32px; }
.section-link { color: #c9d5df; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.section-link:hover { color: white; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 15, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 225px; }
.brand-mark {
  width: 44px;
  height: 34px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -.08em;
  font-size: 1.15rem;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(126,200,255,.04));
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.brand-copy { line-height: 1.02; }
.brand-copy strong { display: block; font-size: .96rem; letter-spacing: -.01em; }
.brand-copy span { display: block; color: var(--muted); font-size: .78rem; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: #aeb9c3; font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: white; }
.nav-links a[aria-current="page"] { position: relative; }
.nav-links a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -27px; height: 2px; background: var(--brand); }
.nav-cta { padding: 10px 15px; border: 1px solid var(--line-strong); border-radius: 8px; color: white !important; }
.menu-toggle { display: none; border: 1px solid var(--line); background: transparent; color: white; border-radius: 8px; width: 42px; height: 42px; }

.hero { min-height: 650px; display: grid; align-items: stretch; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; padding-top: 68px; padding-bottom: 68px; }
.hero h1 { margin: 0; font-size: clamp(3.25rem, 7vw, 6.3rem); max-width: 780px; line-height: .92; letter-spacing: -.065em; }
.hero h1 span { color: #aab6c1; }
.hero-copy { color: var(--muted); max-width: 650px; font-size: 1.08rem; margin: 25px 0 28px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 18px; border-radius: 9px; border: 1px solid var(--line-strong); font-weight: 750; font-size: .88rem; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.42); }
.btn.primary { background: #f1f5f8; color: #071019; border-color: #f1f5f8; }
.btn.secondary { background: rgba(255,255,255,.025); }
.hero-metrics { display: flex; gap: 26px; margin-top: 34px; color: #c5d0d9; }
.hero-metric { padding-right: 26px; border-right: 1px solid var(--line); }
.hero-metric:last-child { border: 0; }
.hero-metric strong { display: block; font-size: .86rem; }
.hero-metric span { color: var(--muted-2); font-size: .74rem; }

.hero-visual { position: relative; min-height: 500px; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(145deg,#101820 0%,#0b1015 52%,#101b25 100%); }
.hero-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero-orbit { position: absolute; width: 420px; height: 420px; border: 1px solid rgba(126,200,255,.22); border-radius: 50%; right: -95px; top: 38px; }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; border: 1px solid rgba(126,200,255,.1); border-radius: 50%; }
.hero-orbit::before { inset: 48px; }
.hero-orbit::after { inset: 104px; }
.hero-system-card { position: absolute; left: 38px; right: 38px; bottom: 36px; padding: 24px; background: rgba(5,9,13,.72); border: 1px solid var(--line-strong); border-radius: 16px; backdrop-filter: blur(10px); }
.system-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.system-id { display: flex; align-items: center; gap: 12px; }
.system-id .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 18px rgba(105,216,141,.55); }
.system-id strong { font-size: .83rem; letter-spacing: .12em; }
.system-state { color: var(--success); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.system-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.system-grid div { background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 10px; padding: 13px; }
.system-grid span { color: var(--muted-2); font-size: .66rem; letter-spacing: .11em; text-transform: uppercase; }
.system-grid strong { display: block; margin-top: 5px; font-size: .92rem; }
.hero-wordmark { position: absolute; left: 38px; top: 36px; }
.hero-wordmark .mono { font-size: 4.4rem; font-weight: 900; letter-spacing: -.1em; line-height: 1; }
.hero-wordmark p { color: var(--muted); font-size: .78rem; letter-spacing: .17em; text-transform: uppercase; margin: 7px 0 0; }

.what-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.capabilities { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.capability { padding: 24px; min-height: 155px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability:nth-child(2n) { border-right: 0; }
.capability:nth-last-child(-n+2) { border-bottom: 0; }
.capability .glyph { width: 34px; height: 34px; border: 1px solid var(--line-strong); border-radius: 9px; display: grid; place-items: center; color: var(--brand); margin-bottom: 18px; }
.capability strong { display: block; }
.capability span { color: var(--muted); font-size: .86rem; }

.division-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.division-card { position: relative; min-height: 275px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); overflow: hidden; }
.division-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); }
.division-card::after { content: ""; position: absolute; width: 170px; height: 170px; border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent); border-radius: 50%; right: -70px; bottom: -70px; }
.division-card.instruments { --accent: var(--instruments); }
.division-card.tactical { --accent: var(--tactical); }
.division-card.advanced { --accent: var(--advanced); }
.division-symbol { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); color: var(--accent); font-weight: 850; margin-bottom: 26px; }
.division-card h3 { margin: 0; font-size: 1.35rem; }
.division-tag { color: var(--accent); font-size: .69rem; letter-spacing: .14em; font-weight: 800; text-transform: uppercase; margin-top: 6px; }
.division-card p { color: var(--muted); font-size: .9rem; max-width: 320px; }
.card-arrow { position: absolute; bottom: 25px; right: 25px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; }
.division-card:hover { border-color: color-mix(in srgb, var(--accent) 44%, var(--line)); }

.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.018); overflow: hidden; }
.product-art { min-height: 220px; position: relative; border-bottom: 1px solid var(--line); background: #0c1319; overflow: hidden; }
.product-art.aux { background: radial-gradient(circle at 75% 25%, rgba(104,185,255,.17), transparent 28%), linear-gradient(145deg,#0d151c,#081015); }
.product-art.pushback { background: radial-gradient(circle at 65% 30%, rgba(244,189,88,.09), transparent 30%), linear-gradient(145deg,#161713,#0b1014); }
.gauges { position: absolute; inset: 0; display: flex; justify-content: center; align-items: center; gap: 22px; }
.gauge { width: 112px; height: 112px; border: 8px solid rgba(255,255,255,.055); border-top-color: var(--instruments); border-right-color: var(--instruments); border-radius: 50%; display: grid; place-items: center; transform: rotate(20deg); }
.gauge > div { transform: rotate(-20deg); text-align: center; }
.gauge strong { display: block; font-size: 1.15rem; }
.gauge span { color: var(--muted); font-size: .66rem; letter-spacing: .1em; }
.tug-art { position: absolute; inset: 0; }
.runway { position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: linear-gradient(#242a2e,#11171b); }
.runway::after { content: ""; position: absolute; left: 10%; right: 10%; top: 48%; height: 3px; background: repeating-linear-gradient(90deg,rgba(255,255,255,.55) 0 35px,transparent 35px 62px); }
.tug-body { position: absolute; width: 180px; height: 70px; background: linear-gradient(#d6d9d9,#838b90); bottom: 78px; left: 50%; transform: translateX(-50%); clip-path: polygon(12% 10%,80% 10%,100% 48%,88% 90%,6% 90%,0 55%); }
.tug-cab { position: absolute; width: 62px; height: 45px; background: #b9c1c4; bottom: 132px; left: 54%; clip-path: polygon(10% 0,82% 0,100% 100%,0 100%); }
.tug-wheel { position: absolute; width: 28px; height: 28px; border-radius: 50%; background: #06090b; bottom: 66px; }
.tug-wheel.w1 { left: calc(50% - 72px); } .tug-wheel.w2 { right: calc(50% - 72px); }
.product-body { padding: 24px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: #c9d3db; font-size: .7rem; }
.badge.instruments { color: var(--instruments); border-color: rgba(104,185,255,.26); background: rgba(104,185,255,.06); }
.product-card h3 { margin: 0; font-size: 1.5rem; }
.product-card p { color: var(--muted); margin: 10px 0 21px; min-height: 45px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 15px; padding-top: 18px; border-top: 1px solid var(--line); }
.status { display: inline-flex; align-items: center; gap: 8px; color: #d3dce3; font-size: .78rem; font-weight: 750; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--status); box-shadow: 0 0 12px color-mix(in srgb, var(--status) 50%, transparent); }
.status.published { --status: var(--success); }
.status.development { --status: var(--warning); }
.text-link { font-size: .78rem; font-weight: 800; color: #dbe6ee; }

.store-gateway { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(120deg, rgba(126,200,255,.04), rgba(255,255,255,.012)); }
.store-gateway h2 { margin: 0; font-size: 2rem; letter-spacing: -.03em; }
.store-gateway p { color: var(--muted); }
.filter-preview { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.filter-preview div { border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.filter-preview span { display: block; color: var(--muted-2); font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; }
.filter-preview strong { display: block; margin-top: 5px; font-size: .82rem; }

.page-hero { padding: 96px 0 66px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 0; font-size: clamp(3rem, 7vw, 5.6rem); line-height: .95; letter-spacing: -.06em; max-width: 900px; }
.page-hero p { color: var(--muted); max-width: 720px; margin: 22px 0 0; font-size: 1.08rem; }
.page-hero[data-accent="instruments"] .eyebrow { color: var(--instruments); }
.page-hero[data-accent="tactical"] .eyebrow { color: var(--tactical); }
.page-hero[data-accent="advanced"] .eyebrow { color: var(--advanced); }

.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.info-card { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; background: rgba(255,255,255,.016); }
.info-card .label { color: var(--muted-2); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.info-card strong { display: block; margin-top: 8px; font-size: 1.05rem; }
.info-card p { margin: 8px 0 0; color: var(--muted); font-size: .86rem; }

.catalog-toolbar { display: grid; grid-template-columns: 1fr repeat(3,180px); gap: 10px; margin-bottom: 24px; }
.catalog-toolbar input, .catalog-toolbar select { width: 100%; min-height: 44px; border-radius: 9px; border: 1px solid var(--line); background: #0b1117; color: white; padding: 0 12px; outline: none; }
.catalog-toolbar input:focus, .catalog-toolbar select:focus { border-color: rgba(126,200,255,.55); }
.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.catalog-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: rgba(255,255,255,.017); }
.catalog-item h3 { margin: 15px 0 6px; }
.catalog-item p { color: var(--muted); font-size: .88rem; min-height: 68px; }
.catalog-item[hidden] { display: none; }

.product-hero-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 54px; align-items: center; }
.product-kicker { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.product-facts { margin-top: 28px; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.product-facts div { border-top: 1px solid var(--line); padding-top: 12px; }
.product-facts span { display: block; color: var(--muted-2); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.product-facts strong { display: block; margin-top: 4px; font-size: .9rem; }
.feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 28px; }
.feature-item { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.feature-item strong { display: block; }
.feature-item span { color: var(--muted); font-size: .84rem; }
.notice { padding: 16px 18px; border: 1px solid rgba(244,189,88,.24); background: rgba(244,189,88,.05); color: #e9d7b3; border-radius: 10px; font-size: .88rem; }

.site-footer { border-top: 1px solid var(--line); padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,.55fr); gap: 40px; }
.footer-brand p { color: var(--muted); max-width: 340px; font-size: .86rem; }
.footer-col strong { display: block; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: .82rem; margin: 8px 0; }
.footer-col a:hover { color: white; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted-2); font-size: .72rem; }

@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 66px; padding: 18px; flex-direction: column; align-items: stretch; background: #0b1117; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .menu-toggle { display: block; }
  .hero .container, .what-grid, .store-gateway, .product-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .division-grid, .catalog-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .catalog-toolbar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 60px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .hero { min-height: 0; }
  .hero .container { padding-top: 50px; padding-bottom: 50px; gap: 38px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-metrics { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .hero-metric { border-right: 0; padding-right: 0; }
  .hero-visual { min-height: 390px; }
  .hero-system-card { left: 18px; right: 18px; bottom: 18px; padding: 18px; }
  .hero-wordmark { left: 22px; top: 25px; }
  .hero-wordmark .mono { font-size: 3.4rem; }
  .system-grid { grid-template-columns: 1fr; }
  .system-grid div:nth-child(n+3) { display: none; }
  .capabilities, .info-grid, .feature-list { grid-template-columns: 1fr; }
  .capability { border-right: 0 !important; }
  .capability:not(:last-child) { border-bottom: 1px solid var(--line) !important; }
  .filter-preview, .product-facts { grid-template-columns: 1fr; }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .gauges { gap: 8px; }
  .gauge { width: 88px; height: 88px; border-width: 6px; }
}

/* v0.2 refinement layer ---------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: #f1f5f8;
  color: #071019;
  font-weight: 800;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header { box-shadow: 0 1px 0 rgba(255,255,255,.012); }
.nav-cta { background: rgba(255,255,255,.025); }
.nav-cta:hover { background: rgba(255,255,255,.06); }

.hero {
  min-height: 690px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 96px 96px;
}
.hero .container { grid-template-columns: 1.06fr .94fr; gap: 64px; }
.hero-copy-block { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(3.3rem, 6.35vw, 6rem);
  line-height: .96;
  max-width: 760px;
}
.hero h1 span {
  display: block;
  color: #aeb9c3;
  font-weight: 625;
}
.hero-copy { max-width: 610px; font-size: 1.12rem; }
.hero-metrics { margin-top: 38px; }
.hero-metric strong { color: #e8edf1; }
.hero-metric span { margin-top: 3px; display: block; }

.hero-visual {
  min-height: 520px;
  background:
    radial-gradient(circle at 74% 18%, rgba(126,200,255,.12), transparent 23%),
    linear-gradient(145deg,#101820 0%,#0b1015 52%,#0e1821 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 93%);
}
.portfolio-trace { position: absolute; inset: 0; opacity: .72; }
.trace-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: #0b1117;
  box-shadow: 0 0 0 7px rgba(126,200,255,.04);
}
.trace-dot.one { right: 93px; top: 82px; }
.trace-dot.two { right: 170px; top: 180px; }
.trace-dot.three { right: 86px; top: 252px; }
.trace-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(126,200,255,.5), rgba(126,200,255,.1));
}
.trace-line.a { width: 126px; right: 82px; top: 128px; transform: rotate(128deg); }
.trace-line.b { width: 104px; right: 125px; top: 210px; transform: rotate(39deg); }
.hero-system-card { bottom: 32px; }
.portfolio-rows { display: grid; gap: 8px; }
.portfolio-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.023);
}
.portfolio-code {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.portfolio-code.instruments { color: var(--instruments); }
.portfolio-code.tactical { color: var(--tactical); }
.portfolio-code.advanced { color: var(--advanced); }
.portfolio-row strong { display: block; font-size: .84rem; }
.portfolio-row small { display: block; color: var(--muted-2); margin-top: 1px; font-size: .69rem; }
.portfolio-row b { color: #8997a4; font-size: .62rem; letter-spacing: .12em; }
.portfolio-row:first-child b { color: var(--success); }

.principles-bar { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.principles-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.principles-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
  color: #bcc7d0;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .68rem;
  font-weight: 800;
}
.principles-grid span:first-child { padding-left: 0; }
.principles-grid span:last-child { border-right: 0; }
.principles-grid b { color: var(--muted-2); font-size: .62rem; }

.division-card,
.product-card,
.info-card,
.catalog-item,
.feature-item {
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.division-card:hover,
.product-card:hover,
.catalog-item:hover {
  transform: translateY(-2px);
  background-color: rgba(255,255,255,.026);
}
.featured-product .product-art { min-height: 236px; }

.footer-bottom span:last-child { text-transform: uppercase; letter-spacing: .08em; }

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

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: repeat(2,1fr); }
  .principles-grid span:nth-child(2) { border-right: 0; }
  .principles-grid span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .principles-grid span:first-child, .principles-grid span:nth-child(3) { padding-left: 20px; }
}

@media (max-width: 640px) {
  .hero h1 span { display: inline; }
  .hero-visual { min-height: 470px; }
  .portfolio-row { grid-template-columns: 34px 1fr; }
  .portfolio-row b { grid-column: 2; }
  .trace-dot, .trace-line { opacity: .55; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid span { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0 !important; }
  .principles-grid span:last-child { border-bottom: 0; }
}

/* v0.3 hero scale correction ------------------------------------------------ */
/* Keep the opening statement confident, but let the rest of the homepage
   enter the viewport sooner. The parent brand should read as a technology
   company, not an editorial poster. */
.hero {
  min-height: 610px;
}
.hero .container {
  grid-template-columns: .98fr 1.02fr;
  gap: 54px;
  padding-top: 62px;
  padding-bottom: 62px;
}
.hero h1 {
  font-size: clamp(2.85rem, 4.8vw, 4.7rem);
  line-height: .99;
  letter-spacing: -.052em;
  max-width: 660px;
}
.hero h1 span {
  display: inline;
  font-weight: 620;
  color: #aeb9c3;
}
.hero-copy {
  max-width: 590px;
  margin-top: 22px;
  margin-bottom: 26px;
  font-size: 1.04rem;
}
.hero-metrics {
  margin-top: 32px;
  gap: 22px;
}
.hero-metric {
  padding-right: 22px;
}
.hero-visual {
  min-height: 470px;
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
  }
  .hero .container {
    gap: 44px;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .hero-copy-block {
    max-width: 780px;
  }
  .hero h1 {
    font-size: clamp(3rem, 7.2vw, 4.25rem);
    line-height: 1;
    max-width: 760px;
  }
  .hero-copy {
    max-width: 660px;
  }
  .hero-visual {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .hero .container {
    padding-top: 44px;
    padding-bottom: 44px;
    gap: 34px;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.55rem);
    line-height: 1.01;
    letter-spacing: -.045em;
  }
  .hero-copy {
    font-size: 1rem;
    margin-top: 20px;
  }
  .hero-visual {
    min-height: 430px;
  }
}

/* v0.4 hero visual balance -------------------------------------------------- */
/* The right side now behaves like a restrained portfolio diagram rather than
   a second oversized content panel. It remains neutral at the parent-brand
   level and collapses cleanly before it becomes cramped. */
.hero .container {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: 52px;
}
.hero-copy-block,
.hero-visual {
  min-width: 0;
}
.hero-visual {
  width: 100%;
  max-width: 510px;
  min-height: 450px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  padding: 28px;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 12%, rgba(126,200,255,.13), transparent 27%),
    radial-gradient(circle at 22% 84%, rgba(167,123,255,.055), transparent 24%),
    linear-gradient(145deg,#101820 0%,#0a1015 57%,#0d171f 100%);
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -92px;
  top: 56px;
  border: 1px solid rgba(126,200,255,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(126,200,255,.025),
    0 0 0 88px rgba(126,200,255,.014);
  pointer-events: none;
  z-index: -1;
}
.hero-grid-lines {
  z-index: -2;
  opacity: .74;
}
.hero-visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #9eabb6;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-system-index {
  color: var(--brand);
  padding: 6px 8px;
  border: 1px solid rgba(126,200,255,.22);
  border-radius: 7px;
  background: rgba(126,200,255,.035);
  white-space: nowrap;
}
.hero-visual-core {
  flex: 1;
  display: grid;
  grid-template-columns: 132px minmax(0,1fr);
  gap: 20px;
  align-items: center;
  padding: 34px 0 28px;
}
.portfolio-count {
  position: relative;
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.portfolio-count::before {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(126,200,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(126,200,255,.018);
}
.portfolio-count strong {
  position: relative;
  font-size: 4.5rem;
  line-height: .85;
  letter-spacing: -.085em;
  color: #edf2f5;
}
.portfolio-count span {
  position: relative;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}
.portfolio-lanes {
  display: grid;
  gap: 10px;
}
.portfolio-lane {
  --lane: var(--brand);
  display: grid;
  grid-template-columns: 36px minmax(0,1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 72px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-left-color: color-mix(in srgb, var(--lane) 58%, transparent);
  border-radius: 11px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--lane) 6%, transparent), rgba(255,255,255,.016) 48%);
}
.portfolio-lane.instruments { --lane: var(--instruments); }
.portfolio-lane.tactical { --lane: var(--tactical); }
.portfolio-lane.advanced { --lane: var(--advanced); }
.portfolio-lane strong {
  display: block;
  font-size: .8rem;
  line-height: 1.2;
}
.portfolio-lane small {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: .63rem;
  line-height: 1.25;
}
.portfolio-lane b {
  color: #7f8c97;
  font-size: .56rem;
  letter-spacing: .1em;
  text-align: right;
}
.portfolio-lane:first-child b { color: var(--success); }
.portfolio-code {
  width: 34px;
  height: 34px;
  font-size: .65rem;
  border-radius: 8px;
  background: rgba(5,9,13,.42);
}
.hero-visual-footer {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  padding-top: 17px;
  color: #9aa7b2;
  font-size: .59rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-visual-footer span {
  min-width: 0;
  padding-right: 12px;
}
.hero-visual-footer span + span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.hero-visual-footer b {
  color: #dce4ea;
  margin-right: 4px;
}

@media (max-width: 1120px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-copy-block {
    max-width: 790px;
  }
  .hero-visual {
    justify-self: stretch;
    max-width: none;
    min-height: 390px;
  }
  .hero-visual-core {
    grid-template-columns: 150px minmax(0,1fr);
  }
}

@media (max-width: 640px) {
  .hero-visual {
    min-height: 0;
    padding: 20px;
  }
  .hero-visual-core {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 0 20px;
  }
  .portfolio-count {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  .portfolio-count::before {
    width: 90px;
    height: 90px;
    left: auto;
    right: 0;
  }
  .portfolio-count strong {
    font-size: 3.65rem;
  }
  .portfolio-lane {
    grid-template-columns: 34px minmax(0,1fr);
  }
  .portfolio-lane b {
    grid-column: 2;
    text-align: left;
    margin-top: -5px;
  }
  .hero-visual-footer {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-visual-footer span,
  .hero-visual-footer span + span {
    padding: 0;
    border: 0;
  }
}

/* v0.5 hero network rework -------------------------------------------------- */
/* Make the visual shift unmistakable: remove the framed "dashboard card"
   treatment and replace it with a lighter portfolio network composition that
   sits directly in the hero field. */
.hero .container {
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  gap: 68px;
}
.hero-network {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 470px;
  justify-self: end;
  overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  isolation: isolate;
}
.hero-network::before {
  content: "";
  position: absolute;
  inset: 12px -42px 10px 24px;
  z-index: -3;
  background:
    radial-gradient(circle at 54% 46%, rgba(126,200,255,.08), transparent 27%),
    linear-gradient(90deg, transparent 0 8%, rgba(126,200,255,.025) 8% 8.25%, transparent 8.25% 100%);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 92%, transparent);
}
.hero-network .hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 60% 50%, #000 0 42%, transparent 78%);
}
.network-header {
  position: absolute;
  left: 8px;
  right: 0;
  top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8f9ca7;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.network-watermark {
  position: absolute;
  left: 0;
  top: 78px;
  color: rgba(234,241,246,.055);
  font-size: 9.5rem;
  font-weight: 900;
  letter-spacing: -.12em;
  line-height: .82;
  user-select: none;
}
.network-orbit {
  position: absolute;
  left: 54px;
  top: 104px;
  width: 236px;
  height: 236px;
  border: 1px solid rgba(126,200,255,.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(126,200,255,.018),
    0 0 0 72px rgba(126,200,255,.009);
}
.network-orbit::before,
.network-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.network-orbit::before {
  inset: 52px;
  border: 1px dashed rgba(126,200,255,.18);
}
.network-orbit::after {
  width: 8px;
  height: 8px;
  right: 30px;
  top: 45px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(126,200,255,.45);
}
.network-core {
  position: absolute;
  left: 72px;
  top: 165px;
  width: 150px;
  z-index: 2;
}
.network-core-label {
  display: block;
  color: #9eabb6;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.network-core strong {
  display: block;
  margin-top: 8px;
  color: #eff4f7;
  font-size: 4.8rem;
  line-height: .82;
  letter-spacing: -.08em;
}
.network-core small {
  display: block;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: .68rem;
  line-height: 1.45;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.network-node {
  --node: var(--brand);
  position: absolute;
  right: 0;
  width: 310px;
  min-height: 72px;
  display: grid;
  grid-template-columns: 38px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-top: 1px solid rgba(255,255,255,.105);
  border-bottom: 1px solid rgba(255,255,255,.055);
  background: linear-gradient(90deg, rgba(7,11,15,.26), rgba(7,11,15,.74) 30%, rgba(7,11,15,.88));
  backdrop-filter: blur(8px);
}
.network-node::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 118px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--node) 48%, transparent));
}
.network-node::after {
  content: "";
  position: absolute;
  right: calc(100% + 112px);
  top: calc(50% - 3px);
  width: 7px;
  height: 7px;
  border: 1px solid color-mix(in srgb, var(--node) 70%, white 0%);
  background: #081015;
  border-radius: 50%;
  box-shadow: 0 0 14px color-mix(in srgb, var(--node) 38%, transparent);
}
.node-instruments { --node: var(--instruments); top: 94px; }
.node-tactical { --node: var(--tactical); top: 196px; }
.node-advanced { --node: var(--advanced); top: 298px; }
.network-node-code {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--node) 68%, transparent);
  border-radius: 8px;
  color: var(--node);
  background: color-mix(in srgb, var(--node) 5%, #071019);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .05em;
}
.network-node strong {
  display: block;
  font-size: .82rem;
  line-height: 1.15;
}
.network-node small {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-size: .62rem;
  line-height: 1.25;
}
.network-node b {
  color: #76838f;
  font-size: .55rem;
  letter-spacing: .1em;
}
.node-instruments b { color: var(--success); }
.network-footer {
  position: absolute;
  left: 8px;
  right: 0;
  bottom: 8px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #8f9ca7;
  font-size: .58rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.network-footer span + span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.network-footer b {
  color: #dce5eb;
  margin-right: 5px;
}

@media (max-width: 1180px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-copy-block { max-width: 790px; }
  .hero-network {
    justify-self: stretch;
    max-width: 760px;
    min-height: 430px;
  }
  .network-node { width: min(360px, 52vw); }
}

@media (max-width: 700px) {
  .hero-network {
    min-height: 500px;
  }
  .network-header {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }
  .network-watermark,
  .network-orbit,
  .network-core {
    display: none;
  }
  .network-node {
    position: relative;
    top: auto !important;
    right: auto;
    width: 100%;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-left-color: color-mix(in srgb, var(--node) 55%, transparent);
    border-radius: 10px;
  }
  .network-node::before,
  .network-node::after { display: none; }
  .network-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 22px;
  }
}

/* v0.6 division card refinement -------------------------------------------- */
/* Lock the v0.5 hero direction and bring the division cards up to the same
   visual standard without turning the parent site into three separate themes. */
.division-grid {
  gap: 18px;
}
.division-card {
  min-height: 330px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  background:
    radial-gradient(circle at 90% 8%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 28%),
    linear-gradient(155deg, rgba(255,255,255,.032), rgba(255,255,255,.012));
}
.division-card::before {
  left: 24px;
  right: 24px;
  width: auto;
  height: 1px;
  opacity: .78;
}
.division-card::after { display: none; }
.division-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}
.division-symbol {
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 5%, #091017);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.018);
}
.division-index {
  color: #778692;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.division-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.45rem;
  letter-spacing: -.025em;
}
.division-tag {
  position: relative;
  z-index: 2;
  margin-top: 7px;
}
.division-card p {
  position: relative;
  z-index: 2;
  max-width: 335px;
  margin: 18px 0 24px;
  line-height: 1.55;
}
.division-card-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: #778692;
  font-size: .6rem;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.division-card-bottom > span:first-child {
  display: grid;
  gap: 4px;
}
.division-card-bottom b {
  color: #c6d0d8;
  font-size: .68rem;
  letter-spacing: .03em;
  text-transform: none;
}
.card-arrow {
  position: static;
  width: auto;
  height: auto;
  display: inline-block;
  border: 0;
  border-radius: 0;
  color: var(--accent);
  white-space: nowrap;
}
.division-graphic {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}
/* Instruments: restrained circular / instrument geometry. */
.division-card.instruments .division-graphic {
  width: 150px;
  height: 150px;
  right: -22px;
  top: 48px;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, transparent);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 32px rgba(104,185,255,.012),
    0 0 0 30px rgba(104,185,255,.006);
}
.division-card.instruments .division-graphic::before,
.division-card.instruments .division-graphic::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  transform: translate(-50%,-50%);
}
.division-card.instruments .division-graphic::before { width: 1px; height: 112px; }
.division-card.instruments .division-graphic::after { width: 112px; height: 1px; }
/* Tactical: angular, operational geometry rather than cockpit circles. */
.division-card.tactical .division-graphic {
  width: 126px;
  height: 126px;
  right: -12px;
  top: 58px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  transform: rotate(45deg);
  box-shadow:
    inset 0 0 0 28px rgba(83,216,146,.01),
    0 0 0 26px rgba(83,216,146,.005);
}
.division-card.tactical .division-graphic::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed color-mix(in srgb, var(--accent) 20%, transparent);
}
/* Advanced: nested future-tech frame geometry. */
.division-card.advanced .division-graphic {
  width: 142px;
  height: 142px;
  right: -18px;
  top: 52px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  clip-path: polygon(25% 0,75% 0,100% 25%,100% 75%,75% 100%,25% 100%,0 75%,0 25%);
}
.division-card.advanced .division-graphic::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  clip-path: inherit;
}
.division-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  background:
    radial-gradient(circle at 90% 8%, color-mix(in srgb, var(--accent) 11%, transparent), transparent 31%),
    linear-gradient(155deg, rgba(255,255,255,.038), rgba(255,255,255,.014));
}
.division-card:hover .division-graphic { opacity: .78; }

@media (max-width: 980px) {
  .division-card { min-height: 300px; }
}

@media (max-width: 640px) {
  .division-card { min-height: 0; padding: 22px; }
  .division-card-top { margin-bottom: 24px; }
  .division-card p { max-width: none; }
  .division-graphic { opacity: .38; transform: scale(.85); transform-origin: top right; }
  .division-card.tactical .division-graphic { transform: rotate(45deg) scale(.85); }
  .division-card-bottom { align-items: center; }
}

/* v0.7 dedicated divisions page refinement -------------------------------- */
.division-overview-hero {
  padding: 84px 0 72px;
}
.division-overview-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr);
  gap: 78px;
  align-items: end;
}
.division-overview-hero h1 {
  max-width: 860px;
}
.division-overview-readout {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}
.division-overview-readout > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}
.division-overview-readout > div:last-child { border-bottom: 0; }
.division-overview-readout strong {
  color: #f4f7f9;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -.04em;
}
.division-overview-readout span {
  color: #82909b;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.division-overview-section {
  padding-top: 72px;
}
.division-overview-head {
  margin-bottom: 38px;
}
.division-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.division-overview-card {
  --accent: var(--muted);
  position: relative;
  min-height: 540px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 32%),
    linear-gradient(155deg, rgba(255,255,255,.032), rgba(255,255,255,.011));
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.division-overview-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: var(--accent);
  opacity: .82;
}
.division-overview-card.instruments { --accent: var(--instruments); }
.division-overview-card.tactical { --accent: var(--tactical); }
.division-overview-card.advanced { --accent: var(--advanced); }
.division-overview-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}
.division-overview-card .division-symbol {
  margin: 0;
}
.division-overview-card .division-tag {
  margin: 0 0 9px;
}
.division-overview-card h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 330px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.division-overview-copy {
  position: relative;
  z-index: 2;
  margin: 22px 0 30px;
  color: var(--muted);
  line-height: 1.6;
  font-size: .94rem;
  max-width: 345px;
}
.division-overview-meta {
  position: relative;
  z-index: 2;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.division-overview-meta > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.division-overview-meta > div:last-child { border-bottom: 0; }
.division-overview-meta dt {
  color: #74838f;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.division-overview-meta dd {
  margin: 0;
  color: #c7d1d9;
  font-size: .72rem;
  font-weight: 700;
}
.division-overview-cta {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 22px;
  color: var(--accent);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.division-overview-graphic {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .46;
}
.division-overview-card.instruments .division-overview-graphic {
  width: 188px;
  height: 188px;
  right: -46px;
  top: 84px;
  border: 1px solid color-mix(in srgb, var(--accent) 17%, transparent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 44px rgba(104,185,255,.009);
}
.division-overview-card.instruments .division-overview-graphic::before,
.division-overview-card.instruments .division-overview-graphic::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  transform: translate(-50%,-50%);
}
.division-overview-card.instruments .division-overview-graphic::before { width: 1px; height: 142px; }
.division-overview-card.instruments .division-overview-graphic::after { width: 142px; height: 1px; }
.division-overview-card.tactical .division-overview-graphic {
  width: 150px;
  height: 150px;
  right: -20px;
  top: 106px;
  border: 1px solid color-mix(in srgb, var(--accent) 19%, transparent);
  transform: rotate(45deg);
}
.division-overview-card.tactical .division-overview-graphic::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px dashed color-mix(in srgb, var(--accent) 20%, transparent);
}
.division-overview-card.advanced .division-overview-graphic {
  width: 174px;
  height: 174px;
  right: -36px;
  top: 90px;
  border: 1px solid color-mix(in srgb, var(--accent) 19%, transparent);
  clip-path: polygon(25% 0,75% 0,100% 25%,100% 75%,75% 100%,25% 100%,0 75%,0 25%);
}
.division-overview-card.advanced .division-overview-graphic::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid color-mix(in srgb, var(--accent) 21%, transparent);
  clip-path: inherit;
}
.division-overview-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 34%),
    linear-gradient(155deg, rgba(255,255,255,.038), rgba(255,255,255,.014));
}
.division-overview-card:hover .division-overview-graphic { opacity: .7; }

@media (max-width: 1080px) {
  .division-overview-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .division-overview-readout {
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .division-overview-readout > div {
    grid-template-columns: auto;
    gap: 7px;
    padding: 16px 18px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .division-overview-readout > div:last-child { border-right: 0; }
  .division-overview-grid { grid-template-columns: 1fr; }
  .division-overview-card { min-height: 0; }
  .division-overview-copy { max-width: 650px; }
}

@media (max-width: 640px) {
  .division-overview-hero { padding: 68px 0 52px; }
  .division-overview-readout { grid-template-columns: 1fr; }
  .division-overview-readout > div {
    grid-template-columns: 58px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .division-overview-readout > div:last-child { border-bottom: 0; }
  .division-overview-card { padding: 22px; }
  .division-overview-card::before { left: 22px; right: 22px; }
  .division-overview-card-top { margin-bottom: 34px; }
  .division-overview-meta > div { grid-template-columns: 96px 1fr; }
  .division-overview-graphic { opacity: .32; transform-origin: top right; }
  .division-overview-card.tactical .division-overview-graphic { transform: rotate(45deg) scale(.84); }
}

/* v0.8 — Featured product refinement */
.featured-products-section { position: relative; }
.featured-products-head { align-items: end; }
.featured-products-head .section-lead { max-width: 720px; margin-top: 14px; }
.featured-products-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.featured-product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.032), rgba(255,255,255,.012));
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.featured-product-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: var(--instruments); z-index: 3; opacity: .85; }
.featured-product-card:hover { transform: translateY(-2px); border-color: rgba(104,185,255,.28); }
.featured-product-visual {
  position: relative;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    #091016;
  background-size: 36px 36px;
}
.featured-product-visual::after { content: ""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(104,185,255,.12); border-radius: 50%; right: -110px; top: -110px; }
.product-visual-topline { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 16px; color: #8293a1; font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.visual-state { display: inline-flex; align-items: center; gap: 7px; }
.visual-state::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.visual-state.live { color: var(--success); }
.visual-state.development { color: var(--warning); }
.visual-caption { position: absolute; z-index: 2; left: 24px; bottom: 18px; color: #5f6e7b; font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; }

.aux-preview { background-color: #071019; background-image: radial-gradient(circle at 72% 25%, rgba(104,185,255,.13), transparent 31%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); }
.aux-screen { position: absolute; z-index: 2; left: 50%; top: 54%; width: min(82%, 470px); transform: translate(-50%,-50%); border: 1px solid rgba(104,185,255,.32); background: rgba(4,10,15,.9); box-shadow: 0 20px 50px rgba(0,0,0,.34), inset 0 0 30px rgba(104,185,255,.025); }
.aux-screen-head, .aux-screen-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 12px; color: #6f8799; font-size: .57rem; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid rgba(104,185,255,.16); }
.aux-screen-head strong { color: #cfe9fb; font-size: .64rem; }
.aux-status-row { display: flex; align-items: center; justify-content: space-between; padding: 12px; border-bottom: 1px solid rgba(104,185,255,.16); color: #70879a; font-size: .61rem; letter-spacing: .13em; }
.aux-status-row strong { color: var(--success); font-size: .69rem; }
.aux-readout-grid { display: grid; grid-template-columns: repeat(2,1fr); }
.aux-readout-grid div { position: relative; min-height: 70px; padding: 12px; border-right: 1px solid rgba(104,185,255,.13); border-bottom: 1px solid rgba(104,185,255,.13); }
.aux-readout-grid div:nth-child(2n) { border-right: 0; }
.aux-readout-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.aux-readout-grid span { display: block; color: var(--instruments); font-size: .65rem; font-weight: 850; letter-spacing: .12em; }
.aux-readout-grid b { display: block; margin-top: 7px; color: #b8c4ce; font-size: .58rem; letter-spacing: .09em; }
.aux-readout-grid i { position: absolute; left: 12px; right: 12px; bottom: 11px; height: 2px; background: linear-gradient(90deg, var(--instruments) 0 64%, rgba(104,185,255,.12) 64%); }
.aux-screen-foot { border-top: 1px solid rgba(104,185,255,.16); border-bottom: 0; }

.pushback-preview { background-color: #0b0f12; background-image: radial-gradient(circle at 66% 28%, rgba(244,189,88,.08), transparent 30%), linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); }
.pushback-stage { position: absolute; z-index: 2; inset: 54px 24px 42px; }
.pushback-panel { position: absolute; left: 0; top: 16px; width: 58%; min-width: 260px; border: 1px solid rgba(210,224,236,.2); background: rgba(5,9,12,.9); box-shadow: 0 18px 42px rgba(0,0,0,.3); }
.pushback-panel-head { display: flex; justify-content: space-between; gap: 10px; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: .57rem; letter-spacing: .11em; text-transform: uppercase; color: #7d8a94; }
.pushback-panel-head strong { color: #d8e0e6; }
.pushback-panel-status { padding: 16px 12px 12px; }
.pushback-panel-status span, .pushback-control span { display: block; color: #6f7d88; font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; }
.pushback-panel-status b { display: block; color: var(--warning); margin-top: 4px; font-size: .7rem; letter-spacing: .08em; }
.pushback-control { margin: 0 12px 12px; padding: 12px; border: 1px solid rgba(104,185,255,.2); background: rgba(104,185,255,.035); }
.pushback-control strong { display: block; margin-top: 5px; color: #dbeeff; font-size: .75rem; letter-spacing: .06em; }
.tug-line-art { position: absolute; right: 4%; bottom: 18px; width: 42%; height: 118px; opacity: .88; }
.tug-body-line { position: absolute; left: 18%; right: 8%; bottom: 34px; height: 42px; border: 1px solid rgba(199,211,220,.48); border-radius: 5px 15px 5px 5px; transform: skewX(-8deg); }
.tug-cab-line { position: absolute; right: 15%; bottom: 75px; width: 42%; height: 30px; border: 1px solid rgba(199,211,220,.48); border-bottom: 0; clip-path: polygon(20% 0, 84% 0, 100% 100%, 0 100%); }
.tug-wheel-line { position: absolute; bottom: 20px; width: 26px; height: 26px; border: 2px solid rgba(199,211,220,.6); border-radius: 50%; background: #080c0f; }
.tug-wheel-line.left { left: 27%; } .tug-wheel-line.right { right: 16%; }
.tow-line { position: absolute; left: -32%; bottom: 52px; width: 54%; height: 1px; background: linear-gradient(90deg, rgba(104,185,255,.12), rgba(104,185,255,.68)); transform: rotate(-6deg); transform-origin: right center; }
.tow-line::before { content: ""; position: absolute; left: 0; top: -3px; width: 7px; height: 7px; border: 1px solid var(--instruments); border-radius: 50%; }

.featured-product-content { padding: 26px; }
.product-overline { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 15px; color: #738493; font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.featured-product-content .product-meta { margin-bottom: 16px; }
.featured-product-content h3 { margin: 0; font-size: clamp(1.7rem, 2.6vw, 2.2rem); line-height: 1.05; letter-spacing: -.035em; }
.featured-product-content > p { min-height: 82px; margin: 13px 0 22px; color: var(--muted); font-size: .94rem; }
.featured-product-facts { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.featured-product-facts div { min-width: 0; padding: 14px 12px; border-right: 1px solid var(--line); }
.featured-product-facts div:first-child { padding-left: 0; }
.featured-product-facts div:last-child { border-right: 0; padding-right: 0; }
.featured-product-facts span { display: block; color: var(--muted-2); font-size: .58rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.featured-product-facts strong { display: block; margin-top: 5px; color: #d5dde4; font-size: .78rem; line-height: 1.25; }
.featured-product-facts .fact-published { color: var(--success); }
.featured-product-facts .fact-development { color: var(--warning); }
.featured-product-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 22px; }
.product-availability { display: inline-flex; align-items: center; gap: 8px; color: #8e9ca8; font-size: .72rem; }
.product-availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px rgba(105,216,141,.4); }
.product-availability.development i { background: var(--warning); box-shadow: 0 0 12px rgba(244,189,88,.32); }

@media (max-width: 980px) {
  .featured-products-grid { grid-template-columns: 1fr; }
  .featured-product-content > p { min-height: 0; }
}
@media (max-width: 640px) {
  .featured-products-head { align-items: flex-start; }
  .featured-product-visual { min-height: 280px; padding: 20px; }
  .aux-screen { width: calc(100% - 40px); }
  .pushback-panel { width: 72%; min-width: 0; }
  .tug-line-art { width: 48%; opacity: .62; }
  .featured-product-facts { grid-template-columns: 1fr; }
  .featured-product-facts div, .featured-product-facts div:first-child, .featured-product-facts div:last-child { padding: 11px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .featured-product-facts div:last-child { border-bottom: 0; }
  .featured-product-actions { align-items: flex-start; flex-direction: column; }
}

/* v0.9 — Store and product-page refinement */

/* Featured preview cleanup */
.featured-product-visual .visual-caption { display: none; }
.aux-preview .aux-screen { top: 51%; }
.pushback-stage { bottom: 30px; }

/* Store */
.store-hero { padding-bottom: 54px; }
.store-hero-grid { display: grid; grid-template-columns: 1.15fr .7fr; gap: 54px; align-items: end; }
.store-readout { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.015); }
.store-readout > div { padding: 20px; border-right: 1px solid var(--line); }
.store-readout > div:last-child { border-right: 0; }
.store-readout strong { display: block; color: #eef4f8; font-size: 1.7rem; letter-spacing: -.04em; }
.store-readout span { display: block; margin-top: 4px; color: var(--muted-2); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.store-catalog-section { padding-top: 54px; }
.catalog-status-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin: 4px 0 20px; }
.catalog-status-row p { margin: 0; }
.catalog-status-row > span { color: var(--muted-2); font-size: .64rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.store-product-grid { display: grid; gap: 20px; }
.store-product-card { position: relative; display: grid; grid-template-columns: minmax(300px,.78fr) 1.22fr; min-height: 360px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: linear-gradient(160deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); transition: transform .18s ease, border-color .18s ease; }
.store-product-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: var(--instruments); z-index: 4; opacity: .82; }
.store-product-card:hover { transform: translateY(-2px); border-color: rgba(104,185,255,.28); }
.store-product-card[hidden] { display: none; }
.store-product-visual { position: relative; min-height: 360px; padding: 24px; overflow: hidden; border-right: 1px solid var(--line); background-size: 32px 32px; }
.store-product-visual::after { content: ""; position: absolute; width: 250px; height: 250px; border: 1px solid rgba(104,185,255,.12); border-radius: 50%; right: -90px; top: -90px; }
.aux-store-visual { background-color: #071019; background-image: radial-gradient(circle at 70% 24%, rgba(104,185,255,.12), transparent 30%), linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); }
.pushback-store-visual { background-color: #0b0f12; background-image: radial-gradient(circle at 70% 22%, rgba(244,189,88,.08), transparent 30%), linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px); }
.store-aux-screen, .store-pushback-panel { position: absolute; z-index: 2; left: 24px; right: 24px; top: 92px; border: 1px solid rgba(104,185,255,.26); background: rgba(4,10,15,.88); }
.store-screen-head { display: flex; justify-content: space-between; gap: 10px; padding: 10px 12px; border-bottom: 1px solid rgba(104,185,255,.15); color: #6f8799; font-size: .55rem; letter-spacing: .11em; text-transform: uppercase; }
.store-screen-head strong { color: #d7e9f5; }
.store-status-row { display: flex; justify-content: space-between; gap: 10px; padding: 16px 12px; color: #718697; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.store-status-row strong { color: var(--success); font-size: .66rem; }
.store-readouts { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(104,185,255,.15); }
.store-readouts span { padding: 14px 8px; text-align: center; color: var(--instruments); font-size: .58rem; font-weight: 850; letter-spacing: .09em; border-right: 1px solid rgba(104,185,255,.12); }
.store-readouts span:last-child { border-right: 0; }
.store-pushback-panel { right: 42px; border-color: rgba(210,224,236,.18); }
.store-pushback-state { padding: 16px 12px 10px; }
.store-pushback-state span, .store-pushback-control span { display: block; color: #6f7d88; font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; }
.store-pushback-state strong { display: block; margin-top: 4px; color: var(--warning); font-size: .68rem; }
.store-pushback-control { margin: 0 12px 12px; padding: 12px; border: 1px solid rgba(104,185,255,.18); background: rgba(104,185,255,.03); }
.store-pushback-control b { display: block; margin-top: 5px; color: #dbeeff; font-size: .7rem; letter-spacing: .05em; }
.store-tug-line { position: absolute; z-index: 1; right: 28px; bottom: 38px; width: 120px; height: 46px; border: 1px solid rgba(199,211,220,.38); border-radius: 6px 14px 6px 6px; transform: skewX(-7deg); }
.store-tug-line::before, .store-tug-line::after { content: ""; position: absolute; bottom: -14px; width: 24px; height: 24px; border: 2px solid rgba(199,211,220,.48); border-radius: 50%; background: #080c0f; }
.store-tug-line::before { left: 14px; } .store-tug-line::after { right: 14px; }
.store-product-content { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.store-product-content h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.04; letter-spacing: -.04em; }
.store-product-content > p { margin: 13px 0 24px; color: var(--muted); max-width: 760px; }
.store-product-facts { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.store-product-facts > div { padding: 14px 14px; border-right: 1px solid var(--line); }
.store-product-facts > div:first-child { padding-left: 0; }
.store-product-facts > div:last-child { border-right: 0; padding-right: 0; }
.store-product-facts span { display: block; color: var(--muted-2); font-size: .58rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.store-product-facts strong { display: block; margin-top: 5px; color: #d5dde4; font-size: .78rem; }
.store-product-facts .fact-published { color: var(--success); }
.store-product-facts .fact-development { color: var(--warning); }
.store-product-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 22px; }

/* Product detail pages */
.product-page-hero { padding: 86px 0 72px; border-bottom: 1px solid var(--line); }
.product-page-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 56px; align-items: center; }
.product-page-copy h1 { margin: 8px 0 0; font-size: clamp(3.4rem, 6.7vw, 6rem); line-height: .92; letter-spacing: -.06em; }
.product-page-lead { max-width: 720px; margin: 22px 0 18px; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.product-state-line { display: flex; align-items: center; gap: 16px; margin-top: 14px; color: var(--muted-2); font-size: .7rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.product-page-copy .product-meta { margin: 0 0 22px; }
.product-page-facts { margin-top: 30px; display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); }
.product-page-facts > div { padding: 14px 16px 14px 0; border-bottom: 1px solid var(--line); }
.product-page-facts > div:nth-child(odd) { border-right: 1px solid var(--line); }
.product-page-facts > div:nth-child(even) { padding-left: 16px; }
.product-page-facts span { display: block; color: var(--muted-2); font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-page-facts strong { display: block; margin-top: 5px; color: #d8e0e6; font-size: .86rem; line-height: 1.35; }
.product-page-visual { position: relative; min-height: 500px; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background-size: 36px 36px; box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.product-page-visual::after { content: ""; position: absolute; width: 330px; height: 330px; right: -120px; top: -120px; border: 1px solid rgba(104,185,255,.12); border-radius: 50%; }
.aux-product-page-visual { background-color: #071019; background-image: radial-gradient(circle at 70% 24%, rgba(104,185,255,.13), transparent 30%), linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); }
.pushback-product-page-visual { background-color: #0b0f12; background-image: radial-gradient(circle at 68% 25%, rgba(244,189,88,.08), transparent 30%), linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px); }
.aux-product-screen { position: absolute; z-index: 2; left: 50%; top: 48%; width: min(84%,520px); transform: translate(-50%,-50%); border: 1px solid rgba(104,185,255,.32); background: rgba(4,10,15,.92); box-shadow: 0 20px 50px rgba(0,0,0,.34); }
.product-visual-readout { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.product-visual-readout span { padding: 12px 12px 0; color: #778895; font-size: .58rem; letter-spacing: .09em; text-transform: uppercase; border-right: 1px solid var(--line); }
.product-visual-readout span:first-child { padding-left: 0; }
.product-visual-readout span:last-child { border-right: 0; }
.product-visual-readout b { color: #d4dde4; margin-right: 6px; }
.pushback-product-panel { position: absolute; z-index: 2; left: 28px; top: 98px; width: 60%; min-width: 280px; border: 1px solid rgba(210,224,236,.2); background: rgba(5,9,12,.9); box-shadow: 0 18px 42px rgba(0,0,0,.3); }
.product-tug-line-art { position: absolute; z-index: 2; right: 5%; bottom: 94px; width: 44%; height: 132px; opacity: .86; }
.availability-panel { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(120deg, rgba(255,255,255,.025), rgba(255,255,255,.01)); }
.availability-panel h2 { margin: 5px 0 10px; font-size: clamp(1.8rem,3vw,2.6rem); letter-spacing: -.04em; }
.availability-panel p { max-width: 760px; margin: 0; color: var(--muted); }
.published-panel { border-color: rgba(105,216,141,.18); background: linear-gradient(120deg, rgba(105,216,141,.045), rgba(255,255,255,.01)); }
.development-panel { border-color: rgba(244,189,88,.18); background: linear-gradient(120deg, rgba(244,189,88,.045), rgba(255,255,255,.01)); }
.availability-price, .availability-state { min-width: 190px; padding-left: 28px; border-left: 1px solid var(--line); }
.availability-price span, .availability-state span { display: block; color: var(--muted-2); font-size: .6rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.availability-price strong { display: block; margin-top: 4px; color: #eef5fa; font-size: 2.7rem; letter-spacing: -.05em; }
.availability-state strong { display: block; margin-top: 8px; color: var(--warning); font-size: 1rem; letter-spacing: .06em; }
.availability-price small, .availability-state small { display: block; margin-top: 4px; color: var(--muted); font-size: .7rem; }
.product-feature-list { grid-template-columns: repeat(3,1fr); }
.product-feature-list .feature-item { min-height: 132px; }
.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.resource-card { display: flex; flex-direction: column; min-height: 210px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.015); transition: transform .18s ease, border-color .18s ease; }
.resource-card:hover { transform: translateY(-2px); border-color: rgba(104,185,255,.28); }
.resource-card > span { color: var(--instruments); font-size: .65rem; font-weight: 850; letter-spacing: .12em; }
.resource-card strong { margin-top: 22px; font-size: 1.05rem; }
.resource-card p { margin: 8px 0 20px; color: var(--muted); font-size: .84rem; }
.resource-card b { margin-top: auto; color: #dce7ee; font-size: .75rem; }
.support-detail-section { border-top: 1px solid rgba(255,255,255,.035); }

@media (max-width: 1100px) {
  .store-hero-grid, .product-page-grid { grid-template-columns: 1fr; }
  .store-readout { max-width: 720px; }
  .store-product-card { grid-template-columns: 1fr; }
  .store-product-visual { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-page-visual { min-height: 470px; }
  .product-feature-list { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .catalog-toolbar { grid-template-columns: 1fr; }
  .catalog-status-row { align-items: flex-start; flex-direction: column; }
  .store-readout { grid-template-columns: 1fr; }
  .store-readout > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .store-readout > div:last-child { border-bottom: 0; }
  .store-product-content { padding: 22px; }
  .store-product-facts { grid-template-columns: 1fr; }
  .store-product-facts > div, .store-product-facts > div:first-child, .store-product-facts > div:last-child { padding: 11px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .store-product-facts > div:last-child { border-bottom: 0; }
  .store-product-actions { align-items: flex-start; flex-direction: column; }
  .product-page-hero { padding-top: 68px; }
  .product-page-copy h1 { font-size: clamp(3rem,14vw,4.6rem); }
  .product-page-facts { grid-template-columns: 1fr; }
  .product-page-facts > div, .product-page-facts > div:nth-child(even) { padding: 12px 0; border-right: 0; }
  .product-page-visual { min-height: 420px; padding: 20px; }
  .product-visual-readout { left: 20px; right: 20px; grid-template-columns: 1fr; }
  .product-visual-readout span, .product-visual-readout span:first-child { padding: 7px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-visual-readout span:last-child { border-bottom: 0; }
  .aux-product-screen { width: calc(100% - 40px); top: 43%; }
  .pushback-product-panel { left: 20px; right: 20px; width: auto; min-width: 0; top: 82px; }
  .product-tug-line-art { width: 52%; right: 2%; opacity: .48; bottom: 118px; }
  .availability-panel { grid-template-columns: 1fr; gap: 24px; }
  .availability-price, .availability-state { padding: 20px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .product-feature-list, .resource-grid { grid-template-columns: 1fr; }
}


/* v0.10 public link and community layer ------------------------------------ */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.footer-socials a:hover {
  color: #fff;
  border-color: var(--line-strong);
  background: rgba(255,255,255,.025);
}
.product-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}
.availability-link {
  display: inline-block;
  margin-top: 14px;
  color: #eaf3f8;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.availability-link:hover { color: #fff; }
.community-section { border-top: 1px solid var(--line); }
.community-head { margin-bottom: 30px; }
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.community-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.008));
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.community-card::before {
  content: '';
  position: absolute;
  inset: auto -34px -54px auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
}
.community-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}
.community-kicker {
  display: block;
  margin-bottom: 30px;
  color: var(--muted-2);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.community-card strong {
  display: block;
  margin-bottom: 10px;
  color: #eef5fa;
  font-size: 1.35rem;
}
.community-card p {
  max-width: 370px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.6;
}
.community-action {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: #dce8ee;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.community-card.youtube { box-shadow: inset 0 2px 0 rgba(255,255,255,.045); }
.community-card.twitch { box-shadow: inset 0 2px 0 rgba(144,113,255,.15); }
.community-card.discord { box-shadow: inset 0 2px 0 rgba(88,101,242,.15); }
@media (max-width: 900px) {
  .community-grid { grid-template-columns: 1fr; }
  .community-card { min-height: 205px; }
}
@media (max-width: 640px) {
  .product-action-group { width: 100%; }
  .product-action-group .btn { width: 100%; justify-content: center; }
  .footer-socials { gap: 6px; }
}

/* v0.11 — Readiness, accessibility, and responsive polish ------------------ */
:root {
  color-scheme: dark;
  /* Raise low-emphasis text above AA contrast on PE panel surfaces. */
  --muted-2: #788995;
}

[id] { scroll-margin-top: 94px; }
body.menu-open { overflow: hidden; }
.not-found-actions { margin-top: 28px; }
.about-values-grid { grid-template-columns: 1fr; }

/* Mobile navigation should remain usable on short screens and communicate
   its expanded state without introducing a separate navigation system. */
@media (max-width: 980px) {
  .nav-links {
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .menu-toggle { flex: 0 0 44px; width: 44px; height: 44px; }
}

/* Clear store feedback when filters return no results. */
.catalog-empty {
  margin: 18px 0 0;
  padding: 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
  background: rgba(255,255,255,.012);
}
.catalog-empty[hidden] { display: none; }

/* Slightly calmer keyboard focus on dark controls while preserving a
   high-contrast visible focus indicator. */
input:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline-color: #9bd5ff;
}

/* Prevent decorative hover motion from becoming sticky on touch devices. */
@media (hover: none) {
  .division-card:hover,
  .product-card:hover,
  .catalog-item:hover,
  .featured-product-card:hover,
  .store-product-card:hover,
  .resource-card:hover,
  .community-card:hover,
  .division-overview-card:hover,
  .btn:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .page-hero { padding-top: 72px; padding-bottom: 52px; }
  .page-hero h1 { font-size: clamp(2.65rem, 12vw, 3.7rem); line-height: .98; }
  .page-hero p { font-size: 1rem; }
  .product-page-lead { font-size: 1rem; }
  .network-footer { grid-template-columns: 1fr; gap: 8px; }
  .network-footer span,
  .network-footer span + span { padding-left: 0; border-left: 0; }
  .product-overline { flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .nav { gap: 14px; }
  .brand { min-width: 0; }
  .brand-mark { flex: 0 0 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-col a { min-height: 30px; display: flex; align-items: center; }
  .footer-socials a { min-height: 36px; }
  .filter-preview { grid-template-columns: 1fr; }
  .store-gateway { padding: 24px; }
}

/* v0.12 — Featured product preview overlap fix ----------------------------- */
/* Reserve a clear header band inside Featured Product visuals so the
   decorative product UI never collides with the PE / division + state line. */
.featured-product-visual {
  min-height: 326px;
}

.aux-preview .aux-screen {
  top: 62px;
  transform: translateX(-50%);
}

.aux-preview .aux-readout-grid div {
  min-height: 64px;
}

@media (max-width: 640px) {
  .featured-product-visual { min-height: 314px; }
  .aux-preview .aux-screen {
    top: 58px;
    width: calc(100% - 40px);
  }
  .aux-preview .aux-readout-grid div { min-height: 60px; }
}


/* v0.14 — AUX Interactive Systems Suite public integration ----------------- */
.instrument-products-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.suite-product-art { background: #071019; }
.suite-product-art img,
.suite-store-image,
.suite-product-page-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.suite-product-art img { position: absolute; inset: 0; object-fit: contain; background: #05090d; }
.suite-store-visual { padding: 0; background: #071019; }
.suite-store-visual::after { display: none; }
.suite-store-image { position: absolute; inset: 0; object-position: center; object-fit: contain; background: #05090d; }
.suite-product-page-visual { padding: 0; min-height: 460px; background: #071019; }
.suite-product-page-visual::after { display: none; }
.suite-product-page-visual img { position: absolute; inset: 0; object-fit: contain; background: #05090d; }
.support-four-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 1100px) {
  .instrument-products-grid { grid-template-columns: 1fr; }
  .suite-product-page-visual { min-height: 420px; }
}
@media (max-width: 760px) {
  .support-four-grid { grid-template-columns: 1fr; }
  .suite-product-page-visual { min-height: 300px; }
}


/* v0.14.1 — AUX System Status artwork refresh ---------------------------- */
.aux-photo-art { background: #05090d; }
.aux-photo-art img, .aux-photo-visual img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; background: #05090d; }
.aux-photo-art .aux-photo-image { position: absolute; inset: 0; }
.aux-photo-visual { padding: 0; background: #05090d; }
.aux-photo-visual::after { display: none; }
.aux-photo-visual .aux-photo-image { position: absolute; inset: 0; }
.aux-store-visual.aux-photo-visual, .featured-product-visual.aux-photo-visual { min-height: 310px; }
.product-page-visual.aux-photo-visual { min-height: 500px; }
@media (max-width: 1100px) { .product-page-visual.aux-photo-visual { min-height: 420px; } }
@media (max-width: 640px) { .aux-store-visual.aux-photo-visual, .featured-product-visual.aux-photo-visual { min-height: 250px; } .product-page-visual.aux-photo-visual { min-height: 280px; } }


/* v0.15 — Homepage product discovery carousel and release history -------- */
.latest-release-strip { --release-accent: var(--brand); --release-accent-rgb: 126, 200, 255; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; margin: 6px 0 22px; padding: 18px 20px; border: 1px solid rgba(var(--release-accent-rgb), .2); border-radius: 14px; background: linear-gradient(120deg, rgba(var(--release-accent-rgb), .055), rgba(var(--release-accent-rgb), .018) 58%, rgba(255,255,255,.01)); }
.latest-release-strip.latest-release-instruments { --release-accent: var(--instruments); --release-accent-rgb: 104, 185, 255; }
.latest-release-strip.latest-release-tactical { --release-accent: var(--tactical); --release-accent-rgb: 101, 215, 154; }
.latest-release-strip.latest-release-advanced { --release-accent: var(--advanced); --release-accent-rgb: 168, 135, 255; }
.latest-release-label { display: block; margin-bottom: 4px; color: var(--release-accent); font-size: .62rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.latest-release-strip strong { display: block; color: #eef5fa; font-size: 1.05rem; }
.latest-release-strip p { margin: 4px 0 0; color: var(--muted); font-size: .8rem; }
.latest-release-actions { display: flex; gap: 10px; align-items: center; }
.featured-products-carousel { position: relative; }
.featured-carousel-viewport { overflow: hidden; outline: none; }
.featured-carousel-viewport:focus-visible { outline: 2px solid #9bd5ff; outline-offset: 5px; border-radius: 22px; }
.featured-carousel-track { display: flex; gap: 20px; align-items: stretch; will-change: transform; transition: transform .62s cubic-bezier(.22,.61,.36,1); }
.featured-carousel-track .featured-product-card { flex: 0 0 calc((100% - 20px) / 2); min-width: 0; display: flex; flex-direction: column; }
.featured-carousel-track .featured-product-content { display: flex; flex-direction: column; flex: 1; }
.featured-carousel-track .featured-product-actions { margin-top: auto; }
.featured-media-visual { padding: 0; background: #05090d; }
.featured-media-visual::after { display: none; }
.featured-media-visual img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; background: #05090d; }
.featured-carousel-controls { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 18px; }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot { width: 9px; height: 9px; padding: 0; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; cursor: pointer; }
.carousel-dot.active { width: 28px; border-color: var(--instruments); background: var(--instruments); }
.carousel-buttons { display: flex; gap: 8px; }
.carousel-button { width: 42px; height: 38px; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(255,255,255,.018); color: #dce7ee; font-size: 1rem; cursor: pointer; }
.carousel-button:hover { border-color: rgba(104,185,255,.38); background: rgba(104,185,255,.045); }
.release-history-section { border-top: 1px solid rgba(255,255,255,.035); }
.release-history-panel { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); margin-top: 24px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.012); }
.release-history-panel > div { padding: 18px; border-right: 1px solid var(--line); }
.release-history-panel > div:last-child { border-right: 0; }
.release-history-panel span { display: block; color: var(--muted-2); font-size: .6rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.release-history-panel strong { display: block; margin-top: 6px; color: #dbe4eb; font-size: .82rem; line-height: 1.35; }
.release-history-panel .release-published { color: var(--success); }
.release-history-panel .release-development { color: var(--warning); }
@media (max-width: 980px) {
  .featured-carousel-track .featured-product-card { flex-basis: 100%; }
  .latest-release-strip { grid-template-columns: 1fr; }
  .latest-release-actions { justify-content: flex-start; flex-wrap: wrap; }
  .release-history-panel { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .release-history-panel > div:nth-child(2) { border-right: 0; }
  .release-history-panel > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .latest-release-strip { padding: 16px; }
  .latest-release-actions { align-items: stretch; }
  .latest-release-actions .btn { flex: 1 1 auto; text-align: center; }
  .featured-carousel-controls { margin-top: 14px; }
  .release-history-panel { grid-template-columns: 1fr; }
  .release-history-panel > div, .release-history-panel > div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .release-history-panel > div:last-child { border-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) { .featured-carousel-track { transition: none !important; } }


/* v0.16 — PE Tactical Field Ops commercial integration -------------------- */
.badge.tactical { color: var(--tactical); border-color: rgba(101,215,154,.28); background: rgba(101,215,154,.065); }
.tactical-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tactical-product-art,
.tactical-store-visual,
.tactical-product-page-visual { padding: 0; background: #05090d; }
.tactical-product-art img,
.tactical-store-visual img,
.tactical-product-page-visual img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; background: #05090d; }
.tactical-product-art img { position: absolute; inset: 0; }
.tactical-store-visual::after,
.tactical-product-page-visual::after,
.tactical-media-visual::after { display: none; }
.tactical-store-visual img,
.tactical-product-page-visual img { position: absolute; inset: 0; }
.tactical-product-page-visual { min-height: 500px; }
.featured-product-card.tactical-feature::before,
.store-product-card.tactical-product::before { background: var(--tactical); }
.featured-product-card.tactical-feature:hover,
.store-product-card.tactical-product:hover,
.tactical-product-card:hover { border-color: rgba(101,215,154,.34); }
.tactical-product-page .product-page-copy > .eyebrow,
.tactical-product-page .resource-card > span { color: var(--tactical); }
.tactical-product-page .resource-card:hover { border-color: rgba(101,215,154,.32); }
@media (max-width: 1100px) { .tactical-product-page-visual { min-height: 420px; } }
@media (max-width: 640px) { .tactical-product-page-visual { min-height: 280px; } }

/* v0.17 — PE Advanced System Monitor --------------------------------------- */
.badge.advanced { color: var(--advanced); border-color: rgba(175,120,255,.28); background: rgba(175,120,255,.065); }
.advanced-products-grid { grid-template-columns: minmax(0, 820px); }
.advanced-product-art,
.advanced-store-visual,
.advanced-product-page-visual { padding: 0; background: #05090d; }
.advanced-product-art img,
.advanced-store-visual img,
.advanced-product-page-visual img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; background: #05090d; }
.advanced-product-art img { position: absolute; inset: 0; }
.advanced-store-visual::after,
.advanced-product-page-visual::after,
.advanced-media-visual::after { display: none; }
.advanced-store-visual img,
.advanced-product-page-visual img { position: absolute; inset: 0; }
.advanced-product-page-visual { min-height: 500px; }
.featured-product-card.advanced-feature::before,
.store-product-card.advanced-product::before { background: var(--advanced); }
.featured-product-card.advanced-feature:hover,
.store-product-card.advanced-product:hover,
.advanced-product-card:hover { border-color: rgba(175,120,255,.34); }
.advanced-product-page .product-page-copy > .eyebrow,
.advanced-product-page .resource-card > span { color: var(--advanced); }
.advanced-product-page .resource-card:hover { border-color: rgba(175,120,255,.32); }
@media (max-width: 1100px) { .advanced-product-page-visual { min-height: 420px; } }
@media (max-width: 640px) { .advanced-product-page-visual { min-height: 280px; } }

/* v0.17 division-release color cache-proof override ----------------------- */
.latest-release-strip.latest-release-advanced {
  --release-accent: #a887ff;
  --release-accent-rgb: 168, 135, 255;
  border-color: rgba(168, 135, 255, .30) !important;
  background: linear-gradient(120deg, rgba(168, 135, 255, .085), rgba(168, 135, 255, .025) 58%, rgba(255,255,255,.01)) !important;
}
.latest-release-strip.latest-release-advanced .latest-release-label {
  color: #a887ff !important;
}


/* v0.18 — Product-forward homepage refinement ----------------------------- */
.home-product-hero {
  min-height: 660px;
  background:
    radial-gradient(circle at 82% 8%, rgba(168,135,255,.075), transparent 25%),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
}
.home-product-hero .container {
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: 52px;
  padding-top: 58px;
  padding-bottom: 58px;
}
.home-product-hero h1 {
  max-width: 680px;
  font-size: clamp(2.9rem, 4.85vw, 4.85rem);
  line-height: .98;
}
.home-product-hero h1 span {
  display: block;
  color: #aeb9c3;
  font-weight: 620;
}
.home-product-hero .hero-copy {
  max-width: 650px;
  margin-top: 23px;
}
.home-product-hero .hero-metrics {
  max-width: 690px;
}
.hero-product-stage {
  position: relative;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18,27,36,.92), rgba(8,13,18,.94));
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}
.hero-product-stage::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(168,135,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(168,135,255,.018), 0 0 0 96px rgba(126,200,255,.01);
  z-index: -1;
}
.hero-product-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-showcase {
  --showcase-accent: var(--brand);
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top-color: color-mix(in srgb, var(--showcase-accent) 70%, transparent);
  border-radius: 14px;
  background: #05090d;
  transition: transform .18s ease, border-color .18s ease;
}
.hero-showcase:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--showcase-accent) 45%, var(--line));
}
.hero-showcase.advanced { --showcase-accent: var(--advanced); }
.hero-showcase.tactical { --showcase-accent: var(--tactical); }
.hero-showcase.instruments { --showcase-accent: var(--instruments); }
.hero-showcase img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
  background: #05090d;
}
.hero-showcase-main img { aspect-ratio: 2 / 1; }
.hero-showcase-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 13px;
  border-top: 1px solid var(--line);
  background: rgba(7,11,15,.96);
}
.hero-showcase-caption span {
  display: block;
  color: var(--showcase-accent);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-showcase-caption strong {
  display: block;
  margin-top: 2px;
  color: #edf3f7;
  font-size: .9rem;
}
.hero-showcase-main .hero-showcase-caption strong { font-size: 1rem; }
.hero-showcase-caption small {
  color: var(--muted);
  font-size: .67rem;
  white-space: nowrap;
}
.hero-showcase-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
}
.hero-showcase-row .hero-showcase-caption {
  align-items: start;
  gap: 8px;
  padding: 10px 11px 11px;
}
.hero-showcase-row .hero-showcase-caption small { font-size: .62rem; }
.hero-stage-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 11px;
  padding: 0 3px;
  color: var(--muted-2);
  font-size: .58rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-stage-footer b { color: #b9c6cf; }

.product-platform-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.012);
}
.product-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.product-platform-grid > div {
  position: relative;
  min-height: 76px;
  padding: 17px 20px 15px 33px;
  border-right: 1px solid var(--line);
}
.product-platform-grid > div:first-child { padding-left: 13px; }
.product-platform-grid > div:last-child { border-right: 0; }
.product-platform-grid strong {
  display: block;
  color: #dce5eb;
  font-size: .76rem;
}
.product-platform-grid small {
  display: block;
  margin-top: 2px;
  color: var(--muted-2);
  font-size: .67rem;
}
.platform-dot {
  position: absolute;
  left: 18px;
  top: 23px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px color-mix(in srgb, var(--brand) 45%, transparent);
}
.product-platform-grid > div:first-child .platform-dot { left: 0; }
.platform-dot.instruments { background: var(--instruments); }
.platform-dot.marketplace { background: var(--success); }
.platform-dot.neutral { background: #9aa8b5; }

.featured-products-section { border-top: 0; padding-top: 74px; }
.inline-section-link { display: inline-block; margin-top: 26px; }
.home-use-cases .section-title { max-width: 560px; }
.home-use-cases .section-lead { max-width: 590px; }

.home-divisions-compact { padding-top: 68px; }
.home-divisions-compact .section-head { align-items: end; }
.home-divisions-compact .section-lead { max-width: 760px; }
.home-divisions-compact .division-card {
  min-height: 250px;
}
.home-divisions-compact .division-card-top { margin-bottom: 22px; }
.home-divisions-compact .division-card p {
  min-height: 46px;
  margin: 14px 0 20px;
  color: #aeb9c3;
}
.home-divisions-compact .division-graphic { opacity: .35; transform: scale(.82); transform-origin: top right; }
.home-divisions-compact .division-card:hover .division-graphic { opacity: .52; }

@media (max-width: 1120px) {
  .home-product-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-product-stage { width: 100%; max-width: 860px; }
}
@media (max-width: 900px) {
  .product-platform-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-platform-grid > div:nth-child(2) { border-right: 0; }
  .product-platform-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-platform-grid > div:nth-child(3) { padding-left: 13px; }
  .product-platform-grid > div:nth-child(3) .platform-dot { left: 0; }
}
@media (max-width: 640px) {
  .home-product-hero .container { padding-top: 42px; padding-bottom: 42px; gap: 30px; }
  .home-product-hero h1 { font-size: clamp(2.55rem, 11.5vw, 3.55rem); }
  .home-product-hero h1 span { display: inline; }
  .hero-product-stage { padding: 9px; border-radius: 16px; }
  .hero-showcase-row { grid-template-columns: 1fr; gap: 9px; margin-top: 9px; }
  .hero-showcase-caption { align-items: start; }
  .hero-showcase-caption small { white-space: normal; text-align: right; }
  .hero-stage-footer { display: none; }
  .product-platform-grid { grid-template-columns: 1fr; }
  .product-platform-grid > div,
  .product-platform-grid > div:nth-child(2),
  .product-platform-grid > div:nth-child(3) {
    min-height: 64px;
    padding: 13px 12px 12px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-platform-grid > div:last-child { border-bottom: 0; }
  .product-platform-grid > div:first-child,
  .product-platform-grid > div:nth-child(3) { padding-left: 28px; }
  .platform-dot,
  .product-platform-grid > div:first-child .platform-dot,
  .product-platform-grid > div:nth-child(3) .platform-dot { left: 10px; top: 19px; }
  .featured-products-section { padding-top: 58px; }
  .home-divisions-compact .division-card { min-height: 0; }
}


/* v0.19 — Contact form ------------------------------------------------------ */
.contact-page-hero { padding-bottom: 58px; }
.contact-page-hero h1 { max-width: 760px; }
.contact-section { padding-top: 62px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .72fr); gap: 28px; align-items: start; }
.contact-panel { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.018); box-shadow: var(--shadow); overflow: hidden; }
.contact-panel-head { padding: 28px 30px 24px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, rgba(126,200,255,.045), rgba(168,135,255,.025) 55%, transparent); }
.contact-panel-head h2 { margin: 6px 0 8px; font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -.035em; }
.contact-panel-head p:last-child { margin: 0; color: var(--muted); max-width: 680px; }
.contact-form { padding: 30px; }
.form-grid.two-col { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.form-field { display: grid; gap: 8px; margin-bottom: 20px; }
.form-field label { color: #dce5eb; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 9px; background: #0b1117; color: #f2f6f8; padding: 12px 13px; outline: none; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.form-field input, .form-field select { min-height: 48px; }
.form-field textarea { resize: vertical; min-height: 180px; line-height: 1.5; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: rgba(255,255,255,.22); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(126,200,255,.62); box-shadow: 0 0 0 3px rgba(126,200,255,.08); }
.field-hint { color: var(--muted-2); font-size: .72rem; }
.form-field textarea + .field-hint { justify-self: end; margin-top: -3px; }
.conditional-field { max-height: 0; opacity: 0; transform: translateY(-5px); overflow: hidden; pointer-events: none; transition: max-height .28s ease, opacity .22s ease, transform .22s ease; }
.conditional-field.is-visible { max-height: 220px; opacity: 1; transform: translateY(0); pointer-events: auto; }
.conditional-field .form-field { margin-bottom: 20px; }
.testimonial-permission { margin-top: -2px; }
.permission-card { margin-bottom: 20px; padding: 16px 17px; border: 1px solid var(--line); border-radius: 10px; background: rgba(168,135,255,.035); }
.permission-check { display: grid; grid-template-columns: 20px minmax(0,1fr); gap: 12px; align-items: start; cursor: pointer; }
.permission-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: #a887ff; }
.permission-check span { display: grid; gap: 5px; }
.permission-check strong { color: #e9eef2; font-size: .82rem; }
.permission-check small { color: var(--muted); font-size: .74rem; line-height: 1.55; }
.form-trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.turnstile-slot { min-height: 90px; margin: 2px 0 18px; padding: 16px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.012); }
.turnstile-slot [data-turnstile-container] { min-height: 65px; display: flex; align-items: center; }
.form-security-note { margin: 8px 0 0; color: var(--muted-2); font-size: .72rem; }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact-submit:disabled { opacity: .46; cursor: not-allowed; transform: none; }
.form-status { min-height: 20px; color: var(--muted); font-size: .82rem; }
.form-status.success { color: var(--success); }
.form-status.error { color: #ff9e9e; }
.contact-sidebar { display: grid; gap: 16px; }
.contact-sidebar .info-card { padding: 24px; }
.contact-direct-card strong { overflow-wrap: anywhere; }
.contact-direct-card .btn { margin-top: 18px; width: 100%; }
.contact-sidebar .text-link { display: inline-block; margin-top: 16px; }
.contact-config-warning { color: #ffd28b; font-size: .82rem; line-height: 1.5; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } .contact-sidebar { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 760px) { .form-grid.two-col { grid-template-columns: 1fr; gap: 0; } .contact-sidebar { grid-template-columns: 1fr; } .contact-panel-head, .contact-form { padding-left: 22px; padding-right: 22px; } }
@media (max-width: 480px) { .contact-form { padding: 22px 17px 24px; } .contact-panel-head { padding: 24px 17px 20px; } .form-actions .btn { width: 100%; } .turnstile-slot { padding: 12px; overflow-x: auto; } }

@media (max-width: 980px) { .tactical-products-grid { grid-template-columns: 1fr; } }
