:root {
  --brand: #337baf;
  --brand-dark: #286895;
  --brand-soft: #e9f4fb;
  --ink: #0b1720;
  --ink-2: #243743;
  --muted: #647985;
  --line: rgba(11, 23, 32, 0.12);
  --paper: #ffffff;
  --mist: #f3f7f9;
  --navy: #07141c;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(7, 20, 28, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.shell-media { width:min(1540px, calc(100% - 40px)); }
.shell-jnex { width:min(1640px, calc(100% - 40px)); }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 1000; padding: 10px 14px; background: white; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(11,23,32,.07);
  backdrop-filter: blur(18px);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 760; font-size: 1.2rem; letter-spacing: -.03em; }
.brand-crop { position: relative; width: 38px; height: 38px; overflow: hidden; flex: 0 0 38px; border-radius: 11px; background: #fbfaf7; }
.brand-crop img { position: absolute; width: 116px; max-width: none; left: -40px; top: -20px; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #344954; font-weight: 580; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand); }
.nav-products { position: relative; }
.nav-products > button { border: 0; background: transparent; color: inherit; padding: 12px 0; cursor: pointer; font-weight: inherit; }
.product-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translate(-50%, 8px); width: 480px; padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .2s ease; }
.nav-products:hover .product-menu, .nav-products:focus-within .product-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.product-menu a { padding: 12px; border-radius: 12px; }
.product-menu a:hover { background: var(--brand-soft); }
.product-menu strong, .product-menu span { display: block; }
.product-menu strong { color: var(--ink); font-size: .94rem; }
.product-menu span { color: var(--muted); font-size: .78rem; font-weight: 450; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 12px; background: white; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 19px; height: 2px; border-radius: 2px; background: var(--ink); position: absolute; transition: .2s ease; }
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(6px); }

.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid transparent; border-radius: 13px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--brand); box-shadow: 0 12px 30px rgba(51,123,175,.24); }
.button-primary:hover { background: var(--brand-dark); }
.button-dark { color: white; background: var(--ink); }
.button-light { color: var(--ink); background: rgba(255,255,255,.92); }
.button-outline { border-color: var(--line); background: transparent; }
.button-sm { min-height: 40px; padding-inline: 16px; font-size: .9rem; }
.arrow { font-size: 1.1em; transition: transform .2s ease; }
.button:hover .arrow, .text-link:hover .arrow { transform: translateX(3px); }

.hero { position: relative; overflow: hidden; padding: 82px 0 68px; background: linear-gradient(145deg, #f7fbfd 0%, #fff 53%, #eaf5fb 100%); }
.hero::before { content:""; position:absolute; inset:0; opacity:.38; background-image: linear-gradient(rgba(51,123,175,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(51,123,175,.09) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 82%); }
.hero::after { content:""; position:absolute; width:540px; height:540px; right:-210px; top:-240px; background:radial-gradient(circle, rgba(51,123,175,.2), transparent 68%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--brand-dark); font-size: .82rem; font-weight: 780; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow::before { content:""; width: 28px; height: 2px; background: var(--brand); border-radius: 4px; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 720px; font-size: clamp(3.2rem, 6vw, 5.8rem); font-weight: 780; }
h1 .brand-word, h2 .brand-word { color: var(--brand); }
.hero-copy > p { max-width: 635px; margin: 24px 0 0; color: var(--ink-2); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { display:flex; flex-wrap:wrap; gap:18px; margin-top:28px; color:var(--muted); font-size:.88rem; font-weight:570; }
.hero-note span { display:flex; align-items:center; gap:7px; }
.hero-note i { width:7px; height:7px; border-radius:50%; background:var(--brand); box-shadow:0 0 0 5px rgba(51,123,175,.1); }

.product-console { position: relative; min-height: 520px; padding: 18px; border: 1px solid rgba(255,255,255,.7); border-radius: 30px; background: rgba(255,255,255,.62); box-shadow: 0 30px 90px rgba(22,61,83,.18); backdrop-filter: blur(20px); }
.console-main { height: 100%; min-height: 484px; overflow:hidden; border-radius: 20px; background: #091821; color: white; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.console-bar { height: 54px; display:flex; align-items:center; justify-content:space-between; padding:0 18px; border-bottom:1px solid rgba(255,255,255,.08); }
.dots { display:flex; gap:6px; }.dots i { width:7px;height:7px;border-radius:50%;background:#6b7f89; }.dots i:first-child{background:var(--brand)}
.console-badge { font-size:.72rem; color:#a9c5d4; border:1px solid rgba(255,255,255,.12); border-radius:999px; padding:5px 9px; }
.console-body { display:grid; grid-template-columns: 78px 1fr; min-height:430px; }
.console-rail { padding:18px 14px; border-right:1px solid rgba(255,255,255,.08); display:flex; flex-direction:column; gap:14px; }
.rail-block { height:45px; border-radius:12px; background:rgba(255,255,255,.06); display:grid; place-items:center; color:#7fa3b5; font-weight:700; }
.rail-block.active { background:rgba(51,123,175,.24); color:#82c5ee; }
.console-content { padding:22px; }
.console-head { display:flex; justify-content:space-between; gap:16px; align-items:start; }
.console-head h3 { font-size:1.35rem; letter-spacing:-.02em; }.console-head p{margin:6px 0 0;color:#86a2b0;font-size:.82rem}
.live-pill { display:flex;align-items:center;gap:7px;color:#86ddae;font-size:.75rem;font-weight:700; }.live-pill i{width:7px;height:7px;border-radius:50%;background:#4bd38a;box-shadow:0 0 0 5px rgba(75,211,138,.1)}
.metric-row { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:22px; }
.metric { padding:14px; border:1px solid rgba(255,255,255,.08); border-radius:14px; background:rgba(255,255,255,.035); }.metric span{display:block;color:#86a2b0;font-size:.7rem}.metric strong{display:block;margin-top:4px;font-size:1.05rem}
.chart { height:155px; margin-top:12px; padding:16px 12px 8px; border:1px solid rgba(255,255,255,.08);border-radius:16px;background:linear-gradient(180deg,rgba(51,123,175,.09),transparent);display:flex;align-items:end;gap:7px; }
.chart i { flex:1; min-width:5px; border-radius:5px 5px 2px 2px; background:linear-gradient(180deg,#69b9e8,var(--brand)); opacity:.9; animation:rise .8s both; }
@keyframes rise { from{height:0} }
.console-products { display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:12px}.console-product{padding:13px;border-radius:14px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.07)}.console-product b{display:block;font-size:.84rem}.console-product span{font-size:.7rem;color:#86a2b0}
.float-card { position:absolute; right:-34px; bottom:36px; width:190px; padding:15px; border:1px solid var(--line); border-radius:17px; background:white; box-shadow:var(--shadow); animation:float 4s ease-in-out infinite; }.float-card small{display:block;color:var(--muted)}.float-card strong{display:block;margin-top:2px;font-size:.95rem}.float-icon{width:34px;height:34px;margin-bottom:10px;display:grid;place-items:center;border-radius:10px;background:var(--brand-soft);color:var(--brand);font-weight:800}
@keyframes float { 50% { transform:translateY(-8px) } }

.trust-strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:white; }
.trust-inner { min-height:92px; display:flex; align-items:center; justify-content:space-between; gap:28px; color:var(--muted); }
.trust-inner > span { font-size:.8rem; font-weight:760; text-transform:uppercase; letter-spacing:.1em; }
.trust-list { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:28px; color:var(--ink-2); font-weight:650; }

.section { padding: 104px 0; }
.section-soft { background: var(--mist); }
.section-dark { position:relative; overflow:hidden; background:var(--navy); color:white; }
.section-dark::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 15% 20%,rgba(51,123,175,.24),transparent 38%)}
.section-heading { display:flex; justify-content:space-between; align-items:end; gap:32px; margin-bottom:44px; }
.section-heading h2 { max-width:720px; font-size:clamp(2.2rem,4.5vw,4rem); }
.section-heading p { max-width:440px; margin:0; color:var(--muted); }
.section-dark .section-heading p { color:#a6bcc8; }
.kicker { margin:0 0 13px; color:var(--brand); font-size:.78rem; text-transform:uppercase; font-weight:800; letter-spacing:.11em; }

.category-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.category-card { position:relative; min-height:410px; overflow:hidden; display:flex; flex-direction:column; padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:white; transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.category-card:hover { transform:translateY(-7px);box-shadow:var(--shadow);border-color:rgba(51,123,175,.32); }
.category-number { color:var(--brand); font-size:.75rem; font-weight:800; letter-spacing:.12em; }
.category-card h3 { margin-top:34px; font-size:1.65rem; }
.category-card > p { color:var(--muted); }
.category-products { display:grid; gap:8px; margin-top:auto; }
.category-products a { display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;border-radius:12px;background:var(--mist);font-weight:680; }
.category-products a:hover { color:var(--brand); background:var(--brand-soft); }
.category-glow { position:absolute;width:170px;height:170px;border-radius:50%;right:-80px;top:-70px;background:rgba(51,123,175,.12); }

.feature-layout { position:relative; z-index:1; display:grid;grid-template-columns:.88fr 1.12fr;gap:70px;align-items:center; }
.feature-copy h2 { font-size:clamp(2.3rem,4.8vw,4.2rem); }.feature-copy>p{color:#abc0ca;font-size:1.08rem}.feature-list{display:grid;gap:14px;margin:30px 0}.feature-list div{display:flex;gap:12px;align-items:flex-start}.tick{width:24px;height:24px;flex:0 0 24px;display:grid;place-items:center;border-radius:8px;background:rgba(51,123,175,.22);color:#82c5ee;font-size:.8rem}
.workflow-window { padding:18px;border-radius:28px;background:#f8fbfc;color:var(--ink);box-shadow:0 30px 100px rgba(0,0,0,.28); }
.workflow-toolbar { display:flex;align-items:center;justify-content:space-between;padding:9px 8px 18px; }.workflow-title{font-size:.8rem;font-weight:750}.workflow-steps{display:flex;gap:7px}.workflow-steps span{padding:7px 10px;border-radius:9px;background:#eaf0f3;color:#68808c;font-size:.7rem;font-weight:700}.workflow-steps .on{background:var(--brand);color:white}
.plan-canvas { position:relative; height:350px; overflow:hidden; border:1px solid #dbe6eb;border-radius:18px;background-color:#fff;background-image:linear-gradient(#e7eff3 1px,transparent 1px),linear-gradient(90deg,#e7eff3 1px,transparent 1px);background-size:28px 28px; }
.room { position:absolute;border:3px solid #314a57;background:rgba(255,255,255,.78); }.room::after{content:attr(data-room);position:absolute;left:10px;top:8px;font-size:.65rem;color:#82939b}.r1{left:12%;top:15%;width:34%;height:46%}.r2{left:46%;top:15%;width:36%;height:30%}.r3{left:46%;top:45%;width:24%;height:39%}.duct{position:absolute;height:16px;background:var(--brand);border-radius:3px;box-shadow:inset 0 -4px rgba(0,0,0,.12)}.d1{left:18%;top:35%;width:56%}.d2{left:60%;top:35%;width:16px;height:38%}.fan{position:absolute;left:69%;top:27%;width:46px;height:46px;border:7px solid #2f4550;border-radius:50%;background:#d7eaf5}.pin{position:absolute;width:14px;height:14px;border:3px solid white;border-radius:50%;background:#f2a53a;box-shadow:0 3px 12px rgba(0,0,0,.28)}.p1{left:30%;top:48%}.p2{left:55%;top:65%}

.product-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:16px; }
.product-card { min-height:270px;display:flex;flex-direction:column;padding:25px;border-radius:20px;border:1px solid var(--line);background:white;transition:.25s ease; }.product-card:hover{transform:translateY(-5px);box-shadow:0 22px 55px rgba(7,20,28,.09)}
.product-meta{display:flex;justify-content:space-between;gap:12px;align-items:center}.product-icon{width:44px;height:44px;display:grid;place-items:center;border-radius:13px;background:var(--brand-soft);color:var(--brand);font-weight:850}.status{padding:5px 9px;border-radius:999px;background:#edf2f4;color:#647985;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em}.status.live{background:#e5f6ed;color:#197747}.status.soon{background:#fff4dd;color:#9a6412}
.product-card h3{margin-top:25px;font-size:1.35rem}.product-card p{color:var(--muted);font-size:.94rem}.text-link{display:inline-flex;align-items:center;gap:8px;margin-top:auto;color:var(--brand);font-weight:750}

.map-showcase { display:grid;grid-template-columns:.78fr 1.22fr;gap:44px;align-items:center; }
.map-copy h2{font-size:clamp(2.3rem,4.6vw,4rem)}.map-copy p{color:var(--muted)}.map-facts{display:grid;gap:10px;margin:26px 0}.map-facts div{padding:13px 15px;border-radius:12px;background:white;border:1px solid var(--line);font-weight:650}

.founder { display:grid;grid-template-columns:1fr .85fr;gap:70px;align-items:center}.founder h2{font-size:clamp(2.2rem,4.5vw,3.8rem)}.founder p{color:var(--muted);font-size:1.07rem}.founder-card{position:relative;min-height:330px;padding:32px;border-radius:28px;background:linear-gradient(145deg,var(--brand),#163d56);color:white;overflow:hidden}.founder-card::after{content:"J";position:absolute;right:-25px;bottom:-115px;font-size:25rem;font-weight:850;line-height:1;color:rgba(255,255,255,.08)}.founder-card blockquote{position:relative;z-index:1;margin:0;font-size:1.65rem;line-height:1.35;letter-spacing:-.03em}.founder-card footer{position:absolute;z-index:1;left:32px;bottom:30px;color:#d7edf8}
.cta { padding:70px 0}.cta-panel{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:52px;border-radius:30px;background:var(--ink);color:white;overflow:hidden;position:relative}.cta-panel::after{content:"";position:absolute;width:320px;height:320px;right:-100px;top:-150px;border-radius:50%;background:rgba(51,123,175,.28)}.cta-panel>div,.cta-panel>a{position:relative;z-index:1}.cta-panel h2{font-size:clamp(2rem,4vw,3.3rem)}.cta-panel p{margin-bottom:0;color:#a9c0cb}

.page-hero { padding:90px 0 68px;background:linear-gradient(150deg,#f7fbfd,#eaf5fb);border-bottom:1px solid var(--line)}.page-hero-grid{display:grid;grid-template-columns:1fr .75fr;gap:60px;align-items:end}.page-hero-grid.page-hero-single{grid-template-columns:minmax(0,820px)}.page-hero h1{font-size:clamp(3rem,6vw,5.5rem)}.page-hero p{max-width:680px;color:var(--ink-2);font-size:1.15rem}
.content-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.info-panel{padding:30px;border:1px solid var(--line);border-radius:22px;background:white}.info-panel h3{font-size:1.35rem}.info-panel p,.info-panel li{color:var(--muted)}.info-panel ul{padding-left:20px}.price-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.price-card{padding:30px;border-radius:22px;border:1px solid var(--line);background:white}.price-card.featured{border-color:var(--brand);box-shadow:0 20px 60px rgba(51,123,175,.12)}.price{font-size:2.5rem;font-weight:800;letter-spacing:-.05em}.price small{font-size:.9rem;color:var(--muted);font-weight:500}.roadmap{display:flex;flex-wrap:wrap;gap:9px}.roadmap span{padding:9px 12px;border-radius:999px;background:var(--brand-soft);color:var(--brand-dark);font-weight:650;font-size:.85rem}

.site-footer{padding:58px 0 28px;background:#07141c;color:white}.footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:40px}.footer-brand p{max-width:390px;color:#91aab6}.footer-col h3{font-size:.9rem;letter-spacing:.02em}.footer-col a{display:block;margin-top:10px;color:#91aab6}.footer-col a:hover{color:white}.footer-bottom{display:flex;justify-content:space-between;gap:20px;margin-top:48px;padding-top:22px;border-top:1px solid rgba(255,255,255,.09);color:#718a96;font-size:.82rem}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}.reveal.visible{opacity:1;transform:none}

@media (max-width: 980px){
  .nav-links,.nav-actions>.button{display:none}.menu-toggle{display:flex;position:relative}.nav-links.open{position:fixed;inset:76px 0 0;display:flex;flex-direction:column;align-items:stretch;gap:0;padding:24px;background:white}.nav-links.open>a,.nav-links.open .nav-products>button{width:100%;display:block;padding:15px 4px;text-align:left;border-bottom:1px solid var(--line)}.nav-links.open .product-menu{position:static;width:100%;grid-template-columns:1fr;opacity:1;pointer-events:auto;transform:none;box-shadow:none;border:0;padding:8px 0}.hero-grid,.feature-layout,.map-showcase,.founder,.page-hero-grid{grid-template-columns:1fr}.hero{padding-top:58px}.product-console{max-width:680px}.float-card{right:-5px}.category-grid,.product-grid{grid-template-columns:1fr 1fr}.section-heading{align-items:start;flex-direction:column}.map-frame{height:460px}.footer-grid{grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/-1}
}
@media (max-width: 650px){
  .shell{width:min(100% - 28px,1180px)}.nav{height:68px}.nav-links.open{inset:68px 0 0}.hero{padding:48px 0}.hero-grid{gap:36px}h1{font-size:clamp(2.75rem,14vw,4.3rem)}.product-console{min-height:430px;padding:10px}.console-main{min-height:410px}.console-body{grid-template-columns:55px 1fr;min-height:355px}.console-rail{padding:14px 8px}.rail-block{height:38px}.console-content{padding:16px}.metric-row{grid-template-columns:1fr}.metric:nth-child(n+2){display:none}.float-card{display:none}.trust-inner{padding:24px 0;align-items:start;flex-direction:column}.trust-list{justify-content:start;gap:14px 20px}.section{padding:72px 0}.section-heading{margin-bottom:30px}.category-grid,.product-grid,.content-grid,.price-grid{grid-template-columns:1fr}.category-card{min-height:350px}.feature-layout{gap:38px}.workflow-window{padding:10px}.workflow-steps span:not(.on){display:none}.plan-canvas{height:280px}.map-frame{height:430px;border-width:6px}.founder{gap:30px}.cta-panel{padding:34px 25px;align-items:flex-start;flex-direction:column}.footer-grid{grid-template-columns:1fr}.footer-brand{grid-column:auto}.footer-bottom{flex-direction:column}.page-hero{padding:58px 0 46px}.page-hero-grid{gap:24px}
}
@media (prefers-reduced-motion: reduce){*,*::before,*::after{scroll-behavior:auto!important;animation:none!important;transition:none!important}.reveal{opacity:1;transform:none}}

/* Homepage direction: BMS engineering field manual */
.home-v2 { --mono: "IBM Plex Mono", ui-monospace, monospace; background:#f5f7f8; }
.home-v2 .site-header { background:rgba(245,247,248,.94); border-color:#0b1720; backdrop-filter:blur(14px); }
.home-v2 .nav { height:68px; }
.home-v2 .brand { text-transform:uppercase; letter-spacing:.08em; font-size:1rem; }
.home-v2 .brand-crop { border-radius:0; background:transparent; }
.home-v2 .button { border-radius:0; text-transform:uppercase; font-family:var(--mono); font-size:.78rem; letter-spacing:.04em; }
.home-v2 .nav-links { font-family:var(--mono); font-size:.79rem; text-transform:uppercase; gap:25px; }

.jl-drawing-title { min-height:52px; display:grid; grid-template-columns:1fr auto auto; gap:30px; align-items:center; border-bottom:1px solid var(--ink); font:500 .71rem/1.3 var(--mono); letter-spacing:.05em; }
.jl-hero { overflow:hidden; background:#f5f7f8; }
.jl-hero-grid { min-height:600px; display:grid; grid-template-columns:minmax(0,1.55fr) minmax(290px,.45fr); gap:70px; align-items:center; }
.jl-overline,.jl-label { margin:0 0 18px; font:600 .75rem/1.3 var(--mono); letter-spacing:.09em; text-transform:uppercase; color:var(--brand-dark); }
.jl-hero h1 { max-width:none; font-size:clamp(3.8rem,8.4vw,8.3rem); line-height:.84; font-weight:800; letter-spacing:-.075em; }
.jl-hero h1 em { color:var(--brand); font-style:normal; }
.jl-coordinate { padding-bottom:16px; border-bottom:1px solid var(--ink); font:500 .7rem/1.3 var(--mono); letter-spacing:.08em; }
.jl-lead { margin:28px 0 0; font-size:1.16rem; line-height:1.55; color:var(--ink-2); }
.jl-hero-actions { display:flex; flex-direction:column; align-items:flex-start; gap:22px; margin-top:30px; }
.jl-underlink,.jl-line-link { display:inline-flex; align-items:center; justify-content:space-between; gap:30px; padding-bottom:6px; border-bottom:1px solid currentColor; font:600 .78rem/1.4 var(--mono); text-transform:uppercase; letter-spacing:.04em; }
.jl-spec-strip { display:grid; grid-template-columns:repeat(5,1fr); border-top:1px solid var(--ink); border-bottom:1px solid var(--ink); background:#fff; }
.jl-spec-strip>div { min-height:112px; display:grid; grid-template-columns:auto 1fr; column-gap:12px; align-content:center; padding:16px 18px; border-right:1px solid var(--line); }
.jl-spec-strip>div:last-child { border-right:0; }
.jl-spec-strip span { grid-row:1/3; font:500 .7rem var(--mono); color:var(--brand); }
.jl-spec-strip strong { font-size:.9rem; }
.jl-spec-strip small { font:400 .7rem var(--mono); color:var(--muted); }

.jl-workbench { position:relative; overflow:hidden; padding:120px 0; background:#07141c; color:#fff; }
.jl-workbench::before { content:""; position:absolute; inset:0; pointer-events:none; background-image:linear-gradient(rgba(114,186,228,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(114,186,228,.08) 1px,transparent 1px); background-size:32px 32px; }
.jl-workbench-grid { position:relative; display:grid; grid-template-columns:.66fr 1.34fr; gap:80px; }
.jl-label-light { color:#75bce7; }
.jl-workbench h2 { font-size:clamp(3rem,6vw,6.1rem); line-height:.9; letter-spacing:-.065em; }
.jl-workbench-copy>p:not(.jl-label) { max-width:430px; color:#9fb5c0; }
.jl-workbench .jl-line-link { margin-top:30px; color:#fff; }
.jl-process { position:relative; border-top:1px solid rgba(255,255,255,.28); }
.jl-process-axis { position:absolute; top:0; bottom:0; left:42px; width:1px; background:rgba(117,188,231,.25); display:flex; flex-direction:column; justify-content:space-around; }
.jl-process-axis i { width:7px; height:7px; margin-left:-3px; border-radius:50%; background:#75bce7; box-shadow:0 0 0 5px rgba(117,188,231,.12); }
.jl-process-step { position:relative; z-index:1; min-height:142px; display:grid; grid-template-columns:62px 1fr auto; gap:25px; align-items:center; padding:24px 10px; border-bottom:1px solid rgba(255,255,255,.22); transition:background .2s,padding .2s; }
.jl-process-step:hover { padding-left:18px; background:rgba(51,123,175,.16); }
.jl-step-no { width:30px; height:30px; display:grid; place-items:center; border-radius:50%; background:#07141c; border:1px solid #75bce7; color:#75bce7; font:500 .65rem var(--mono); }
.jl-process-step div { display:grid; gap:5px; }
.jl-process-step small,.jl-process-step b { font:500 .66rem var(--mono); letter-spacing:.07em; color:#7f99a6; }
.jl-process-step b { color:#75bce7; }
.jl-process-step strong { max-width:530px; font-size:1.1rem; line-height:1.35; }

.jl-index { padding:125px 0; background:#f5f7f8; }
.jl-section-top { display:grid; grid-template-columns:.55fr 1fr .7fr; gap:50px; align-items:end; margin-bottom:65px; }
.jl-section-top h2 { font-size:clamp(3rem,6vw,6rem); line-height:.88; }
.jl-section-top>p:last-child { margin:0; color:var(--muted); }
.jl-product-register { border-top:2px solid var(--ink); }
.jl-product-row { display:grid; grid-template-columns:70px 1fr minmax(120px,190px); gap:22px; align-items:center; min-height:125px; border-bottom:1px solid var(--ink); transition:background .18s,color .18s,padding .18s; }
.jl-product-row:hover { padding-inline:18px; background:var(--ink); color:#fff; }
.jl-product-row:focus-visible { padding-inline:18px; background:var(--ink); color:#fff; outline:3px solid var(--brand); outline-offset:3px; }
.jl-row-no { font:500 .72rem var(--mono); color:var(--brand); }
.jl-row-title { display:flex; align-items:baseline; gap:30px; }
.jl-row-title h3 { min-width:310px; font-size:clamp(1.6rem,3vw,2.7rem); letter-spacing:-.05em; }
.jl-row-title h3 small { font-size:.45em; font-family:var(--mono); letter-spacing:0; color:var(--muted); }
.jl-row-title p { margin:0; color:var(--muted); font-family:var(--mono); font-size:.76rem; }
.jl-row-action { display:grid; justify-items:end; justify-self:stretch; font:600 .68rem var(--mono); }
.jl-row-action>span { grid-area:1/1; transition:opacity .18s,transform .18s; }
.jl-status { opacity:0; transform:translateY(7px); color:#9ed8fa; text-align:right; }
.jl-status-live { color:#72e2a3; }
.jl-product-row:hover .jl-view,.jl-product-row:focus-visible .jl-view { opacity:0; transform:translateY(-7px); }
.jl-product-row:hover .jl-status,.jl-product-row:focus-visible .jl-status { opacity:1; transform:translateY(0); }


.jl-origin { padding:130px 0; background:#fff; }
.jl-origin-grid { display:grid; grid-template-columns:.7fr 1.3fr; gap:100px; align-items:center; }
.jl-origin-mark { min-height:430px; display:grid; place-content:center; background:#f5f7f8; border:1px solid var(--ink); text-align:center; }
.jl-origin-mark span { color:var(--brand); font-size:14rem; line-height:.72; font-weight:800; letter-spacing:-.12em; }
.jl-origin-mark small { margin-top:40px; font:600 .68rem/1.6 var(--mono); letter-spacing:.12em; }
.jl-origin-copy { max-width:690px; }
.jl-origin-copy h2 { font-size:clamp(3rem,6vw,5.8rem); line-height:.92; }
.jl-origin-copy>p:not(.jl-label) { margin:28px 0; color:var(--muted); font-size:1.08rem; }
.jl-origin-copy blockquote { margin:35px 0; padding:22px 0 22px 28px; border-left:4px solid var(--brand); font-size:1.35rem; font-weight:600; }

.jl-contact { padding:80px 0; background:#286895; color:#fff; }
.jl-contact-grid { display:grid; grid-template-columns:.45fr 1fr 1fr; gap:40px; align-items:center; }
.jl-contact h2 { font-size:clamp(2rem,4vw,3.7rem); }
.jl-contact-link { justify-self:end; padding:16px 0; border-bottom:1px solid #fff; font:500 .8rem var(--mono); }
.home-v2 .site-footer { border-top:0; }

@media(max-width:980px){
  .jl-hero-grid{grid-template-columns:1fr;gap:25px;padding:80px 0}.jl-hero-intro{max-width:620px}.jl-spec-strip{grid-template-columns:repeat(3,1fr)}.jl-spec-strip>div:nth-child(3){border-right:0}
  .jl-workbench-grid,.jl-origin-grid{grid-template-columns:1fr;gap:55px}.jl-section-top{grid-template-columns:1fr 1fr}.jl-section-top>p:first-child{grid-column:1/-1}.jl-product-row{grid-template-columns:55px 1fr minmax(105px,155px)}.jl-row-title{display:block}.jl-row-title h3{min-width:0}.jl-row-title p{margin-top:8px}.jl-contact-grid{grid-template-columns:1fr}.jl-contact-link{justify-self:start}
}
@media(max-width:650px){
  .jl-drawing-title{grid-template-columns:1fr auto}.jl-drawing-title span:last-child{display:none}.jl-hero-grid{min-height:auto;padding:60px 0}.jl-hero h1{font-size:clamp(3.25rem,17vw,5rem)}.jl-spec-strip{grid-template-columns:1fr 1fr}.jl-spec-strip>div:nth-child(2n){border-right:0}.jl-spec-strip>div:nth-child(3){border-right:1px solid var(--line)}
  .jl-workbench,.jl-index,.jl-origin{padding:78px 0}.jl-workbench-grid{gap:45px}.jl-process-step{grid-template-columns:44px 1fr auto;gap:12px}.jl-process-axis{left:25px}.jl-section-top{grid-template-columns:1fr;gap:20px;margin-bottom:40px}.jl-section-top>p:first-child{grid-column:auto}.jl-product-row{grid-template-columns:36px 1fr minmax(92px,120px);min-height:112px;gap:12px}.jl-row-action{grid-column:3;grid-row:1}.jl-row-title h3{font-size:1.55rem}.jl-row-title p{font-size:.67rem}.jl-status{font-size:.6rem}.jl-origin-copy blockquote{font-size:1.1rem}.jl-contact-link{font-size:.67rem}.home-v2 .nav{height:68px}
}

/* September 2026 product-page revision */
.brand-crop,
.home-v2 .brand-crop {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.brand-crop img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.home-v2 .brand { text-transform: none; }
.jl-origin-single { display:grid; grid-template-columns:minmax(0,760px); }

.product-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.product-visual img { width:100%; height:auto; }
.product-visual figcaption {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 600 .7rem/1.4 "IBM Plex Mono", monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-visual-dark { border-color:rgba(255,255,255,.18); background:#07141c; }
.product-visual-dark figcaption { color:#a9c5d4; border-color:rgba(255,255,255,.15); }
.product-window { position:relative; margin:0; overflow:hidden; border:1px solid #adc5d2; border-radius:20px; background:#07141c; box-shadow:0 24px 70px rgba(7,20,28,.18); }
.product-window::before { content:""; position:absolute; inset:0; z-index:1; pointer-events:none; border:1px solid rgba(255,255,255,.28); border-radius:inherit; }
.product-demo { width:100%; height:auto; display:block; object-fit:contain; background:#07141c; cursor:pointer; }
.product-demo:focus-visible { outline:4px solid var(--brand); outline-offset:-4px; }
.product-window-dark { border-color:rgba(255,255,255,.22); }
.demo-caption { padding:11px 18px; border-top:1px solid rgba(255,255,255,.14); background:#07141c; color:#a9c5d4; font:600 .68rem/1.4 "IBM Plex Mono",monospace; letter-spacing:.05em; text-transform:uppercase; }
.jnex-demo-layout { display:grid; grid-template-columns:1fr; gap:22px; align-items:start; }
.product-window-jnex { width:100%; max-width:1920px; justify-self:center; }
.jnex-feature-index { padding:24px; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:var(--shadow); }
.jnex-feature-index h3 { margin-bottom:18px; font-size:1.45rem; }
.jnex-feature-index ol { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; margin:0; padding:1px; list-style:none; overflow:hidden; border:1px solid var(--line); border-radius:13px; background:var(--line); }
.jnex-feature-index li { display:grid; grid-template-columns:34px 1fr; align-content:start; column-gap:10px; min-height:108px; padding:14px; background:#fff; }
.jnex-feature-index li span { grid-row:span 2; color:var(--brand); font:650 .7rem "IBM Plex Mono",monospace; }
.jnex-feature-index li strong { font-size:.92rem; }
.jnex-feature-index li small { color:var(--muted); font-size:.78rem; line-height:1.45; }

.equipment-browser {
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:var(--shadow);
}
.equipment-toolbar {
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:12px 20px;
  border-bottom:1px solid var(--line);
}
.equipment-toolbar span { color:var(--brand-dark); font:600 .68rem "IBM Plex Mono",monospace; letter-spacing:.06em; }
.equipment-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); }
.equipment-grid figure { margin:0; padding:28px; background:#fff; }
.equipment-grid img { width:100%; height:330px; object-fit:contain; pointer-events:none; user-select:none; }
.equipment-grid figcaption { padding-top:15px; border-top:1px solid var(--line); font-weight:700; }

.library-showcase { overflow:hidden; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:var(--shadow); }
.library-screen { margin:0; }
.library-screen img { display:block; width:100%; aspect-ratio:16/10; object-fit:cover; object-position:center; user-select:none; pointer-events:none; }
.library-screen figcaption { padding:12px 18px; border-top:1px solid var(--line); color:var(--muted); font:600 .7rem/1.4 "IBM Plex Mono",monospace; letter-spacing:.05em; text-transform:uppercase; }
.library-index { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); }
.library-index span { padding:18px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); color:var(--ink-2); font-weight:750; }
.library-index span:nth-child(3n) { border-right:0; }

.library-live { display:grid; grid-template-columns:minmax(0,1fr) 330px; overflow:hidden; min-height:680px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:var(--shadow); }
.library-viewer { min-width:0; display:grid; grid-template-rows:auto 1fr auto; background:#f7fafb; }
.library-viewer-bar,.library-viewer-foot { min-height:58px; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:12px 20px; border-bottom:1px solid var(--line); }
.library-viewer-bar strong { font-size:.95rem; }
.library-viewer-bar span,.library-viewer-foot span { color:var(--muted); font:600 .68rem "IBM Plex Mono",monospace; letter-spacing:.05em; text-transform:uppercase; }
.library-canvas-stage { position:relative; min-height:560px; }
.library-viewer canvas { width:100%; height:560px; display:block; touch-action:none; cursor:grab; }
.library-viewer canvas:active { cursor:grabbing; }
.library-viewer-foot { border-top:1px solid var(--line); border-bottom:0; }
.library-viewer-foot button { padding:8px 12px; border:1px solid var(--line); border-radius:9px; background:#fff; color:var(--ink); font-weight:700; cursor:pointer; }
.library-picker { max-height:680px; overflow-y:auto; padding:30px 24px; border-left:1px solid var(--line); background:#fff; }
.library-picker h3 { margin-bottom:22px; font-size:1.55rem; }
.library-model { width:100%; display:grid; gap:4px; margin-bottom:10px; padding:16px; text-align:left; border:1px solid var(--line); border-radius:13px; background:#fff; color:var(--ink); cursor:pointer; transition:.2s ease; }
.library-model:hover,.library-model.is-active { border-color:var(--brand); background:var(--brand-soft); transform:translateX(-3px); }
.library-model span { color:var(--brand-dark); font:650 .66rem "IBM Plex Mono",monospace; letter-spacing:.05em; text-transform:uppercase; }
.library-model strong { font-size:.96rem; }
.library-controls { position:absolute; z-index:3; left:20px; bottom:20px; width:min(320px,calc(100% - 40px)); margin:0; padding:18px; border:1px solid rgba(51,123,175,.3); border-radius:15px; background:rgba(255,255,255,.94); box-shadow:0 16px 42px rgba(7,20,28,.16); backdrop-filter:blur(12px); }
.library-controls .kicker { margin-bottom:13px; }
.library-control-buttons { display:grid; gap:8px; }
.library-control-grid { grid-template-columns:1fr 1fr; }
.library-control-buttons button { min-height:42px; padding:9px 11px; border:1px solid var(--line); border-radius:10px; background:#fff; color:var(--ink); font-size:.82rem; font-weight:750; cursor:pointer; }
.library-control-buttons button:hover,.library-control-buttons button.is-on { border-color:var(--brand); background:var(--brand-soft); color:var(--brand-dark); }
.library-control-buttons button.is-alarm { border-color:#dc6262; background:#fff0f0; color:#9b2424; }
.library-range { display:grid; gap:9px; margin-top:15px; color:var(--ink-2); font-size:.8rem; font-weight:700; }
.library-range span { display:flex; justify-content:space-between; gap:14px; }
.library-range output { color:var(--brand-dark); font:650 .7rem "IBM Plex Mono",monospace; }
.library-range input { width:100%; accent-color:var(--brand); cursor:pointer; }
.library-static-note { margin:0; color:var(--muted); font-size:.82rem; }
.library-lock { margin-top:28px; padding:18px; border-radius:13px; background:#07141c; color:#fff; }
.library-lock p { margin:6px 0 0; color:#a9c5d4; font-size:.82rem; }

.map-gallery { display:grid; grid-template-columns:1.35fr .65fr; gap:16px; }
.map-gallery figure { margin:0; overflow:hidden; border:1px solid var(--line); border-radius:18px; background:#fff; }
.map-gallery-main { grid-row:span 2; }
.map-gallery img { width:100%; height:100%; min-height:240px; object-fit:cover; }
.map-gallery figcaption { padding:10px 14px; color:var(--muted); font-size:.78rem; font-weight:700; }
.real-map-frame { overflow:hidden; border:1px solid var(--line); border-radius:20px; background:#07141c; box-shadow:var(--shadow); }
.real-map-toolbar { min-height:54px; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:10px 18px; color:#fff; }
.real-map-toolbar strong { letter-spacing:-.02em; }
.real-map-toolbar span { color:#9fc8df; font:600 .7rem "IBM Plex Mono",monospace; letter-spacing:.04em; }
#product-map { width:100%; height:min(66vh,650px); min-height:460px; background:#dce8ee; }
.real-map-note { padding:12px 18px; color:#9fb5c0; font-size:.75rem; border-top:1px solid rgba(255,255,255,.12); }
.maplibregl-popup-content { border-radius:12px; padding:14px 16px; box-shadow:0 12px 35px rgba(7,20,28,.22); }
.maplibregl-popup-content strong { color:var(--ink); font-size:.95rem; }
.maplibregl-popup-content span { color:var(--muted); font-size:.78rem; }
.map-steps { display:grid; grid-template-columns:1fr 1fr; gap:1px; margin:0; padding:1px; list-style:none; background:var(--line); border:1px solid var(--line); border-radius:20px; overflow:hidden; }
.map-steps li { display:grid; grid-template-columns:52px 1fr; gap:18px; min-height:190px; padding:28px; background:#fff; }
.map-steps li>span { color:var(--brand); font:600 .76rem "IBM Plex Mono",monospace; }
.map-steps h3 { margin-bottom:10px; font-size:1.2rem; }
.map-steps p { margin:0; color:var(--muted); }
.map-explainer { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:18px; align-items:center; margin-top:26px; padding:24px 28px; border-radius:16px; background:#07141c; color:#fff; }
.map-explainer strong { color:#75bce7; }
.map-explainer p { margin:6px 0 0; color:#b8ccd6; font-size:.88rem; }
.map-explainer>span { color:#75bce7; font-size:1.4rem; }

.quotation-panel,
.mailing-panel {
  display:grid;
  grid-template-columns:1fr auto;
  gap:50px;
  align-items:center;
}
.quotation-panel h2,
.mailing-panel h2 { font-size:clamp(2.2rem,5vw,4.5rem); }
.quotation-panel p,
.mailing-panel p { max-width:680px; color:var(--muted); }
.mailing-section { padding:90px 0; background:#07141c; color:#fff; }
.mailing-panel { grid-template-columns:.9fr 1.1fr; }
.mailing-panel .kicker { color:#75bce7; }
.mailing-panel p { color:#a9c5d4; }
.mailing-form { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.mailing-form label { display:grid; gap:7px; color:#dcebf2; font-size:.78rem; font-weight:700; }
.mailing-form input { width:100%; min-height:48px; padding:0 14px; border:1px solid rgba(255,255,255,.24); border-radius:10px; outline:0; background:rgba(255,255,255,.08); color:#fff; }
.mailing-form textarea { width:100%; min-height:86px; padding:12px 14px; resize:vertical; border:1px solid rgba(255,255,255,.24); border-radius:10px; outline:0; background:rgba(255,255,255,.08); color:#fff; font:inherit; }
.mailing-form input:focus,.mailing-form textarea:focus { border-color:#75bce7; box-shadow:0 0 0 3px rgba(117,188,231,.15); }
.mailing-form input::placeholder,.mailing-form textarea::placeholder { color:#88a5b5; }
.enquiry-form label:last-of-type { grid-column:1/-1; }
.mailing-form .button { grid-column:1/-1; justify-self:start; }
.feature-detail { padding-top:14px; margin-top:16px; border-top:1px solid var(--line); font-size:.92rem; }

@media(hover:none){
  .jl-row-action .jl-view{display:none}
  .jl-row-action .jl-status{opacity:1;transform:none;color:var(--brand-dark)}
  .jl-row-action .jl-status-live{color:#197747}
}
.form-trap { display:none !important; }

.screenshot-needed {
  margin-top:32px;
  padding:32px;
  border:1px dashed rgba(51,123,175,.55);
  background:var(--brand-soft);
}
.screenshot-needed strong { font-size:1.1rem; }
.screenshot-needed p { margin:6px 0 0; color:var(--muted); }
.diagnostic-preview { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin-top:38px; background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.16); }
.diagnostic-preview>div { min-height:170px; padding:28px; display:flex; flex-direction:column; justify-content:space-between; background:#0c202c; }
.diagnostic-preview span { color:#75bce7; font:600 .7rem "IBM Plex Mono",monospace; text-transform:uppercase; letter-spacing:.07em; }
.diagnostic-preview strong { font-size:1.1rem; }

@media(max-width:780px){
  .equipment-grid,.map-gallery,.mailing-panel,.quotation-panel,.diagnostic-preview,.library-index,.map-steps,.jnex-demo-layout { grid-template-columns:1fr; }
  .map-gallery-main { grid-row:auto; }
  .equipment-grid img { height:240px; }
  .jnex-feature-index ol { grid-template-columns:1fr; }
  .mailing-form { grid-template-columns:1fr; }
  .real-map-toolbar { align-items:flex-start; flex-direction:column; gap:2px; }
  #product-map { min-height:430px; }
  .library-index span,.library-index span:nth-child(3n) { border-right:0; }
  .library-live { grid-template-columns:1fr; min-height:0; }
  .library-canvas-stage { min-height:0; display:grid; }
  .library-viewer canvas { height:420px; }
  .library-controls { position:static; width:auto; margin:0 14px 14px; }
  .library-picker { border-left:0; border-top:1px solid var(--line); }
  .map-explainer { grid-template-columns:1fr; }
  .map-explainer>span { transform:rotate(90deg); justify-self:start; }
}
