/* ═══════════════════════════════════════════════════════════
   wegloc® Design System v3 — Operational, Precise, Grounded
   ═══════════════════════════════════════════════════════════ */

/* Registered-trademark mark: always superscript, consistent across the whole site */
.reg { font-size: 0.58em; vertical-align: super; line-height: 0; font-weight: inherit; margin-left: 0.5px; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* ── wegloc® Brand CI — extracted from product app ──────── */

  /* Primary green — #B5D327 App-Lime (wegloc Portal active color) */
  --green:       #B5D327;
  --green-hi:    #C4E136;
  --green-lo:    #8BA51C;
  --green-5:     rgba(181, 211, 39, 0.05);
  --green-10:    rgba(181, 211, 39, 0.10);
  --green-20:    rgba(181, 211, 39, 0.22);

  /* Secondary green — for illustrations & connector nodes */
  --green-brand: #18B462;
  --green-brand-10: rgba(24, 180, 98, 0.10);
  --green-brand-20: rgba(24, 180, 98, 0.20);

  /* Purple accent — from app status badges #6C48E9 */
  --purple:      #6C48E9;
  --purple-10:   rgba(108, 72, 233, 0.10);
  /* Portal-style accent gradient: indigo → green (green stays primary, this is accent only) */
  --grad:        linear-gradient(120deg, #6C48E9 0%, #5B8F6B 52%, #B5D327 100%);
  --grad-line:   linear-gradient(90deg, transparent, #6C48E9, #B5D327, transparent);

  /* Ink — neutral dark, matches app sidebar text */
  --ink:         #111827;
  --ink-2:       #1F2937;
  --ink-3:       #374151;
  --ink-4:       #4B5563;
  --ink-5:       #6B7280;
  --ink-6:       #9CA3AF;
  --ink-7:       #D1D5DB;
  --ink-8:       #E5E7EB;
  --ink-9:       #F3F4F6;

  /* Surfaces */
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --paper:       #F4F3EF;
  --paper-2:     #ECEAE5;

  /* Dark surfaces — from app sidebar #1B2034 */
  --dark:        #1B2034;
  --dark-2:      #242A42;
  --dark-3:      #2E3650;

  /* Borders */
  --border:      #E5E7EB;
  --border-2:    #D1D5DB;

  /* Radii */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl:32px;

  /* Layout */
  --side: clamp(20px, 5.5vw, 72px);

  /* Easing */
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease2: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; width: 100%; max-width: 100%;
  position: relative;
}
/* Hard guard: nothing may create horizontal scroll / side-drag on mobile */
.page, #home-hero, #home-sections, .sec, footer, .trust-bar { max-width: 100%; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── Nav ─────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  height: 64px;
  display: flex; align-items: center;
  padding: 0 var(--side);
  transition: background 0.3s var(--ease2), box-shadow 0.3s;
}
#nav.filled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex; align-items: center;
  margin-right: 40px; flex-shrink: 0;
  cursor: pointer; text-decoration: none;
}
.nav-w-logo {
  height: 36px; width: 36px;
  object-fit: contain; display: block;
  border-radius: 8px;
  /* black W on white bg — no extra CSS needed, bg is in the PNG */
}
.footer-w-logo {
  height: 36px; width: 36px;
  object-fit: contain; display: block;
  margin-bottom: 16px;
  opacity: 0.9;
  /* white W on transparent — blends into dark footer */
}
/* nav-logo sup removed — logo is now image */

.nav-items {
  display: flex; align-items: stretch;
  height: 100%; flex: 1;
}
.nav-item { position: relative; display: flex; align-items: center; }
.nav-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 0 14px; height: 100%;
  font-size: 14px; font-weight: 500; color: var(--ink-4);
  cursor: pointer; user-select: none; white-space: nowrap;
  transition: color 0.15s;
}
.nav-btn:hover, .nav-item.open .nav-btn { color: var(--ink); }
.nav-chevron {
  width: 11px; height: 11px;
  transition: transform 0.2s var(--ease2); opacity: 0.5;
}
.nav-item.open .nav-chevron { transform: rotate(180deg); opacity: 0.8; }

/* ── Lang toggle ─────────────────────────────────────────── */
.lang-toggle {
  display: flex; align-items: center; gap: 3px;
  font-size: 12.5px; font-weight: 600;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 5px 10px;
  color: var(--ink-4);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--ink-5); color: var(--ink); }
.lang-flag { width: 20px; height: 14px; display: block; flex: none; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }

/* ── Mega Menu ───────────────────────────────────────────── */
.mega-drop {
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px var(--side) 36px;
  box-shadow: 0 12px 40px rgba(27,32,52,0.07);
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s var(--ease2), transform 0.22s var(--ease2);
}
.nav-item.open .mega-drop {
  opacity: 1; pointer-events: auto; transform: none;
}

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

.mega-col-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-6); margin-bottom: 12px;
}

.mega-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px; border-radius: var(--r-md);
  transition: background 0.15s;
}
/* Items that should be clickable */
.mega-item[data-page] {
  cursor: pointer;
}
.mega-item[data-page]:hover { background: var(--paper); }
/* Items that are descriptive (no cursor, no hover) */
.mega-item:not([data-page]) {
  cursor: default;
}

.mega-ico {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--green-10); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  transition: background 0.2s, transform 0.2s;
}
.mega-item[data-page]:hover .mega-ico {
  background: var(--green-20);
  transform: scale(1.06);
}

.mega-text strong {
  display: block; font-size: 13.5px; font-weight: 700;
  color: var(--ink); margin-bottom: 3px;
}
.mega-text span { font-size: 12px; color: var(--ink-5); line-height: 1.4; }

.mega-highlight {
  background: var(--green-5); border: 1px solid var(--green-20);
  border-radius: var(--r-md); padding: 14px 16px;
  font-size: 12.5px; color: var(--green-lo); font-weight: 500; line-height: 1.5;
  margin-top: 4px;
}

.mega-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.mega-tag {
  font-size: 12px; font-weight: 500; color: var(--ink-5);
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px; cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.mega-tag:hover {
  color: var(--green-lo); border-color: var(--green-20);
  background: var(--green-5);
}

/* Nav end */
.nav-end {
  margin-left: auto; display: flex; align-items: center;
  gap: 6px; flex-shrink: 0;
}
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--ink-4);
  padding: 0 10px; transition: color 0.15s; cursor: pointer;
}
.nav-link:hover { color: var(--ink); }
.nav-cta {
  background: var(--grad); color: white;
  background-size: 140% 140%; background-position: 0% 50%;
  font-size: 13.5px; font-weight: 700;
  padding: 9px 20px; border-radius: var(--r-sm);
  cursor: pointer;
  transition: background-position 0.3s var(--ease), box-shadow 0.2s;
}
.nav-cta:hover { background-position: 100% 50%; box-shadow: 0 4px 16px rgba(108,72,233,0.28); }

/* ── Pages ───────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── Animations ──────────────────────────────────────────── */
.ani {
  opacity: 0;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.ani-up    { transform: translateY(32px); }
.ani-left  { transform: translateX(-32px); }
.ani-right { transform: translateX(32px); }
.ani-scale { transform: scale(0.94); }
.ani-blur  { transform: scale(0.97); filter: blur(4px); }
.ani.triggered { opacity: 1; transform: none; filter: none; }

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

.word-split .word {
  overflow: hidden; display: inline-block;
  vertical-align: bottom; margin-right: 0.25em;
}
.word-split .word span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.65s var(--ease);
}
.word-split.triggered .word span { transform: none; }
.word-split .word:nth-child(1) span { transition-delay: 0.00s; }
.word-split .word:nth-child(2) span { transition-delay: 0.06s; }
.word-split .word:nth-child(3) span { transition-delay: 0.12s; }
.word-split .word:nth-child(4) span { transition-delay: 0.18s; }
.word-split .word:nth-child(5) span { transition-delay: 0.24s; }
.word-split .word:nth-child(6) span { transition-delay: 0.30s; }
.word-split .word:nth-child(7) span { transition-delay: 0.36s; }
.word-split .word:nth-child(8) span { transition-delay: 0.42s; }

@keyframes fade-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes float    { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-r  { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-6px) rotate(3deg); } }
@keyframes pulse-ico{ 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes orbit    { from { transform: rotate(0deg) translateX(32px); } to { transform: rotate(360deg) translateX(32px); } }
@keyframes line-shimmer {
  0%   { opacity: 0; transform: scaleX(0.3); }
  50%  { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0.3); }
}
@keyframes scroll-drop {
  0%,100% { transform: scaleY(1) translateY(0); opacity: 0.4; }
  50%      { transform: scaleY(0.6) translateY(-6px); opacity: 1; }
}
@keyframes dot-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%       { opacity: 1; transform: scale(1.2); }
}

/* ── Typography ──────────────────────────────────────────── */
.h1 {
  font-size: clamp(34px, 5.5vw, 72px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.0;
}
.h2 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.08;
}
.h3 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
}
.h4 {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 600; letter-spacing: -0.015em; line-height: 1.2;
}
.h5 {
  font-size: clamp(14.5px, 1.6vw, 17.5px);
  font-weight: 700; letter-spacing: -0.01em;
}
.lead {
  font-size: clamp(16px, 1.9vw, 19.5px);
  line-height: 1.65; max-width: 60ch;
}
.body { font-size: 15px; line-height: 1.75; color: var(--ink-4); }
.small { font-size: 13px; color: var(--ink-5); }

.c-green  { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.c-ink    { color: var(--ink); }
.c-4      { color: var(--ink-4); }
.c-5      { color: var(--ink-5); }
.c-white  { color: var(--white); }
/* Use span.c-green in headings instead of em */
h1 em, h2 em, h3 em, h4 em { font-style: normal; }

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 16px; height: 1.5px; background: var(--grad); border-radius: 1px; }
.eyebrow.dark { color: rgba(255,255,255,0.5); }
.eyebrow.dark::before { background: rgba(255,255,255,0.3); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.btn:active { transform: scale(0.97); }

.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-hi); box-shadow: 0 4px 16px rgba(24,180,98,0.3); }

.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--ink-2); box-shadow: 0 6px 20px rgba(27,32,52,0.18); }

.btn-outline {
  border: 1.5px solid var(--border-2); color: var(--ink-4);
  background: transparent;
}
.btn-outline:hover { border-color: var(--ink-4); color: var(--ink); }
.btn-outline.active { border-color: var(--green); color: var(--green); }

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.2); color: white;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
}

/* Sizing kept tight + consistent so every button reads as one family */
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 12px 26px; font-size: 14.5px; }
.btn-xl { padding: 13px 28px; font-size: 15px; }

/* ── Sections ────────────────────────────────────────────── */
/* Skip rendering work for off-screen sections (progressive enhancement;
   ignored by browsers without support). contain-intrinsic-size:auto keeps
   the real size once measured, so there is no scroll jump. */
.sec, footer { content-visibility: auto; contain-intrinsic-size: auto 600px; }
.sec { padding: clamp(48px, 6vw, 84px) var(--side); }
.sec-sm { padding: clamp(36px, 4.5vw, 56px) var(--side); }
.sec-xs { padding: clamp(28px, 3.5vw, 44px) var(--side); }
.sec-white   { background: var(--white); }
.sec-off     { background: var(--off-white); }
.sec-paper   { background: var(--paper); }
.sec-paper-2 { background: var(--paper-2); }
.sec-dark    { background: var(--dark); }
.sec-dark-2  { background: var(--dark-2); }

/* ── Hero ─────────────────────────────────────────────────── */
#home-hero {
  min-height: 100svh;
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 100px var(--side) clamp(64px, 9vw, 96px);
  position: relative; overflow: hidden;
}

/* dot-grid background */
#home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.7;
}

.hero-left {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: flex-start;
}
.hero-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}

.hero-line {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-line);
  animation: line-shimmer 3s ease-in-out infinite;
}

/* Trust badges — below headline */
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
  animation: slide-up 0.7s var(--ease) 0.4s both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; color: var(--ink-4);
  background: var(--white); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 100px;
  box-shadow: 0 1px 3px rgba(27,32,52,0.04);
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: dot-pulse 2.5s ease-in-out infinite;
}

/* Hero stats */
.hero-stats-strip {
  display: flex; gap: 0;
  border-top: 1px solid var(--border-2);
  margin-top: 48px;
}
.hero-stat { padding: 24px 0; padding-right: 40px; margin-right: 40px; border-right: 1px solid var(--border); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.04em; color: var(--ink);
  line-height: 1; margin-bottom: 4px;
}
.hero-stat-label { font-size: 12px; color: var(--ink-5); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; right: var(--side); bottom: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fade-in 1s ease 2s forwards;
}
.hero-scroll-indicator span {
  writing-mode: vertical-lr;
  font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-6);
}
.scroll-line {
  width: 2px; height: 50px; border-radius: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--green), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

/* ── Network SVG Hero ─────────────────────────────────────── */
.hero-network-wrap {
  width: 100%; max-width: 560px;
  margin: 0 auto;
  animation: fade-in 1s ease 0.8s both;
}
.hero-network-wrap svg { width: 100%; height: auto; overflow: visible; }

/* Node styles matching .mega-ico */
.net-node-bg {
  fill: var(--green-10); rx: 9;
}
.net-node-icon {
  stroke: var(--green); fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.net-center-bg { fill: var(--green); }
.net-center-text { fill: white; font-family: inherit; font-weight: 800; font-size: 10px; letter-spacing: -0.02em; }
.net-path {
  stroke: var(--border-2); stroke-width: 1.5;
  stroke-dasharray: 5 4; fill: none;
  transition: stroke 0.25s;
}
.net-path.hovered { stroke: var(--green); }
.net-label {
  font-family: inherit; font-size: 9.5px; font-weight: 600;
  fill: var(--ink-4); text-anchor: middle;
}
.net-node-group:hover .net-node-bg { fill: rgba(24,180,98,0.18); }
.net-dot {
  fill: var(--green); r: 3.5;
}

/* ── Trust bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--paper); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px var(--side);
  display: flex; align-items: center; gap: 16px;
  overflow: visible;
}
.trust-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-5); opacity: 0.9; white-space: nowrap; flex-shrink: 0;
}
.trust-sep { width: 1px; height: 15px; background: var(--border-2); flex-shrink: 0; }
.trust-logos {
  display: flex; align-items: center;
  justify-content: space-between;
  flex: 1; gap: 26px;
  animation: none !important;
}
.trust-logo {
  font-size: 12.5px; font-weight: 700; color: var(--ink-5);
  letter-spacing: -0.01em; opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
}
.trust-logo:hover { opacity: 1; color: var(--ink-3); }
.trust-more { font-style: italic; font-weight: 600; opacity: 0.7; }

/* ── Image / Icon illustration cards ─────────────────────── */
.icon-scene {
  border-radius: var(--r-2xl); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: 0 24px 64px rgba(27,32,52,0.1);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.icon-scene svg { overflow: visible; }

/* ── Icon illustration helpers ───────────────────────────── */
.ico-node {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--green-10); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.ico-node.large {
  width: 68px; height: 68px; border-radius: 17px;
}

/* ── Product cards ───────────────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.pc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.pc::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pc:hover { transform: translateY(-5px); border-color: var(--border-2); box-shadow: 0 16px 40px rgba(27,32,52,0.08); }
.pc:hover::before { transform: scaleX(1); }

.pc-w7 { grid-column: span 7; }
.pc-w5 { grid-column: span 5; }
.pc-w4 { grid-column: span 4; }

.pc-ico {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--green-10); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.2s, transform 0.2s;
}
.pc:hover .pc-ico { background: var(--green-20); transform: scale(1.05) rotate(-2deg); }
.pc-label { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.pc-name { font-size: clamp(17px, 2vw, 24px); font-weight: 800; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 10px; }
.pc-desc { font-size: 14px; color: var(--ink-5); line-height: 1.6; }
.pc-arrow {
  position: absolute; bottom: 24px; right: 24px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-5); transition: background 0.2s, transform 0.2s, color 0.2s;
}
.pc:hover .pc-arrow { background: var(--green); color: white; transform: translate(2px,-2px); border-color: var(--green); }

/* ── Feature rows ────────────────────────────────────────── */
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.feat-row.flip { direction: rtl; }
.feat-row.flip > * { direction: ltr; }
.feat-row > * { min-width: 0; }

.feat-text .eyebrow { margin-bottom: 16px; }
.feat-text .h3 { margin-bottom: 18px; }
.feat-text .body { margin-bottom: 28px; }

.feat-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14.5px; color: var(--ink-4); line-height: 1.5;
}
.feat-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-10); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* Icon composition (replaces feat-img photo) */
.feat-illustration {
  border-radius: var(--r-2xl); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: 0 24px 64px rgba(27,32,52,0.1);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}

/* ── Unified graphic engine: wegloc hub + satellites, 3D build on scroll ── */
.gfx {
  position: relative; width: 100%; aspect-ratio: 3/2;
  border-radius: var(--r-2xl); overflow: hidden;
  container-type: size;
  background: linear-gradient(157deg, #F7F6F2 0%, #EBEAE3 100%);
  box-shadow: 0 24px 64px rgba(27,32,52,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
}
/* fill an existing illustration box without doubling the frame */
.feat-illustration > .gfx, .ph-illustration > .gfx {
  width: 100%; height: 100%; aspect-ratio: auto;
  border-radius: inherit; box-shadow: none;
}
.gfx-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(27,32,52,0.06) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 45%, #000 52%, transparent 100%);
  mask-image: radial-gradient(120% 100% at 50% 45%, #000 52%, transparent 100%);
}
.gfx-glow {
  position: absolute; left: 50%; top: 48%; width: 66%; height: 66%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(108,72,233,0.16), rgba(181,211,39,0.06) 46%, transparent 70%);
  opacity: 0; transition: opacity 1s var(--ease);
}
.gfx.built .gfx-glow { opacity: 1; }
.gfx-stage { position: absolute; inset: 0; perspective: 1100px; perspective-origin: 50% 42%; transform-style: preserve-3d; }

.gfx-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.gfx-line {
  stroke: #C3C0B7; stroke-width: 1.4; stroke-dasharray: 4 5;
  vector-effect: non-scaling-stroke; opacity: 0;
  transition: opacity 0.7s var(--ease); transition-delay: var(--d,0s);
}
.gfx.built .gfx-line { opacity: 1; animation: gfxDash 1.1s linear infinite; }
@keyframes gfxDash { to { stroke-dashoffset: -18; } }

.gfx-node {
  position: absolute; transform-style: preserve-3d;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  transform: translate(-50%,-50%) translate3d(var(--dx,0px), var(--dy,0px), -150px) rotateX(16deg) scale(0.8);
  opacity: 0; will-change: transform, opacity;
  transition: transform 0.85s var(--ease), opacity 0.6s var(--ease);
  transition-delay: var(--d,0s);
}
.gfx.built .gfx-node { transform: translate(-50%,-50%) translateZ(0) rotateX(0) scale(1); opacity: 1; }
.gfx-node-ic {
  width: 14cqw; height: 14cqw; max-width: 60px; max-height: 60px;
  border-radius: 28%; background: #fff; border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(27,32,52,0.10);
  display: flex; align-items: center; justify-content: center; color: #7A9216;
}
.gfx-node-ic svg { width: 37%; height: 37%; }
.gfx.built .gfx-node-ic { animation: gfxBob 4.4s ease-in-out infinite; animation-delay: var(--d,0s); }
@keyframes gfxBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.gfx-node.is-accent .gfx-node-ic {
  background: linear-gradient(150deg, rgba(108,72,233,0.16), rgba(108,72,233,0.06));
  color: var(--purple); border-color: rgba(108,72,233,0.24);
}
.gfx-node-l { font-size: clamp(8px, 2.7cqw, 12px); font-weight: 700; color: var(--ink-4); letter-spacing: -0.01em; white-space: nowrap; }

.gfx-hub {
  position: absolute; left: 50%; top: 50%;
  width: 19cqw; height: 19cqw; max-width: 86px; max-height: 86px;
  border-radius: 25%; display: flex; align-items: center; justify-content: center;
  background: var(--grad); box-shadow: 0 18px 42px rgba(108,72,233,0.34);
  transform: translate(-50%,-50%) translateZ(-220px) rotateX(-20deg) scale(0.7); opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.6s var(--ease);
}
.gfx.built .gfx-hub { transform: translate(-50%,-50%) translateZ(42px) rotateX(0) scale(1); opacity: 1; }
.gfx-hub-logo { width: 50%; height: 50%; object-fit: contain; position: relative; z-index: 2; }
.gfx-hub-ring { position: absolute; inset: 0; border-radius: 25%; border: 1.5px solid rgba(108,72,233,0.22); opacity: 0; }
.gfx.built .gfx-hub-ring { animation: gfxPulse 3.4s var(--ease) infinite; }
.gfx.built .gfx-hub-ring.r2 { animation-delay: 1.7s; }
@keyframes gfxPulse { 0% { transform: scale(0.85); opacity: 0.55; } 70% { opacity: 0; } 100% { transform: scale(1.7); opacity: 0; } }

/* Flowing data packets along the edges (hub ⇄ node), fine continuous motion */
.gfx-pkt {
  position: absolute; left: 50%; top: 50%;
  width: clamp(5px, 1.4cqw, 9px); height: clamp(5px, 1.4cqw, 9px); border-radius: 50%;
  background: var(--green); box-shadow: 0 0 9px rgba(181,211,39,0.75);
  transform: translate(-50%,-50%); opacity: 0; pointer-events: none;
}
.gfx-pkt.is-accent { background: var(--purple); box-shadow: 0 0 9px rgba(108,72,233,0.6); }
.gfx.built .gfx-pkt { animation-name: gfxFlow; animation-timing-function: cubic-bezier(0.45,0,0.25,1); animation-iteration-count: infinite; }
.gfx.built .gfx-pkt-back { animation-name: gfxFlowBack; }
@keyframes gfxFlow {
  0%   { transform: translate(-50%,-50%) scale(0.35); opacity: 0; }
  14%  { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  86%  { opacity: 1; }
  100% { transform: translate(calc(-50% + (var(--nx) - 50) * 1cqw), calc(-50% + (var(--ny) - 50) * 1cqh)) scale(0.5); opacity: 0; }
}
@keyframes gfxFlowBack {
  0%   { transform: translate(calc(-50% + (var(--nx) - 50) * 1cqw), calc(-50% + (var(--ny) - 50) * 1cqh)) scale(0.35); opacity: 0; }
  14%  { opacity: 1; transform: translate(calc(-50% + (var(--nx) - 50) * 1cqw), calc(-50% + (var(--ny) - 50) * 1cqh)) scale(1); }
  86%  { opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(0.5); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .gfx-node, .gfx-hub, .gfx-line, .gfx-glow { transition: none; }
  .gfx.built .gfx-line, .gfx.built .gfx-hub-ring, .gfx.built .gfx-pkt, .gfx.built .gfx-node-ic { animation: none; }
  .gfx-pkt { opacity: 0 !important; }
}

/* ── Isometric scene engine (animated SVG diorama, CI-themed) ─────── */
.iso {
  position: relative; width: 100%; aspect-ratio: 3/2;
  border-radius: var(--r-2xl); overflow: hidden;
  background: linear-gradient(157deg, #F7F6F2 0%, #EBEAE3 100%);
  box-shadow: 0 24px 64px rgba(27,32,52,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
}
.feat-illustration > .iso, .ph-illustration > .iso {
  width: 100%; height: 100%; aspect-ratio: auto;
  border-radius: inherit; box-shadow: none;
}
.iso.built .gfx-glow { opacity: 1; }
.iso-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; transform: translateY(10px) scale(0.97);
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease);
}
.iso.built .iso-svg { opacity: 1; transform: none; }
.iso-svg polygon { stroke: rgba(27,32,52,0.05); stroke-width: 0.6; stroke-linejoin: round; }
/* (no SVG drop-shadow filter — it repaints every animation frame; the box
   shading + container shadow give depth far more cheaply) */
.iso-move {
  opacity: 0; will-change: transform;
  animation-name: isoMove; animation-duration: var(--dur,7s);
  animation-timing-function: cubic-bezier(0.42,0,0.58,1);
  animation-iteration-count: infinite; animation-play-state: paused;
}
.iso.built .iso-move { animation-play-state: running; }
@keyframes isoMove {
  0%   { transform: translate(0,0); opacity: 0; }
  6%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(calc(var(--mx,0) * 1px), calc(var(--my,0) * 1px)); opacity: 0; }
}
.iso-dash { animation: isoDashPulse 2.6s ease-in-out infinite; }
@keyframes isoDashPulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }
.iso-pkt { filter: drop-shadow(0 0 5px rgba(181,211,39,0.7)); }
.iso-conn { stroke: #C3C0B7; stroke-width: 1.4; stroke-dasharray: 4 5; vector-effect: non-scaling-stroke; }
.iso.built .iso-conn { animation: isoConnFlow 1.1s linear infinite; }
@keyframes isoConnFlow { to { stroke-dashoffset: -18; } }
/* turning gear */
.iso-spin { transform-box: fill-box; transform-origin: center; }
.iso.built .iso-spin { animation: isoSpin 7s linear infinite; }
@keyframes isoSpin { to { transform: rotate(360deg); } }
/* floating elements (cards, satellites) */
.iso-float { transform-box: fill-box; }
.iso.built .iso-float { animation: isoFloat var(--fdur,3.4s) ease-in-out infinite; animation-delay: var(--fd,0s); }
@keyframes isoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
/* growing chart bars */
.iso-grow { transform-box: fill-box; transform-origin: bottom; }
.iso.built .iso-grow { animation: isoGrow var(--gdur,2.4s) ease-in-out infinite alternate; animation-delay: var(--gd,0s); }
@keyframes isoGrow { from { transform: scaleY(0.5); } to { transform: scaleY(1); } }
/* blinking status / pulse */
.iso-blink { animation: isoBlink 1.7s ease-in-out infinite; }
@keyframes isoBlink { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .iso-svg { opacity: 1; transform: none; transition: none; }
  .iso-move { animation: none; opacity: 1;
    transform: translate(calc(var(--mx,0) * 0.5px), calc(var(--my,0) * 0.5px)); }
  .iso-dash, .iso-conn, .iso-spin, .iso-float, .iso-grow, .iso-blink { animation: none; }
  .iso-grow { transform: none; }
}

/* ── Stats row ───────────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; border-radius: var(--r-xl); overflow: hidden;
}
.stat-cell {
  background: var(--white); padding: 40px 36px;
  border: 1px solid var(--border);
}
.stat-num {
  font-size: clamp(34px, 4vw, 50px); font-weight: 900;
  letter-spacing: -0.04em; color: var(--green);
  line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 13.5px; color: var(--ink-5); line-height: 1.45; }

/* ── Reference cards ─────────────────────────────────────── */
.ref-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ref-card {
  border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.2s;
  cursor: pointer;
}
.ref-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(27,32,52,0.08); border-color: var(--border-2); }
.ref-thumb {
  height: 180px; overflow: hidden;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ref-body { padding: 28px; }
.ref-cat { font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.ref-name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }
.ref-desc { font-size: 14px; color: var(--ink-5); line-height: 1.65; margin-bottom: 20px; }
.ref-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--green-lo); }

/* ── Blog cards ──────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  cursor: pointer; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.2s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(27,32,52,0.08); border-color: var(--border-2); }
.blog-thumb {
  height: 208px; overflow: hidden; position: relative; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb-cat {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: white;
  padding: 4px 10px; border-radius: 100px; background: var(--green);
}
.blog-body { padding: 22px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-8); }
.blog-meta span { font-size: 12px; color: var(--ink-5); }
.blog-title {
  font-size: 16px; font-weight: 700; letter-spacing: -0.015em;
  line-height: 1.35; color: var(--ink); margin-bottom: 10px; flex: 1;
  transition: color 0.15s;
}
.blog-card:hover .blog-title { color: var(--green-lo); }
.blog-excerpt { font-size: 13.5px; color: var(--ink-5); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-cta { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--green-lo); margin-top: 16px; transition: gap 0.15s; }
.blog-card:hover .blog-cta { gap: 9px; }

/* ── CTA strip ───────────────────────────────────────────── */
.cta-strip {
  background: var(--ink); padding: clamp(56px, 7vw, 80px) var(--side);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-strip-text { max-width: 60ch; }
.cta-sub { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.6; margin-top: 12px; max-width: 52ch; }

/* ── Three target groups ─────────────────────────────────── */
.target-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r-2xl); overflow: hidden;
}
.target-cell {
  background: var(--white); padding: 44px 40px;
  transition: background 0.2s;
}
.target-cell:nth-child(2) { background: var(--off-white); }
.target-cell-ico {
  width: 48px; height: 48px; background: var(--green-10);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--green); margin-bottom: 20px;
  transition: transform 0.25s var(--ease);
}
.target-cell:hover .target-cell-ico { transform: scale(1.08) rotate(-3deg); animation: none; }

/* ── Article ─────────────────────────────────────────────── */
.article-wrap {
  display: grid; grid-template-columns: minmax(0,1fr) 300px;
  gap: 64px; align-items: flex-start;
  padding: clamp(48px,6vw,72px) var(--side);
  max-width: 1200px; margin: 0 auto;
}
.article h1 { font-size: clamp(26px,4vw,46px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 20px; }
.article .lede { font-size: 17px; color: var(--ink-4); line-height: 1.7; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.article h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 36px 0 12px; }
.article h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.article p { font-size: 15.5px; color: var(--ink-4); line-height: 1.78; margin-bottom: 18px; max-width: 68ch; }
.article ul, .article ol { padding-left: 22px; margin-bottom: 18px; }
.article li { font-size: 15.5px; color: var(--ink-4); line-height: 1.7; margin-bottom: 7px; }
.article ul li::marker { color: var(--green); }
.callout { background: var(--green-5); border-left: 3px solid var(--green); padding: 16px 20px; border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 28px 0; font-size: 15px; color: var(--green-lo); font-weight: 600; line-height: 1.6; }

.sidebar { position: sticky; top: 84px; }
.sbc { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; margin-bottom: 16px; }
.sbc-label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-5); margin-bottom: 12px; }
.toc li { font-size: 13px; color: var(--ink-4); padding: 7px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: color 0.15s; }
.toc li:last-child { border-bottom: none; }
.toc li:hover { color: var(--green-lo); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 4px; font-size: 15.5px; font-weight: 600; color: var(--ink); cursor: pointer; transition: color 0.15s; user-select: none; }
.faq-q:hover { color: var(--green-lo); }
.faq-q-text { flex: 1; min-width: 0; }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--paper); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; color: var(--green); transition: transform 0.2s, background 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green-10); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease2); }
.faq-a-body { padding: 0 4px 20px; font-size: 15px; color: var(--ink-4); line-height: 1.72; }
.faq-item.open .faq-a { max-height: 600px; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,96px); align-items: flex-start; }
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 12.5px; font-weight: 700; color: var(--ink-4); letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm); padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: none;
  width: 100%; min-width: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24,180,98,0.12);
}
.field textarea { min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Process steps ───────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: var(--border); border-radius: var(--r-xl); overflow: hidden;
}
.step { background: var(--white); padding: 36px 30px; position: relative; overflow: hidden; transition: background 0.25s; }
.step:hover { background: var(--off-white); }
.step-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transform: scaleX(0); transform-origin: left; transition: background 0.3s, transform 0.4s var(--ease); }
.step:hover .step-line { background: var(--green); transform: scaleX(1); }
.step-n { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.step-title { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
.step-text { font-size: 13.5px; color: var(--ink-5); line-height: 1.65; }

/* ── Module rows ─────────────────────────────────────────── */
.module-rows { display: flex; flex-direction: column; gap: 3px; }
.module-r {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 18px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.module-r:hover { border-color: var(--green); transform: translateX(4px); box-shadow: 0 4px 16px rgba(24,180,98,0.1); }
.m-num { font-size: 18px; font-weight: 900; color: var(--green); width: 26px; flex-shrink: 0; letter-spacing: -0.03em; }
.m-name { font-size: 14px; font-weight: 600; color: var(--ink); flex: 1; }
.m-badge { font-size: 8px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--green); background: var(--green-10); padding: 2px 6px; border-radius: 4px; }

/* ── Connector grid ──────────────────────────────────────── */
.conn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; }
.conn {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.conn:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(24,180,98,0.12); }
.conn-ico { width: 36px; height: 36px; border-radius: 9px; background: var(--green-10); display: flex; align-items: center; justify-content: center; color: var(--green); }
.conn-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.conn.faded { opacity: 0.35; pointer-events: none; filter: blur(1.5px); }
/* Connector tile as a link + coming-soon (greyed, not clickable) + status badges */
.conn { position: relative; }
a.conn { text-decoration: none; color: inherit; }
.conn.is-soon { background: var(--paper); opacity: 0.62; pointer-events: none; }
.conn.is-soon .conn-ico { background: var(--paper-2); color: var(--ink-6); }
.conn.is-soon .conn-name { color: var(--ink-5); }
.conn-badge { position: absolute; top: 14px; right: 14px; font-size: 9.5px; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 999px; line-height: 1.3; }
.conn-badge.beta { background: var(--green-10); color: var(--green-lo); }
.conn-badge.soon { background: var(--paper-2); color: var(--ink-5); }
.conn-cat { margin-bottom: 40px; }
.conn-cat:last-child { margin-bottom: 0; }
.conn-cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; text-align: left; }
.conn-cat-head h3 { font-size: 18px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.conn-cat-count { font-size: 12px; font-weight: 700; color: var(--green-lo); background: var(--green-10); border-radius: 999px; padding: 4px 11px; }

/* ── Pricing tiers ───────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.price-card-hot { border-color: var(--green); box-shadow: 0 16px 44px rgba(24,180,98,0.10); }
.price-tag { position: absolute; top: -12px; left: 28px; background: var(--green); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.price-name { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.price-who { font-size: 13.5px; margin-bottom: 12px; min-height: 38px; }
.price-amount { font-size: 30px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); margin-bottom: 20px; }
.price-per { font-size: 13px; font-weight: 600; color: var(--ink-5); margin-left: 6px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0 0 26px; }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-3); line-height: 1.45; }
.price-feats li .feat-check, .price-feats li svg { flex: none; }
.price-feats li svg { width: 18px; height: 18px; color: var(--green-lo); margin-top: 1px; }
.price-card .btn { margin-top: auto; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
/* OMS (5) + Connector (4) plan grids */
.price-grid-5, .price-grid-4 { display: grid; gap: 18px; align-items: stretch; }
.price-grid-5 { grid-template-columns: repeat(5, 1fr); }
.price-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1180px) { .price-grid-5, .price-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .price-grid-5, .price-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .price-grid-5, .price-grid-4 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.price-card { padding: 28px 24px; }
.price-setup { font-size: 12.5px; margin: -10px 0 18px; }
.price-addons { margin-top: 28px; font-size: 13px; line-height: 1.6; }
/* WMS toggle (segmented control) */
.wms-toggle { display: inline-flex; padding: 4px; gap: 4px; background: var(--paper); border: 1px solid var(--border);
  border-radius: 999px; margin-bottom: 32px; }
.wms-btn { font-size: 13.5px; font-weight: 700; color: var(--ink-4); padding: 8px 20px; border-radius: 999px;
  background: transparent; transition: background .18s, color .18s; }
.wms-btn.active { background: var(--white); color: var(--ink); box-shadow: 0 2px 8px rgba(27,32,52,.08); }
.p-wms { display: none; }
.oms-grid.show-wms .p-oms { display: none; }
.oms-grid.show-wms .p-wms { display: inline; }

/* ── ROI calculator ──────────────────────────────────────── */
.roi { display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px; align-items: stretch;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 36px; box-shadow: 0 8px 32px rgba(27,32,52,.05); }
.roi-inputs { display: flex; flex-direction: column; gap: 30px; justify-content: center; }
.roi-field label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--ink-3); margin-bottom: 14px; }
.roi-field output { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.roi-field input[type=range] { width: 100%; -webkit-appearance: none; appearance: none; height: 6px;
  border-radius: 999px; background: var(--paper-2); outline: none; cursor: pointer; }
.roi-field input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(27,32,52,.2); cursor: pointer; }
.roi-field input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--green);
  border: 3px solid #fff; box-shadow: 0 2px 8px rgba(27,32,52,.2); cursor: pointer; }
.roi-results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.roi-stat { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 20px; display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.roi-stat-label { font-size: 12.5px; font-weight: 700; color: var(--ink-5); }
.roi-stat-val { font-size: 28px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); line-height: 1.1; }
.roi-stat-sub { font-size: 12.5px; color: var(--ink-5); }
.roi-stat-hl { background: var(--green-5); border-color: var(--green-20); }
.roi-note { margin-top: 22px; font-size: 12.5px; line-height: 1.65; max-width: 90ch; }
@media (max-width: 820px) { .roi { grid-template-columns: 1fr; gap: 28px; padding: 24px; } }
@media (max-width: 460px) { .roi-results { grid-template-columns: 1fr; } }

/* ── Connector detail (in-app) ───────────────────────────── */
.ci-hero-art svg { width: 100%; height: auto; display: block; border-radius: var(--r-xl); }
.ci-status { border-radius: var(--r-lg); padding: 16px 20px; font-size: 14.5px; font-weight: 500; line-height: 1.55; max-width: 760px; }
.ci-status.soon { background: #FFFBEB; border: 1px solid #FDE68A; color: #8A5A00; }
.ci-status.beta { background: var(--green-5); border: 1px solid var(--green-20); color: var(--green-lo); }
.ci-data { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; max-width: 860px; }
.ci-data-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; font-size: 14.5px; font-weight: 600; color: var(--ink-3);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); }
.ci-data-item svg { color: var(--green-lo); flex: none; width: 18px; height: 18px; }
.ci-combos { display: flex; flex-direction: column; gap: 18px; }
.ci-combo-group { display: grid; grid-template-columns: 200px 1fr; gap: 16px; align-items: start; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.ci-combo-group:last-child { border-bottom: none; }
.ci-combo-label { font-size: 13px; font-weight: 800; color: var(--ink-2); padding-top: 4px; }
.ci-combo-names { display: flex; flex-wrap: wrap; gap: 8px; }
.ci-combo-names a, .ci-combo-names span { font-size: 13px; font-weight: 600; color: var(--ink-4); background: var(--white);
  border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px; text-decoration: none; cursor: pointer;
  transition: border-color .15s, color .15s, transform .15s; }
.ci-combo-names a:hover { border-color: var(--green); color: var(--green-lo); transform: translateY(-1px); }

/* combination detail: steps + benefits */
.ci-cols { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.ci-steps { list-style: none; counter-reset: cis; display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.ci-steps li { counter-increment: cis; position: relative; padding-left: 46px; color: var(--ink-3); line-height: 1.5; font-size: 15px; }
.ci-steps li::before { content: counter(cis); position: absolute; left: 0; top: -2px; width: 30px; height: 30px;
  border-radius: 9px; background: var(--green-10); color: var(--green-lo); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; }
@media (max-width: 760px) { .ci-cols { grid-template-columns: 1fr; gap: 32px; } }

/* ── Zusatzleistungen cards (pricing) ────────────────────── */
.zgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.zcard { display: flex; align-items: center; gap: 18px; padding: 24px; text-decoration: none;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: border-color .18s var(--ease2), box-shadow .18s var(--ease2), transform .18s var(--ease2); }
.zcard:hover { border-color: var(--green); box-shadow: 0 10px 30px rgba(27,32,52,.07); transform: translateY(-2px); }
.zcard-ico { width: 48px; height: 48px; border-radius: 13px; background: var(--green-10); color: var(--green-lo);
  display: flex; align-items: center; justify-content: center; flex: none; }
.zcard-body { flex: 1; min-width: 0; }
.zcard-name { font-size: 16.5px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin-bottom: 4px; }
.zcard-desc { font-size: 13.5px; line-height: 1.45; }
.zcard-foot { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex: none; }
.zcard-price { font-size: 13px; font-weight: 700; color: var(--ink-5); white-space: nowrap; }
.zcard-arrow { color: var(--ink-6); font-weight: 700; transition: transform .15s, color .15s; }
.zcard:hover .zcard-arrow { color: var(--green-lo); transform: translateX(3px); }
@media (max-width: 760px) { .zgrid { grid-template-columns: 1fr; } .ci-combo-group { grid-template-columns: 1fr; gap: 8px; } .zcard-foot { display: none; } }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--paper);
  padding: 100px var(--side) 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero .eyebrow { color: var(--green); }
.page-hero .eyebrow::before { background: var(--green); }
.ph-text { max-width: 560px; }
.ph-text h1 { color: var(--ink); margin-bottom: 16px; }
.ph-text p { color: var(--ink-5); }
.ph-illustration {
  border-radius: var(--r-2xl);
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(27,32,52,0.06);
}
.ph-illustration svg { width: 100%; height: 100%; }
.ph-illustration img { width: 100%; height: 100%; object-fit: cover; }
/* When hero holds a real app screenshot, let the tilted frame breathe */
.ph-illustration:has(.shot) {
  overflow: visible; background: transparent; border: none;
  box-shadow: none; aspect-ratio: auto;
}

/* ── App screenshot frame (floating / tilted) ────────────── */
.shot {
  position: relative; border-radius: 14px; background: var(--white);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(27,32,52,.38), 0 12px 24px -12px rgba(27,32,52,.22);
  transform: perspective(1600px) rotateY(-9deg) rotateX(3deg) rotate(-1deg);
  transform-origin: center left;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s;
}
.shot:hover { transform: perspective(1600px) rotateY(-3deg) rotateX(1deg) rotate(0deg); }
.shot-bar { height: 30px; display: flex; align-items: center; gap: 6px; padding: 0 12px;
  background: var(--paper); border-bottom: 1px solid var(--border); }
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.shot-bar i:nth-child(1) { background: #ff5f57; }
.shot-bar i:nth-child(2) { background: #febc2e; }
.shot-bar i:nth-child(3) { background: #28c840; }
.shot > img { display: block; width: 100%; height: auto; }
/* Dark variant — for use inside .sec-dark sections */
.shot.dark { border-color: rgba(255,255,255,.1); }
.shot.dark .shot-bar { background: #11152a; border-bottom-color: rgba(255,255,255,.08); }
@media (max-width: 900px) { .shot { transform: none; } }

/* ── Responsive inline-grid replacements ─────────────────── */
.mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .mod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .mod-grid { grid-template-columns: 1fr; } }

.partner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1100px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .partner-grid { grid-template-columns: repeat(2, 1fr); } }

.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border-radius: var(--r-2xl); overflow: hidden; }
@media (max-width: 768px) { .vgrid { grid-template-columns: 1fr; } }

/* ── Showcase section (stacked/overlapping screenshots) ──── */
.showcase { padding: 96px var(--side); overflow: hidden; }
.showcase .sc-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.showcase .sc-head .eyebrow { justify-content: center; }
.showcase .sc-head .eyebrow::before { display: none; }
.showcase-stage { position: relative; max-width: 1080px; margin: 0 auto; padding-bottom: 40px; }
.showcase-stage .shot.primary { width: 76%; position: relative; z-index: 2; }
.showcase-stage .shot.secondary {
  position: absolute; right: 0; bottom: -28px; width: 44%; z-index: 3;
  transform: perspective(1600px) rotateY(9deg) rotateX(3deg) rotate(1.2deg);
  transform-origin: center right;
}
.showcase-stage .shot.secondary:hover { transform: perspective(1600px) rotateY(3deg) rotateX(1deg); }
.showcase.on-dark .sc-head h2 { color: #fff; }
.showcase.on-dark .sc-head p { color: rgba(255,255,255,.6); }
@media (max-width: 900px) {
  .showcase-stage { display: flex; flex-direction: column; gap: 20px; padding-bottom: 0; }
  .showcase-stage .shot.primary, .showcase-stage .shot.secondary {
    position: static; width: 100%; transform: none; bottom: auto; right: auto;
  }
}
@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; }
  .ph-illustration { display: none; }
}
.ph-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}

/* ── Values / About ──────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); border-radius: var(--r-xl); overflow: hidden;
}
.value-cell { background: var(--white); padding: 44px 40px; }
.v-num { font-size: 46px; font-weight: 900; letter-spacing: -0.05em; color: var(--green); line-height: 1; margin-bottom: 14px; }
.v-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; }
.v-text { font-size: 14px; color: var(--ink-5); line-height: 1.7; }

/* Mission/Vision cards */
.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 48px;
}
.mv-card {
  background: var(--dark); border-radius: var(--r-xl);
  padding: 44px; position: relative; overflow: hidden;
}
.mv-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--green);
}
.mv-label { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.mv-text { font-size: clamp(16px, 1.8vw, 20px); font-weight: 600; color: white; line-height: 1.55; letter-spacing: -0.01em; }

/* ── Legal pages ─────────────────────────────────────────── */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: clamp(40px,6vw,72px) var(--side); }
.legal-wrap h1 { font-size: 34px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 8px; }
.legal-date { font-size: 13px; color: var(--ink-5); margin-bottom: 40px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.legal-wrap h2 { font-size: 20px; font-weight: 700; margin: 36px 0 10px; color: var(--ink); }
.legal-wrap h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; color: var(--ink-3); }
.legal-wrap p { font-size: 15px; color: var(--ink-4); line-height: 1.75; margin-bottom: 14px; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.legal-wrap li { font-size: 15px; color: var(--ink-4); line-height: 1.7; margin-bottom: 5px; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dark); color: white;
  padding: clamp(56px,7vw,80px) var(--side) 36px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { font-size: 17px; font-weight: 800; letter-spacing: -0.03em; color: white; margin-bottom: 14px; }
.footer-brand .logo sup {
  font-size: 8px;
  font-weight: 700;
  color: var(--green);
  line-height: 0;
  vertical-align: super;
  position: relative;
  top: -3px;
}
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 220px; margin-bottom: 20px; }
.footer-brand .contact-line { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-brand .contact-line a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-brand .contact-line a:hover { color: white; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color 0.15s; cursor: pointer; }
.footer-col a:hover { color: white; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-start; margin: 20px 0 0; }
.store-badge {
  display: inline-flex; align-items: center; background: #fff;
  border-radius: 11px; padding: 9px 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.20); transition: transform 0.2s var(--ease);
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge img { height: 26px; width: auto; display: block; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.3); transition: color 0.15s; cursor: pointer; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Cookie banner ───────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px var(--side);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.3s var(--ease);
}
#cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-text {
  font-size: 13.5px; color: rgba(255,255,255,0.6);
  line-height: 1.5; max-width: 58ch;
}
.cookie-text a { color: rgba(255,255,255,0.8); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cookie-accept { background: var(--green); color: white; font-size: 13px; font-weight: 700; padding: 9px 20px; border-radius: var(--r-sm); cursor: pointer; transition: background 0.15s; border: none; }
.cookie-accept:hover { background: var(--green-hi); }
.cookie-necessary { background: transparent; color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,0.15); cursor: pointer; transition: color 0.15s, border-color 0.15s; }
.cookie-necessary:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.cookie-settings { background: transparent; color: rgba(255,255,255,0.35); font-size: 12.5px; font-weight: 500; cursor: pointer; border: none; transition: color 0.15s; padding: 0; }
.cookie-settings:hover { color: rgba(255,255,255,0.6); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  #home-hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
  .hero-right { display: none; }
  .nav-items { display: none; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .pc-w7, .pc-w5, .pc-w4 { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .article-wrap { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
}
/* ── Tablet (iPad) ───────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --side: clamp(16px, 4vw, 40px); }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .pc-w7 { grid-column: span 2; }
  .pc-w5, .pc-w4 { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  /* Stack the operating-model cells as clean cards (no grey divider band) */
  .target-grid { grid-template-columns: 1fr; gap: 14px; background: transparent; border-radius: 0; overflow: visible; }
  .target-cell, .target-cell:nth-child(2) {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-xl); padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(27,32,52,0.04);
  }
  .page-hero { grid-template-columns: 1fr; padding-top: 100px; }
  .ph-illustration { display: none; }
  #home-hero { min-height: 80svh; }
  .hero-right { display: none; }
  .article-wrap { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .conn-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --side: 16px; }

  /* Hero */
  #home-hero { min-height: 100svh; padding-bottom: 48px; }
  .hero-left { padding-top: 88px; }
  .hero-right { display: none; }
  .hero-stats-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); margin-right: 0; }
  .hero-stat {
    border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    margin-right: 0; padding: 16px 8px; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero-badge-row { display: none; }
  .hero-scroll-indicator { display: none; }

  /* Typography scale */
  .h1 { font-size: clamp(30px, 9vw, 48px); }
  .h2 { font-size: clamp(24px, 7vw, 36px); }
  .h3 { font-size: clamp(20px, 6vw, 28px); }
  .lead { font-size: clamp(15px, 4vw, 17px); }

  /* Page hero */
  .page-hero { grid-template-columns: 1fr; padding: 88px 16px 40px; }
  .ph-illustration { display: none; }

  /* Products */
  .prod-grid { grid-template-columns: 1fr; }
  .pc-w7, .pc-w5, .pc-w4 { grid-column: span 1; }
  .pc { padding: 24px 20px; }

  /* Sections */
  .feat-row, .feat-row.flip { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .feat-illustration { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .conn-grid { grid-template-columns: 1fr 1fr; }
  .target-grid { grid-template-columns: 1fr; }

  /* Nav */
  .nav-items { display: none; }
  .nav-logo { margin-right: 0; }
  #nav { padding: 0 16px; }
  .nav-link { display: none; }

  /* CTA */
  .cta-strip { flex-direction: column; align-items: flex-start; gap: 20px; padding: 40px 16px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Article */
  .article-wrap { grid-template-columns: 1fr; padding: 32px 16px; }
  .sidebar { display: none; }

  /* Sections */
  .sec { padding: clamp(40px, 8vw, 64px) 16px; }
  .sec-sm { padding: clamp(24px, 5vw, 40px) 16px; }

  /* Cookie */
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px; }

  /* Module rows */
  .module-rows { display: flex; flex-direction: column; gap: 4px; max-width: none !important; }

  /* Contact form: stack name fields, let inputs shrink */
  .field-row { grid-template-columns: 1fr; }

  /* Trust bar: stack label over centered, wrapping logos */
  .trust-bar { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .trust-sep { display: none; }
  .trust-logos { flex-wrap: wrap; justify-content: center; gap: 10px 20px; width: 100%; }

  /* Hide the product-UI screenshot showcase on mobile (skip to features) */
  .showcase { display: none; }

  /* Automation mockup: show it static on mobile, no entrance animation */
  .feat-mock { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }

  /* Product cards: arrow flows below the text instead of overlapping it */
  .pc { display: flex; flex-direction: column; align-items: flex-start; }
  .pc-arrow { position: static; align-self: flex-end; margin-top: 16px; }

  /* CTA buttons: equal full-width so every button matches */
  .cta-strip .btn { width: 100%; justify-content: center; }

  /* Hero: anchor content near top instead of vertical-centering (kills dead space) */
  #home-hero { align-items: start; min-height: auto; padding-top: 84px; padding-bottom: 56px; }
  .hero-left { padding-top: 28px; }

  /* WMS inline screenshot frame: no tilt, full width */
  .feat-row .shot { width: 100%; }
}

/* ── Image hover zoom ────────────────────────────────────── */
.ref-card:hover .ref-thumb img,
.ref-card:hover img { transform: scale(1.05); }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }

/* ── Motion: page transitions ────────────────────────────── */
.page.active { animation: page-enter 0.38s var(--ease) both; }
@keyframes page-enter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ── Motion: enhanced hero elements ─────────────────────── */
@keyframes hero-fade { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }

/* trust bar: static, no scroll */

/* ── Motion: network path glow on hover ──────────────────── */
.net-node-group { cursor: default; transition: opacity 0.2s; opacity: 0.85; }
.net-node-group:hover { opacity: 1; }

/* ── Module rows animated ────────────────────────────────── */
.module-r:nth-child(1) { animation-delay: 0.0s; }
.module-r:nth-child(2) { animation-delay: 0.05s; }
.module-r:nth-child(3) { animation-delay: 0.10s; }
.module-r:nth-child(4) { animation-delay: 0.15s; }
.module-r:nth-child(5) { animation-delay: 0.20s; }
.module-r:nth-child(6) { animation-delay: 0.25s; }
.module-r:nth-child(7) { animation-delay: 0.30s; }
.module-r:nth-child(8) { animation-delay: 0.35s; }

/* ── Step hover line */
.step:hover .step-line { background: var(--green); transform: scaleX(1); }

/* ── Feat illustration fill parent */
.feat-illustration svg { width: 100%; height: 100%; }

/* ── Ref grid responsive */
@media (max-width: 900px) {
  .ref-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  [style*="grid-template-columns:repeat(5,1fr)"] {
    grid-template-columns: repeat(3,1fr) !important;
  }
}
@media (max-width: 700px) {
  [style*="grid-template-columns:repeat(5,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}


/* ── Mobile menu button ──────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border-2);
  color: var(--ink-4);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  background: white;
}
.mobile-menu-btn:hover { border-color: var(--ink-5); color: var(--ink); }

@media (max-width: 1100px) {
  .mobile-menu-btn { display: flex; }
}

/* ── Mobile mega menu overlay ────────────────────────────── */
#mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 499;
  overflow-y: auto;
  padding: 20px var(--side) 40px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease2);
}
#mobile-menu.open { transform: none; }
.mobile-menu-section { margin-bottom: 24px; }
.mobile-menu-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-6); margin-bottom: 8px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.mm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mobile-menu-item {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: color 0.15s;
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.mm-tile {
  flex-direction: row; align-items: center; gap: 10px;
  padding: 13px 12px; border: 1px solid var(--border);
  border-radius: 14px; background: var(--white);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.mm-tile:active { transform: scale(0.98); }
.mm-tile:hover { border-color: var(--green); background: var(--green-10); }
.mm-tile-txt { min-width: 0; }
.mm-tile-label { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.mm-tile-desc { font-size: 11px; color: var(--ink-5); margin-top: 3px; line-height: 1.25; }
.mobile-menu-item:hover { color: var(--green-lo); }
.mobile-menu-ico {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--green-10); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mobile-menu-ico svg { width: 17px; height: 17px; }

/* ── Mobile menu UX polish ───────────────────────────────── */
/* Lock background scroll while the menu is open */
body.menu-open { overflow: hidden; }
/* Comfortable touch targets + momentum scroll + safe-area for notched phones */
#mobile-menu {
  -webkit-overflow-scrolling: touch;
  padding-bottom: max(40px, env(safe-area-inset-bottom));
  overscroll-behavior: contain;
}
.mobile-menu-item {
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-item:active { color: var(--green-lo); }
/* Make the hamburger clearly reflect the open state */
.mobile-menu-btn[aria-expanded="true"] {
  background: var(--green-10);
  border-color: var(--green);
  color: var(--green);
}

/* ════════ Product-UI mockups inside the Safari frame (sample data) ════════ */
.shot-live { overflow: hidden; }
.shot-ui { background: #F7F7F4; overflow: hidden; font: 500 9px/1.35 'Inter',system-ui,sans-serif; color: #1B2034; }
.m-app { display: flex; min-height: 300px; max-height: 440px; }
.m-side { width: 142px; flex: none; background: #161B30; color: #AEB6C8; padding: 10px 9px; display: flex; flex-direction: column; gap: 9px; }
.m-brand { display: flex; align-items: center; gap: 7px; }
.m-brand > div { min-width: 0; overflow: hidden; }
.m-logo { width: 17px; height: 17px; border-radius: 5px; background: var(--green); color: #161B30; font-weight: 900; font-size: 10px; display: flex; align-items: center; justify-content: center; flex: none; }
.m-co { font-size: 7.6px; font-weight: 700; color: #fff; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-co-sub { font-size: 5.8px; color: #8089A0; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: -.1px; }
.m-nav { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.m-nav-i { display: flex; align-items: center; gap: 6px; padding: 4.5px 8px; border-radius: 7px; font-size: 7.6px; font-weight: 600; color: #AEB6C8; }
.m-nav-i svg { width: 10.5px; height: 10.5px; flex: none; opacity: .85; }
.m-nav-l { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-chev { opacity: .45; flex: none; }
.m-nav-i.on { background: var(--green); color: #161B30; }
.m-nav-i.on svg, .m-nav-i.on .m-chev { opacity: 1; }
.m-logout { margin-top: auto; color: #E2796B; }
.m-logout svg { opacity: .9; }
.m-main { flex: 1; min-width: 0; background: #F7F7F4; display: flex; flex-direction: column; }
.m-dark .m-main { background: #0F1426; color: #C7CEDE; }
.m-topbar { display: flex; align-items: center; justify-content: flex-end; gap: 7px; padding: 7px 12px; border-bottom: 1px solid rgba(27,32,52,.07); }
.m-dark .m-topbar { border-bottom-color: rgba(255,255,255,.07); }
.m-pill { font-size: 8px; font-weight: 600; border: 1px solid rgba(27,32,52,.14); border-radius: 999px; padding: 2px 8px; color: #4B5563; }
.m-dark .m-pill { border-color: rgba(255,255,255,.16); color: #C7CEDE; }
.m-ic { font-size: 9.5px; color: #9CA3AF; position: relative; }
.m-bell i { position: absolute; top: -5px; right: -6px; background: #ef4444; color: #fff; font-size: 6.5px; font-weight: 800; border-radius: 999px; padding: 0 3px; font-style: normal; }
.m-av { width: 17px; height: 17px; border-radius: 50%; background: var(--purple); color: #fff; font-size: 8px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.m-head { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px 6px; }
.m-h-title { font-size: 11.5px; font-weight: 800; letter-spacing: -.02em; }
.m-h-title span { color: #9CA3AF; font-weight: 600; }
.m-pager { display: flex; gap: 3px; }
.m-pager i { font-style: normal; font-size: 8px; font-weight: 700; width: 16px; height: 16px; border-radius: 5px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid rgba(27,32,52,.1); color: #4B5563; }
.m-dark .m-pager i { background: #1A2138; border-color: rgba(255,255,255,.08); color: #C7CEDE; }
.m-pager i.on { background: var(--green); border-color: var(--green); color: #161B30; }
/* Orders table */
.m-table { padding: 0 8px 6px; }
.m-tr { display: grid; grid-template-columns: 16px 52px 1fr 54px 58px 50px; gap: 7px; align-items: center; padding: 4px 6px; border-bottom: 1px solid rgba(27,32,52,.06); font-size: 8px; }
.m-dark .m-tr { border-bottom-color: rgba(255,255,255,.06); }
.m-th { font-size: 7px; letter-spacing: .04em; text-transform: uppercase; color: #9CA3AF; font-weight: 700; border-bottom: 1px solid rgba(27,32,52,.1); }
.m-tr .r { text-align: right; }
.m-ch { width: 16px; height: 16px; border-radius: 5px; background: linear-gradient(135deg,#7AC143,#5fa32f); display: inline-block; }
.m-id { font-weight: 700; }
.m-cust, .m-art { color: #6B7280; background: rgba(27,32,52,.04); border-radius: 5px; padding: 2px 5px; font-size: 8px; }
.m-dark .m-cust, .m-dark .m-art { background: rgba(255,255,255,.06); color: #AEB6C8; }
.m-amt { font-weight: 700; }
.m-badge { font-style: normal; font-size: 8.5px; font-weight: 700; color: #fff; background: #6C48E9; border-radius: 999px; padding: 3px 8px; }
/* Integrations grid */
.m-int-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 10px 14px 14px; }
.m-int { background: #fff; border: 1px solid rgba(27,32,52,.08); border-radius: 9px; padding: 10px; }
.m-dark .m-int { background: #1A2138; border-color: rgba(255,255,255,.07); }
.m-int-ic { width: 26px; height: 26px; border-radius: 7px; background: var(--green-10); color: var(--green-lo); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.m-int-ic svg { width: 15px; height: 15px; }
.m-int-name { font-size: 11px; font-weight: 800; }
.m-int-sub { font-size: 8.5px; color: #9CA3AF; margin-bottom: 8px; }
.m-int-btn { font-size: 8.5px; font-weight: 700; background: #161B30; color: #fff; border-radius: 5px; padding: 4px 8px; display: inline-block; }
/* Dashboard */
.m-card { background: #fff; border: 1px solid rgba(27,32,52,.08); border-radius: 12px; margin: 12px 14px; padding: 14px; }
.m-setup-h { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.m-setup-h b { font-size: 10px; } .m-setup-h span { display: block; font-size: 8px; color: #9CA3AF; }
.m-prog { font-size: 8px; font-weight: 700; color: var(--green-lo); background: var(--green-10); border-radius: 999px; padding: 2px 8px; }
.m-bar { height: 5px; border-radius: 999px; background: rgba(27,32,52,.08); overflow: hidden; margin-bottom: 12px; }
.m-bar i { display: block; height: 100%; background: linear-gradient(90deg,var(--purple),var(--green)); }
.m-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.m-step { background: #FAFAF8; border: 1px solid rgba(27,32,52,.07); border-radius: 9px; padding: 9px; }
.m-step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.m-step-ic { width: 17px; height: 17px; border-radius: 6px; background: var(--purple-10); color: var(--purple); display: flex; align-items: center; justify-content: center; font-size: 9.5px; }
.m-st { font-style: normal; font-size: 7px; font-weight: 700; border-radius: 999px; padding: 2px 6px; }
.m-st.ok { background: #DCFCE7; color: #15803d; } .m-st.pend { background: #FEF3C7; color: #8A5A00; }
.m-step-t { font-size: 9px; font-weight: 700; } .m-step-d { font-size: 7.5px; color: #9CA3AF; margin: 2px 0 7px; line-height: 1.4; }
.m-dots { display: flex; align-items: center; gap: 3px; font-size: 7px; color: #9CA3AF; }
.m-dots u { width: 5px; height: 5px; border-radius: 50%; background: rgba(27,32,52,.15); }
.m-dots u.f { background: var(--green); }
.m-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 0 14px 14px; }
.m-kpi { background: #fff; border: 1px solid rgba(27,32,52,.08); border-radius: 10px; padding: 11px; }
.m-kpi-l { font-size: 7.5px; color: #6B7280; display: flex; justify-content: space-between; }
.m-kpi-l em { font-style: normal; color: #15803d; font-weight: 700; }
.m-kpi-v { font-size: 14px; font-weight: 800; letter-spacing: -.02em; margin-top: 3px; }
/* Automation / time-savings dashboard */
.m-auto, .m-issues { margin: 12px 14px; }
.m-auto-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.m-auto-t { display: flex; align-items: center; gap: 6px; font-size: 10px; }
.m-auto-t svg { width: 13px; height: 13px; color: var(--purple); }
.m-auto-days { font-size: 8px; color: #9CA3AF; display: flex; align-items: center; gap: 5px; }
.m-auto-days i { font-style: normal; border: 1px solid rgba(27,32,52,.14); border-radius: 5px; padding: 2px 7px; color: #4B5563; font-weight: 700; }
.m-auto-kpis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 12px; }
.m-auto-kpi { background: #FAFAF8; border: 1px solid rgba(27,32,52,.07); border-radius: 8px; padding: 8px 7px; text-align: center; }
.m-auto-kv { font-size: 11px; font-weight: 800; letter-spacing: -.02em; }
.m-auto-kpi.accent .m-auto-kv { color: var(--green-lo); }
.m-auto-kl { font-size: 6.5px; color: #9CA3AF; margin-top: 2px; line-height: 1.3; }
.m-auto-tbl { display: flex; flex-direction: column; }
.m-auto-tr { display: grid; grid-template-columns: 1.5fr 38px 42px 1fr 44px; gap: 8px; align-items: center; padding: 5px 2px; border-bottom: 1px solid rgba(27,32,52,.06); font-size: 8px; }
.m-auto-th { font-size: 6.5px; letter-spacing: .04em; text-transform: uppercase; color: #9CA3AF; font-weight: 700; }
.m-auto-tr .r { text-align: right; }
.m-auto-num { font-weight: 700; }
.m-auto-mut { color: #9CA3AF; }
.m-auto-hr { font-weight: 800; color: var(--green-lo); }
.m-auto-barwrap { height: 5px; border-radius: 999px; background: rgba(27,32,52,.07); overflow: hidden; }
.m-auto-barwrap i { display: block; height: 100%; background: linear-gradient(90deg, var(--purple), var(--green)); border-radius: 999px; }
.m-auto-sum { font-weight: 800; border-bottom: none; }
.m-auto-sum .r { color: #1B2034; }
.m-iss-h { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; font-size: 10px; }
.m-iss-h svg { width: 12px; height: 12px; color: var(--purple); }
.m-iss-meta { margin-left: auto; font-size: 7px; color: #9CA3AF; font-weight: 500; }
.m-iss-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.m-iss { display: flex; align-items: center; gap: 6px; background: #FAFAF8; border: 1px solid rgba(27,32,52,.07); border-radius: 8px; padding: 7px 8px; }
.m-iss-tag { font-size: 6px; font-weight: 800; letter-spacing: .03em; border-radius: 4px; padding: 2px 5px; white-space: nowrap; }
.m-iss-tag.crit { background: #FEE2E2; color: #b91c1c; }
.m-iss-tag.hi { background: #FFEDD5; color: #c2410c; }
.m-iss-tag.med { background: #E5E7EB; color: #4B5563; }
.m-iss-tag.low { background: #F1F5F9; color: #94A3B8; }
.m-iss-l { font-size: 8px; flex: 1; line-height: 1.3; }
.m-iss-n { font-size: 9px; font-weight: 800; color: #9CA3AF; }
/* Tracking */
.m-track-h { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.m-track-h b { font-size: 12px; } .m-track-h span { display: block; font-size: 8.5px; color: #9CA3AF; }
.m-timeline { display: flex; justify-content: space-between; position: relative; }
.m-timeline::before { content: ''; position: absolute; left: 8px; right: 8px; top: 5px; height: 2px; background: rgba(27,32,52,.1); }
.m-dark .m-timeline::before { background: rgba(255,255,255,.12); }
.m-tl { position: relative; text-align: center; flex: 1; z-index: 1; }
.m-tl-dot { width: 12px; height: 12px; border-radius: 50%; background: #D1D5DB; display: inline-block; border: 2px solid #F7F7F4; }
.m-dark .m-tl-dot { border-color: #0F1426; }
.m-tl.done .m-tl-dot { background: var(--green); }
.m-tl-l { font-size: 8.5px; font-weight: 700; margin-top: 5px; }
.m-tl-t { font-size: 8px; color: #9CA3AF; }
@media (max-width: 600px) { .m-side { display: none; } .m-int-grid, .m-steps, .m-kpis { grid-template-columns: repeat(2, 1fr); } }

/* Articles table mockup (start page) */
.m-art-tr { grid-template-columns: 18px 52px 1fr 56px 78px 42px !important; align-items: center; min-height: 32px; }
/* single-line cells → uniform rows → straight columns */
.m-art-tr > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.m-art-tr .m-thumb, .m-art-tr .m-type, .m-art-tr .m-stock { overflow: visible; }
.m-thumb { width: 16px; height: 16px; border-radius: 4px; background: linear-gradient(135deg,#E5E7EB,#D1D5DB); display: inline-block; }
.m-sku { color: var(--purple); font-weight: 700; }
.m-type { font-style: normal; font-size: 7px; font-weight: 600; color: #6B7280; background: rgba(27,32,52,.06); border-radius: 999px; padding: 2px 6px; white-space: nowrap; }
.m-stock { font-style: normal; font-size: 8px; font-weight: 800; color: var(--green-lo); background: var(--green-10); border-radius: 999px; padding: 2px 7px; }
.m-dark .m-type { background: rgba(255,255,255,.08); color: #AEB6C8; }

/* ROI tool-consolidation block */
.roi-tools { margin-top: 22px; background: var(--green-5); border: 1px solid var(--green-20); border-radius: var(--r-xl); padding: 24px; }
.roi-tools-h { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.roi-tools-h b { font-size: 15px; color: var(--ink); } .roi-tools-h span { font-size: 12px; color: var(--ink-5); }
.roi-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.roi-tool { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 12px 14px; }
.roi-tool-name { flex: 1; font-size: 13.5px; font-weight: 600; color: var(--ink-2); min-width: 0; }
.roi-tool-cost { font-size: 12.5px; color: var(--ink-5); text-decoration: line-through; white-space: nowrap; }
.roi-tool-inc { font-size: 10px; font-weight: 800; color: var(--green-lo); background: var(--green-10); border-radius: 999px; padding: 3px 8px; white-space: nowrap; }
.roi-tools-total { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--ink-2); }
@media (max-width: 760px) { .roi-tools-grid { grid-template-columns: 1fr; } }

/* Premium on-brand blog illustrations (replace stock photos) */
.blog-art { background: var(--paper); background-image: radial-gradient(circle, rgba(27,32,52,.07) 1px, transparent 1px); background-size: 22px 22px; position: relative; overflow: hidden; }
.blog-art svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.blog-art .blog-thumb-cat { position: absolute; }
