/* =========================================================================
   SmartDataTwin — Marketing Site
   Vanilla CSS, no build step. Drop folder onto IONOS and you're live.
   Brand: Signal Red #E5232E · Deep Navy #0F1B2D · Inter
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Brand */
  --c-red: #E5232E;
  --c-red-2: #FF4757;
  --c-red-hover: #C61D27;
  --c-red-soft: rgba(229, 35, 46, 0.12);
  --c-red-glow: rgba(229, 35, 46, 0.45);
  --c-navy: #0F1B2D;
  --c-navy-2: #18253B;
  --c-deep: #0A1320;

  /* Ink */
  --c-ink-900: #0F1B2D;
  --c-ink-800: #1F2937;
  --c-ink-700: #334155;
  --c-ink-600: #475569;
  --c-ink-500: #64748B;
  --c-ink-400: #94A3B8;
  --c-ink-300: #CBD5E1;
  --c-ink-200: #E2E8F0;
  --c-ink-100: #F1F5F9;

  /* Surfaces */
  --c-canvas: #F6F7FB;
  --c-surface: #FFFFFF;
  --c-surface-2: #FAFBFD;
  --c-border: #E5E9F0;
  --c-border-soft: #F0F2F7;

  /* Semantic */
  --c-success: #10B981;
  --c-success-bg: rgba(16, 185, 129, 0.1);
  --c-warning: #F59E0B;
  --c-warning-bg: rgba(245, 158, 11, 0.1);
  --c-info: #0EA5E9;
  --c-info-bg: rgba(14, 165, 233, 0.1);
  --c-purple: #8B5CF6;

  /* Type */
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Radii */
  --r-sm: 6px;
  --r: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(15, 27, 45, 0.04), 0 4px 12px rgba(15, 27, 45, 0.05);
  --sh-2: 0 1px 2px rgba(15, 27, 45, 0.06), 0 10px 30px rgba(15, 27, 45, 0.09), 0 2px 8px rgba(15, 27, 45, 0.04);
  --sh-3: 0 4px 12px rgba(15, 27, 45, 0.08), 0 24px 56px rgba(15, 27, 45, 0.14);
  --sh-shell: 0 1px 1px rgba(15, 27, 45, 0.04), 0 28px 60px -10px rgba(15, 27, 45, 0.18), 0 12px 24px -6px rgba(15, 27, 45, 0.08);
  --sh-glow-red: 0 0 0 1px rgba(229, 35, 46, 0.16), 0 16px 40px -12px rgba(229, 35, 46, 0.35);
  --sh-glow-info: 0 0 0 1px rgba(14, 165, 233, 0.18), 0 16px 40px -12px rgba(14, 165, 233, 0.3);

  /* Motion */
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-in: cubic-bezier(0.7, 0, 0.84, 0);
  --e-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --d-fast: 150ms;
  --d-base: 280ms;
  --d-slow: 700ms;

  /* Layout */
  --container: 1280px;
  --container-narrow: 920px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-ink-900);
  background: var(--c-canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--c-red); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(229, 35, 46, 0.22); color: var(--c-navy); }

/* =========================================================================
   ANIMATED BACKDROP — Drifting mesh blobs, fixed behind everything
   ========================================================================= */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.backdrop::before,
.backdrop::after,
.backdrop > .blob {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.backdrop::before {
  width: 700px; height: 700px;
  top: -180px; left: -180px;
  background: radial-gradient(circle, rgba(229, 35, 46, 0.22), rgba(229, 35, 46, 0) 60%);
  animation: drift-a 28s ease-in-out infinite;
}
.backdrop::after {
  width: 600px; height: 600px;
  top: 30%; right: -120px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18), rgba(14, 165, 233, 0) 60%);
  animation: drift-b 34s ease-in-out infinite;
}
.backdrop > .blob {
  width: 520px; height: 520px;
  bottom: -120px; left: 30%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14), rgba(139, 92, 246, 0) 60%);
  animation: drift-c 40s ease-in-out infinite;
}
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.1); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 80px) scale(1.05); }
}
@keyframes drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -50px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .backdrop::before, .backdrop::after, .backdrop > .blob { animation: none; }
}

/* Subtle dot-grid overlay */
.backdrop-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15, 27, 45, 0.045) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* =========================================================================
   LAYOUT
   ========================================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; position: relative; }
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 1rem; }
}

/* Big ghost numerals as background decoration */
.ghost-num {
  position: absolute;
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: clamp(12rem, 28vw, 24rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(15, 27, 45, 0.035);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ghost-num-right { top: -2rem; right: -1rem; }
.ghost-num-left { top: -2rem; left: -1rem; }

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
.h-display { font-size: clamp(2.5rem, 7vw, 5.25rem); line-height: 1; letter-spacing: -0.035em; font-weight: 800; }
.h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 700; }
.h2 { font-size: clamp(1.875rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.025em; font-weight: 700; }
.h3 { font-size: clamp(1.375rem, 2.4vw, 1.75rem); line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; }
.h4 { font-size: 1.125rem; line-height: 1.3; letter-spacing: -0.01em; font-weight: 600; }
.lead { font-size: clamp(1.0625rem, 1.4vw, 1.1875rem); line-height: 1.6; color: var(--c-ink-700); }
.muted { color: var(--c-ink-500); }
.tabular { font-variant-numeric: tabular-nums; }
.mono { font-family: var(--f-mono); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-red);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--c-red);
}
.eyebrow.no-bar::before { display: none; }
.eyebrow-light { color: rgba(255, 255, 255, 0.72); }
.eyebrow-light::before { background: rgba(255, 255, 255, 0.5); }

.text-gradient {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-red { color: var(--c-red); }
.text-navy { color: var(--c-navy); }
.text-white { color: #fff; }

/* Letter-reveal: each char wraps into a span via JS, this controls the masking */
.split { display: inline-block; }
.split .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  will-change: transform, opacity;
}
.split .char.space { width: 0.28em; }
@media (prefers-reduced-motion: reduce) {
  .split .char { opacity: 1; transform: none; }
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  transition: transform 200ms var(--e-out), box-shadow 220ms var(--e-out), background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 0.5rem 1rem; min-height: 38px; font-size: 0.8125rem; border-radius: 9px; gap: 0.4rem; }
.btn-lg { padding: 1.125rem 2rem; min-height: 56px; font-size: 1rem; border-radius: 14px; }

.btn-primary {
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 10px 28px -8px var(--c-red-glow), 0 2px 0 rgba(0, 0, 0, 0.04) inset;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 700ms var(--e-out);
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--c-red-hover);
  box-shadow: 0 18px 40px -10px var(--c-red-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--c-navy);
  border-color: var(--c-border);
  box-shadow: var(--sh-1);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { transform: translateY(-1px); box-shadow: var(--sh-2); border-color: var(--c-ink-300); }

.btn-ghost {
  background: transparent;
  color: var(--c-ink-900);
  padding: 0.5rem 0.875rem;
  min-height: 36px;
  border-radius: 8px;
}
.btn-ghost:hover { background: rgba(15, 27, 45, 0.06); }

.btn-dark {
  background: var(--c-navy);
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(15, 27, 45, 0.5);
}
.btn-dark:hover { background: #1A2A45; transform: translateY(-1px); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-red);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  border-radius: 0;
  transition: gap 200ms var(--e-out);
}
.btn-arrow:hover { gap: 0.875rem; }
.btn-arrow svg { width: 18px; height: 18px; stroke-width: 2; }

/* =========================================================================
   CARDS
   ========================================================================= */
.card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(229, 233, 240, 0.7);
  box-shadow: var(--sh-1), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  border-radius: var(--r-xl);
  position: relative;
}
.card-pad { padding: clamp(1.5rem, 3vw, 2.25rem); }
.card-pad-lg { padding: clamp(2rem, 4vw, 3rem); }
.card-pad-sm { padding: 1.25rem; }

.card-clickable {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(229, 233, 240, 0.7);
  box-shadow: var(--sh-1), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  border-radius: var(--r-xl);
  transition: transform 320ms var(--e-out), box-shadow 320ms var(--e-out), border-color 240ms;
  position: relative;
  overflow: hidden;
  display: block;
}
.card-clickable::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 800ms var(--e-out);
  pointer-events: none;
  border-radius: inherit;
}
.card-clickable:hover::before { transform: translateX(110%); }
.card-clickable:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: rgba(229, 35, 46, 0.24);
}
@media (max-width: 640px) {
  .card-clickable:hover { transform: none; }
}

.card-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.72) 100%);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--sh-2), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.card-glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  pointer-events: none;
}

.card-dark {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-deep) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.card-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(229, 35, 46, 0.18), transparent 50%);
  pointer-events: none;
}
.card-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 20px 20px;
  opacity: 0.6;
  pointer-events: none;
}

/* 3D tilt card */
.tilt {
  transform-style: preserve-3d;
  transform: perspective(900px);
  transition: transform 300ms var(--e-out), box-shadow 300ms var(--e-out);
  will-change: transform;
}
.tilt:hover { box-shadow: var(--sh-3); }
.tilt > * { transform: translateZ(0); transition: transform 300ms var(--e-out); }

/* Glow card variants */
.glow-red {
  box-shadow: var(--sh-2), 0 0 0 1px rgba(229, 35, 46, 0.18), 0 20px 50px -12px var(--c-red-glow);
  border-color: rgba(229, 35, 46, 0.18) !important;
}
.glow-info {
  box-shadow: var(--sh-2), 0 0 0 1px rgba(14, 165, 233, 0.2), 0 20px 50px -12px rgba(14, 165, 233, 0.35);
}

/* =========================================================================
   PILLS / BADGES
   ========================================================================= */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  background: rgba(243, 244, 246, 0.95);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-pill);
  color: var(--c-ink-700);
  white-space: nowrap;
}
.pill-brand { background: var(--c-red-soft); border-color: rgba(229, 35, 46, 0.22); color: var(--c-red); }
.pill-success { background: var(--c-success-bg); border-color: rgba(16, 185, 129, 0.25); color: #047857; }
.pill-info { background: var(--c-info-bg); border-color: rgba(14, 165, 233, 0.25); color: #0369A1; }
.pill-warn { background: var(--c-warning-bg); border-color: rgba(245, 158, 11, 0.3); color: #B45309; }
.pill-dark { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.14); color: #fff; }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 251, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms, background 220ms, padding 220ms;
}
.site-header[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--c-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--c-navy);
  letter-spacing: -0.015em;
}
.brand-link img { height: 30px; width: auto; }
.brand-link .b-data { color: var(--c-red); }

.nav-primary { display: flex; align-items: center; gap: 0.125rem; }
.nav-primary a {
  position: relative;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-ink-700);
  border-radius: 8px;
  transition: color 150ms, background 150ms;
}
.nav-primary a:hover { color: var(--c-navy); background: rgba(15, 27, 45, 0.05); }
.nav-primary a[aria-current="page"] { color: var(--c-red); font-weight: 600; }
.nav-primary a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--c-red);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  padding: 0.375rem 0.625rem;
  color: var(--c-ink-500);
  border-radius: 6px;
  transition: background 150ms, color 150ms;
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--c-navy);
  color: #fff;
}
.nav-toggle { display: none; background: transparent; border: 0; padding: 0.5rem; border-radius: 8px; }
.nav-toggle:hover { background: rgba(15, 27, 45, 0.05); }
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--c-navy); stroke-width: 2; fill: none; }

@media (max-width: 1020px) {
  .nav-primary { display: none; }
  .nav-actions .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 27, 45, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.drawer[data-open="true"] { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 92vw);
  background: #fff;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 320ms var(--e-out);
  overflow-y: auto;
}
.drawer[data-open="true"] .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.drawer-panel a {
  display: block;
  padding: 0.875rem 0.75rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--c-navy);
  border-radius: 8px;
}
.drawer-panel a:hover { background: var(--c-canvas); }
.drawer-panel .btn { margin-top: 1.25rem; }
.drawer-panel .lang-toggle { margin-top: 1rem; align-self: flex-start; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--c-navy);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(229, 35, 46, 0.12), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(14, 165, 233, 0.08), transparent 50%);
  pointer-events: none;
}
.site-footer .container { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem 2rem;
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: rgba(255, 255, 255, 0.72); font-size: 0.9375rem; max-width: 34ch; margin: 1rem 0 0; line-height: 1.55; }
.footer-group h4 { color: rgba(255, 255, 255, 0.5); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 1.25rem; }
.footer-group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-group a { color: rgba(255, 255, 255, 0.84); font-size: 0.9375rem; transition: color 150ms; }
.footer-group a:hover { color: var(--c-red-2); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  color: rgba(255, 255, 255, 0.5); font-size: 0.8125rem;
}

/* =========================================================================
   GRID HELPERS
   ========================================================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* =========================================================================
   SECTION HEAD
   ========================================================================= */
.section-head { max-width: 64ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; z-index: 1; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin: 0 0 1rem; }
.section-head p { margin: 0; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
@media (max-width: 1080px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin: 1.25rem 0 1.5rem; }
.hero .lead { max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 2.25rem 0 2.5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 2.5rem; align-items: end; }
.hero-stat .num { display: block; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; line-height: 1; letter-spacing: -0.025em; color: var(--c-navy); }
.hero-stat .lbl { display: block; font-size: 0.8125rem; color: var(--c-ink-500); margin-top: 0.5rem; }
@media (max-width: 540px) { .hero-stats { gap: 1.5rem; } .hero-stat .num { font-size: 1.5rem; } }

/* Decorative floating orbs around hero */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(229, 35, 46, 0.35), transparent 70%); top: -80px; left: 30%; animation: orb-float 14s ease-in-out infinite; }
.hero-orb-2 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent 70%); bottom: -40px; right: 10%; animation: orb-float 16s ease-in-out infinite reverse; }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}

/* =========================================================================
   MOCKUP SHELL
   ========================================================================= */
.mockup {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.72) 100%);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--sh-shell), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  border-radius: var(--r-xl);
  padding: 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  isolation: isolate;
}
.mockup::after {
  content: '';
  position: absolute;
  inset: 12% 10% auto 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  pointer-events: none;
}
.mockup-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; font-size: 0.8125rem; }
.mockup-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red);
}

.mockup-insight {
  background: linear-gradient(135deg, rgba(229, 35, 46, 0.1), rgba(229, 35, 46, 0.03));
  border: 1px solid rgba(229, 35, 46, 0.2);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mockup-insight .txt { font-size: 0.875rem; line-height: 1.5; color: var(--c-navy); }
.mockup-insight .actions { display: flex; gap: 0.5rem; }
.mockup-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4375rem 0.875rem;
  border-radius: 7px;
  border: 0;
  background: var(--c-navy);
  color: #fff;
}
.mockup-btn.ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--c-ink-700);
  border: 1px solid var(--c-border);
}

.mockup-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mockup-card .head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }
.mockup-card .head .title { font-size: 0.8125rem; font-weight: 600; color: var(--c-ink-700); }
.mockup-card .head .meta { font-size: 0.6875rem; color: var(--c-ink-500); font-variant-numeric: tabular-nums; }

/* Bar chart */
.bars { display: flex; align-items: end; gap: 5px; height: 96px; }
.bars .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--c-navy), #2A3B5C);
  border-radius: 4px;
  min-height: 12%;
  transform-origin: bottom;
  transform: scaleY(0);
  animation: bar-grow 0.8s var(--e-out) forwards;
}
.bars[data-animate-on-scroll] .bar { animation: none; }
.bars[data-animate-on-scroll].in-view .bar { animation: bar-grow 0.8s var(--e-out) forwards; }
.bars .bar.accent { background: linear-gradient(180deg, var(--c-red), #B41822); }
.bars .bar.warn { background: linear-gradient(180deg, var(--c-warning), #B45309); }
.bars .bar:nth-child(1) { animation-delay: 0.0s; }
.bars .bar:nth-child(2) { animation-delay: 0.06s; }
.bars .bar:nth-child(3) { animation-delay: 0.12s; }
.bars .bar:nth-child(4) { animation-delay: 0.18s; }
.bars .bar:nth-child(5) { animation-delay: 0.24s; }
.bars .bar:nth-child(6) { animation-delay: 0.3s; }
.bars .bar:nth-child(7) { animation-delay: 0.36s; }
.bars .bar:nth-child(8) { animation-delay: 0.42s; }
.bars .bar:nth-child(9) { animation-delay: 0.48s; }
.bars .bar:nth-child(10) { animation-delay: 0.54s; }
@keyframes bar-grow {
  to { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) { .bars .bar { animation: none !important; transform: scaleY(1); } }

/* Live ping row */
.mockup-live {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-info);
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.live-dot.red { background: var(--c-red); box-shadow: 0 0 0 0 rgba(229, 35, 46, 0.5); animation-name: pulse-dot-red; }
.live-dot.success { background: var(--c-success); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); animation-name: pulse-dot-success; }
.mockup-live .txt { font-size: 0.8125rem; color: var(--c-navy); line-height: 1.45; flex: 1; }
.mockup-live .ago { font-size: 0.6875rem; color: var(--c-ink-500); font-variant-numeric: tabular-nums; white-space: nowrap; }

@keyframes pulse-dot { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.45); } 50% { transform: scale(1.2); box-shadow: 0 0 0 7px rgba(14, 165, 233, 0); } }
@keyframes pulse-dot-red { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 35, 46, 0.45); } 50% { transform: scale(1.2); box-shadow: 0 0 0 7px rgba(229, 35, 46, 0); } }
@keyframes pulse-dot-success { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); } 50% { transform: scale(1.2); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); } }
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none !important; } }

/* =========================================================================
   ARCHITECTURE DIAGRAM
   ========================================================================= */
.arch {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.arch-layer {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(229, 233, 240, 0.7);
  box-shadow: var(--sh-1), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  overflow: hidden;
}
.arch-layer .tag { color: var(--c-red); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.625rem; display: inline-block; }
.arch-layer h3 { font-size: 1.375rem; margin: 0 0 1rem; letter-spacing: -0.02em; }
.arch-layer .chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.arch-layer.dark {
  background: linear-gradient(135deg, var(--c-navy), var(--c-deep));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}
.arch-layer.dark .tag { color: var(--c-red-2); }
.arch-layer.dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0% 0%, rgba(229, 35, 46, 0.18), transparent 50%); pointer-events: none; }
.arch-layer.dark::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0); background-size: 22px 22px; opacity: 0.6; pointer-events: none; }

.arch-connector {
  display: flex;
  justify-content: center;
  padding: 0;
  position: relative;
}
.arch-connector svg { width: 32px; height: 32px; stroke: var(--c-ink-400); fill: none; stroke-width: 2; }

.twin-rows { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1rem; position: relative; z-index: 1; }
@media (max-width: 640px) { .twin-rows { grid-template-columns: 1fr; } }
.twin-row {
  display: flex;
  flex-direction: column;
  padding: 0.875rem 1rem;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r);
  transition: border-color 200ms, transform 200ms;
}
.twin-row:hover { border-color: var(--c-red); transform: translateY(-2px); }
.twin-row .lbl { font-size: 0.875rem; font-weight: 600; color: var(--c-navy); }
.twin-row .det { font-size: 0.8125rem; color: var(--c-ink-500); margin-top: 0.25rem; }

/* =========================================================================
   MODULES (homepage teaser)
   ========================================================================= */
.module-card {
  padding: 1.75rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.module-card .num { font-family: var(--f-mono); font-size: 0.75rem; color: var(--c-red); letter-spacing: 0.05em; font-weight: 600; }
.module-card h3 { font-size: 1.1875rem; margin: 0; letter-spacing: -0.02em; }
.module-card .body { font-size: 0.9375rem; color: var(--c-ink-700); line-height: 1.55; flex: 1; }
.module-card .icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(229, 35, 46, 0.12), rgba(229, 35, 46, 0.04));
  border: 1px solid rgba(229, 35, 46, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-red);
  margin-bottom: 0.25rem;
  transition: transform 300ms var(--e-out);
}
.module-card .icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card-clickable:hover .module-card-icon, .card-clickable:hover .icon { transform: scale(1.1) rotate(-3deg); }

/* =========================================================================
   INDUSTRIES
   ========================================================================= */
.branche-card { padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.branche-card .ico {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-surface-2), #fff);
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-navy);
}
.branche-card .ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.branche-card h3 { font-size: 1.1875rem; margin: 0; letter-spacing: -0.015em; }
.row-lbl { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-ink-500); margin-bottom: 0.5rem; display: block; }

/* =========================================================================
   TICKER (marquee-style)
   ========================================================================= */
.ticker {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1rem;
  height: 360px;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 50px; pointer-events: none; z-index: 2;
}
.ticker::before { top: 0; background: linear-gradient(180deg, #fff, transparent); }
.ticker::after { bottom: 0; background: linear-gradient(0deg, #fff, transparent); }
.ticker-track {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: ticker-scroll 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
.ticker-row {
  display: flex; gap: 0.875rem; align-items: flex-start;
  padding: 0.625rem 0;
  border-bottom: 1px dashed var(--c-border-soft);
  font-size: 0.8125rem;
}
.ticker-row:last-child { border-bottom: 0; }
.ticker-row .time { font-family: var(--f-mono); font-size: 0.6875rem; color: var(--c-ink-500); min-width: 60px; padding-top: 2px; flex-shrink: 0; }
.ticker-row .what { color: var(--c-navy); line-height: 1.5; }
.ticker-row strong { color: var(--c-navy); }
@keyframes ticker-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* =========================================================================
   MARQUEE (horizontal scrolling band)
   ========================================================================= */
.marquee {
  display: flex;
  overflow: hidden;
  background: var(--c-navy);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  flex-shrink: 0;
  padding-right: 3rem;
}
.marquee-item {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-red); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* =========================================================================
   PRICING
   ========================================================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 1080px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.price-card.featured {
  border: 1.5px solid var(--c-red);
  box-shadow: var(--sh-3), 0 0 0 6px rgba(229, 35, 46, 0.08);
  background: linear-gradient(180deg, rgba(229, 35, 46, 0.03), rgba(255, 255, 255, 0.94));
}
.price-card .name { font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.015em; }
.price-card .price { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.025em; line-height: 1; }
.price-card .price small { font-size: 0.875rem; color: var(--c-ink-500); font-weight: 500; letter-spacing: 0; }
.price-card .setup { font-size: 0.8125rem; color: var(--c-ink-500); }
.price-card ul { list-style: none; padding: 0; margin: 0.5rem 0 0; display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.875rem; color: var(--c-ink-700); }
.price-card ul li { display: flex; gap: 0.5rem; align-items: flex-start; }
.price-card ul li::before { content: '✓'; color: var(--c-red); font-weight: 700; flex-shrink: 0; }
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 12px -4px var(--c-red-glow);
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-item { padding: 1.25rem 1.5rem; transition: border-color 200ms; }
.faq-item[open] { border-color: rgba(229, 35, 46, 0.2); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.75rem;
  line-height: 1;
  color: var(--c-red);
  font-weight: 400;
  transition: transform 240ms var(--e-out);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 1rem 0 0; color: var(--c-ink-700); line-height: 1.65; }

/* =========================================================================
   FORMS
   ========================================================================= */
.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label { font-size: 0.8125rem; font-weight: 600; color: var(--c-ink-700); }
.form-field input,
.form-field textarea,
.form-field select {
  font: inherit;
  width: 100%;
  padding: 0.75rem 0.9375rem;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  color: var(--c-navy);
  min-height: 44px;
  transition: border-color 150ms, box-shadow 150ms;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 4px rgba(229, 35, 46, 0.12);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* =========================================================================
   PILOT MAP
   ========================================================================= */
.pilot-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (max-width: 640px) { .pilot-map { grid-template-columns: repeat(2, 1fr); } }
.pilot-node {
  padding: 1rem 1.125rem;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 0.75rem;
  transition: border-color 240ms, transform 240ms, box-shadow 240ms;
  position: relative;
}
.pilot-node:hover {
  border-color: var(--c-red);
  transform: translateY(-3px);
  box-shadow: var(--sh-1);
}
.pilot-node .node-name { font-weight: 600; font-size: 0.9375rem; color: var(--c-navy); }

/* =========================================================================
   JOB CARD
   ========================================================================= */
.job-card { padding: 2rem; transition: border-color 200ms; }
.job-card[data-open="true"] { border-color: rgba(229, 35, 46, 0.2); }
.job-card h3 { font-size: 1.25rem; margin: 0 0 0.5rem; }
.job-card .meta { display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem; font-size: 0.8125rem; color: var(--c-ink-500); margin-bottom: 1rem; }
.job-card .body { color: var(--c-ink-700); line-height: 1.55; margin-bottom: 1.25rem; }
.job-detail { display: none; padding: 1.25rem 0 0; border-top: 1px solid var(--c-border-soft); margin-top: 1.25rem; }
.job-card[data-open="true"] .job-detail { display: block; animation: detail-in 0.4s var(--e-out); }
@keyframes detail-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.job-detail h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-ink-500); margin: 0 0 0.625rem; }
.job-detail ul { margin: 0 0 1.25rem; padding-left: 1.25rem; font-size: 0.9375rem; line-height: 1.6; color: var(--c-ink-700); }
.job-detail ul li { margin-bottom: 0.375rem; }
.job-card .toggle-detail { background: transparent; border: 0; color: var(--c-red); font-weight: 600; font-size: 0.875rem; padding: 0; display: inline-flex; align-items: center; gap: 0.375rem; }
.job-card .toggle-detail::after { content: '↓'; transition: transform 200ms var(--e-out); }
.job-card[data-open="true"] .toggle-detail::after { transform: rotate(180deg); }

/* =========================================================================
   PAGE HERO (subpages)
   ========================================================================= */
.page-hero {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { margin: 1rem 0 1.5rem; max-width: 22ch; }
.page-hero .lead { max-width: 62ch; }

/* =========================================================================
   VALUES
   ========================================================================= */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 2rem; position: relative; overflow: hidden; }
.value-card h3 { font-size: 1.1875rem; margin: 0 0 0.625rem; }
.value-card p { margin: 0; color: var(--c-ink-700); line-height: 1.6; }
.value-card .num {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 6rem;
  line-height: 0.85;
  position: absolute;
  right: -0.5rem;
  bottom: -1rem;
  color: rgba(229, 35, 46, 0.07);
  pointer-events: none;
}

/* =========================================================================
   TEAM
   ========================================================================= */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { padding: 2.25rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.team-avatar {
  width: 72px; height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy), #2A3B5C);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
  box-shadow: var(--sh-1);
}
.team-info h3 { font-size: 1.25rem; margin: 0 0 0.25rem; }
.team-info .role { font-size: 0.875rem; color: var(--c-red); font-weight: 600; margin-bottom: 0.875rem; }
.team-info p { margin: 0; color: var(--c-ink-700); line-height: 1.6; }

/* =========================================================================
   FEATURE STRIP
   ========================================================================= */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
@media (max-width: 880px) { .feature-strip { grid-template-columns: repeat(2, 1fr); } }
.feature-item { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.25rem; background: rgba(255, 255, 255, 0.6); border: 1px solid var(--c-border); border-radius: var(--r-md); backdrop-filter: blur(10px); }
.feature-item .ico { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--c-red-soft); color: var(--c-red); display: flex; align-items: center; justify-content: center; }
.feature-item .ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.feature-item h4 { font-size: 0.9375rem; margin: 0; }
.feature-item p { font-size: 0.8125rem; color: var(--c-ink-500); margin: 0; line-height: 1.45; }

/* =========================================================================
   STAT TILE
   ========================================================================= */
.stat-tile {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
}
.stat-tile .big { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.025em; line-height: 1; color: var(--c-navy); }
.stat-tile .lbl { font-size: 0.8125rem; color: var(--c-ink-500); margin-top: 0.5rem; }
.stat-tile .delta { font-size: 0.75rem; color: var(--c-success); font-weight: 600; margin-top: 0.375rem; }

/* =========================================================================
   REVEAL (managed by JS, kicks in on inView)
   ========================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 800ms var(--e-out), transform 800ms var(--e-out), filter 600ms var(--e-out);
  will-change: opacity, transform, filter;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="left"].in-view { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="right"].in-view { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="scale"].in-view { transform: scale(1); }
[data-reveal="blur"] { filter: blur(16px); opacity: 0; }
[data-reveal="blur"].in-view { filter: blur(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
}

/* =========================================================================
   CALLOUT
   ========================================================================= */
.callout {
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-red);
  background: linear-gradient(90deg, rgba(229, 35, 46, 0.04), transparent);
  border-radius: var(--r);
}
.callout p { margin: 0; color: var(--c-ink-700); line-height: 1.6; }
.callout strong { color: var(--c-navy); }

/* =========================================================================
   SCROLL PROGRESS BAR
   ========================================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-red), var(--c-red-2));
  width: 0;
  z-index: 100;
  transition: width 100ms linear;
}

/* =========================================================================
   BILINGUAL (lang-switcher)
   ========================================================================= */
html:not([data-lang="en"]) [lang="en"],
html[data-lang="en"] [lang="de"] {
  display: none !important;
}

/* =========================================================================
   DIVIDER
   ========================================================================= */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin: 0;
  border: 0;
}

/* =========================================================================
   QUOTE
   ========================================================================= */
.quote {
  padding: 1.5rem 1.75rem 1.5rem 2.5rem;
  background: var(--c-surface-2);
  border-left: 4px solid var(--c-red);
  border-radius: var(--r);
  position: relative;
}
.quote::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  font-size: 3rem;
  line-height: 1;
  color: rgba(229, 35, 46, 0.18);
  font-family: var(--f-sans);
  font-weight: 800;
}
.quote p { margin: 0; font-style: italic; font-size: 1.0625rem; color: var(--c-navy); line-height: 1.6; }
.quote cite { display: block; margin-top: 0.75rem; font-style: normal; font-size: 0.8125rem; color: var(--c-ink-500); }

/* =========================================================================
   UTIL
   ========================================================================= */
.center { text-align: center; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.fw-700 { font-weight: 700; }
.fs-sm { font-size: 0.875rem; }
.kbd {
  font-family: var(--f-mono); font-size: 0.8125em;
  padding: 0.125rem 0.45em;
  background: var(--c-surface-2); border: 1px solid var(--c-border); border-radius: 4px;
  color: var(--c-navy);
}
