/* cuvalu — Brand tokens & base */
:root {
  /* Brand colors (Quick Guide Book) */
  --cv-blue-dark: #27355F;
  --cv-blue-light: #72BAD3;
  --cv-orange: #F4610C;
  --cv-gray: #F2F2F2;

  /* Derived */
  --cv-blue-deep: #1B264A;
  --cv-blue-ink: #0F1830;
  --cv-blue-tint: #EAF3F8;
  --cv-blue-soft: #C7DEEA;
  --cv-cream: #F7F4EE;
  --cv-orange-soft: #FDE3D2;
  --cv-text: #1B1F2A;
  --cv-text-mute: #5B6478;
  --cv-line: #E5E7EE;
  --cv-logo-mute: #8895AE;

  /* Type */
  --font-display: "Raleway", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--cv-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ─────────────── Layout ─────────────── */
.cv-wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ─────────────── Nav ─────────────── */
.cv-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(42, 56, 96, 0.82);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  color: #fff;
  border-bottom: 1px solid rgba(114, 186, 211, 0.28);
}
.cv-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 24px;
}
.cv-nav .cv-logo {
  position: relative;
  display: flex; align-items: center; height: 58px;
  filter: drop-shadow(0 3px 14px rgba(150,180,220,0.35));
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.cv-nav .cv-logo img { height: 100%; width: auto; display: block; }
/* Shiny "glint" sweep, clipped to the wordmark shape */
.cv-nav .cv-logo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  -webkit-mask: url(assets/cuvalu-logo-clean.png) center / contain no-repeat;
  mask: url(assets/cuvalu-logo-clean.png) center / contain no-repeat;
  background: linear-gradient(105deg,
    transparent 34%,
    rgba(255,255,255,0.95) 46%,
    rgba(190,214,255,0.95) 50%,
    rgba(255,255,255,0.95) 54%,
    transparent 66%);
  background-size: 260% 100%;
  background-position: 180% 0;
  mix-blend-mode: screen;
  animation: cv-logo-shine 5.5s cubic-bezier(.6,0,.2,1) infinite;
}
.cv-nav .cv-logo:hover { transform: translateY(-1px); }
@keyframes cv-logo-shine {
  0%   { background-position: 180% 0; }
  55%  { background-position: -90% 0; }
  100% { background-position: -90% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cv-nav .cv-logo::after { animation: none; opacity: 0; }
}
.cv-nav ul a.is-active { color: #fff; position: relative; }
.cv-nav ul a.is-active::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -8px;
  width: 20px; height: 3px; border-radius: 3px; background: var(--cv-orange);
}
.cv-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 32px; font-size: 15px; font-weight: 600; }
.cv-nav ul a { color: rgba(255,255,255,0.74); transition: color .15s; position: relative; }
.cv-nav ul a:hover { color: #fff; }

/* Dropdown „Mehr über unsere Mission" */
.cv-nav-more { position: relative; }
.cv-nav-more-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer; padding: 0;
  font: inherit; font-weight: 600; font-size: 15px;
  color: rgba(255,255,255,0.74); transition: color .15s;
}
.cv-nav-more-btn svg { transition: transform .25s; opacity: 0.7; }
.cv-nav-more:hover .cv-nav-more-btn,
.cv-nav-more-btn.is-active { color: #fff; }
.cv-nav-more:hover .cv-nav-more-btn svg { transform: rotate(180deg); }
.cv-nav-dropdown {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 320px; padding: 10px;
  background: #fff; border-radius: 18px;
  box-shadow: 0 30px 70px -24px rgba(20,33,70,0.55), 0 0 0 1px rgba(20,33,70,0.06);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform-origin: top center;
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 60;
}
.cv-nav-dropdown::before {
  content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px;
}
.cv-nav-dropdown-head {
  font-family: var(--font-display); font-weight: 800; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cv-text-mute);
  padding: 8px 12px 6px;
}
.cv-nav-more:hover .cv-nav-dropdown,
.cv-nav-more:focus-within .cv-nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cv-nav-dd-item {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 12px; border-radius: 12px;
  color: var(--cv-blue-dark) !important;
  transition: background .16s;
}
.cv-nav-dd-item:hover { background: var(--cv-blue-tint); }
.cv-nav-dd-ic {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cv-blue-tint); color: var(--cv-blue-dark);
  transition: background .16s, color .16s;
}
.cv-nav-dd-item:hover .cv-nav-dd-ic { background: var(--cv-blue-dark); color: #fff; }
.cv-nav-dd-item.is-active .cv-nav-dd-ic { background: var(--cv-orange); color: #fff; }
.cv-nav-dd-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.cv-nav-dd-label { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--cv-blue-dark); }
.cv-nav-dd-desc { font-size: 12px; color: var(--cv-text-mute); font-weight: 500; }
.cv-nav-dd-arrow {
  margin-left: auto; flex-shrink: 0; color: var(--cv-blue-soft);
  opacity: 0; transform: translateX(-4px);
  transition: opacity .18s, transform .18s, color .18s;
}
.cv-nav-dd-item:hover .cv-nav-dd-arrow { opacity: 1; transform: translateX(0); color: var(--cv-orange); }
.cv-nav-dd-item.is-active .cv-nav-dd-label { color: var(--cv-orange); }

/* Mobile: Gruppentitel + Unterpunkte */
.cv-nav-mobile-group {
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 10px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
a.cv-nav-mobile-sub { padding-left: 14px !important; }
.cv-nav-cta { display: flex; align-items: center; gap: 14px; }
.cv-pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 22px; border-radius: 999px;
  font-weight: 700; font-size: 14.5px; font-family: var(--font-display);
  transition: transform .15s, box-shadow .15s, background .15s;
  letter-spacing: 0.01em;
}
.cv-pill-ghost { border: 1px solid rgba(255,255,255,0.3); color: #fff; background: transparent; }
.cv-pill-ghost:hover { background: rgba(255,255,255,0.1); }
.cv-pill-orange { background: var(--cv-orange); color: #fff; border: none; box-shadow: 0 6px 18px rgba(244,97,12,0.35); }
.cv-pill-orange:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(244,97,12,0.45); }
.cv-pill-dark { background: var(--cv-blue-dark); color: #fff; border: none; }
.cv-pill-dark:hover { background: var(--cv-blue-deep); }
.cv-pill-white { background: #fff; color: var(--cv-blue-dark); border: none; box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
.cv-pill-white:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,0.12); }

/* ─────────────── Hero ─────────────── */
.cv-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 600px at 90% 10%, rgba(114,186,211,0.42), transparent 65%),
    radial-gradient(800px 500px at -5% 90%, rgba(244,97,12,0.22), transparent 60%),
    radial-gradient(560px 440px at 46% 52%, rgba(120,190,214,0.10), transparent 70%),
    linear-gradient(135deg, var(--cv-blue-deep) 0%, var(--cv-blue-dark) 54%, #2b3d6e 100%);
  color: #fff;
  padding: 72px 0 110px;
}
/* Living data-network backdrop (canvas) — above orbs, below content */
.cv-hero-net {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none; display: block;
  -webkit-mask-image: radial-gradient(140% 110% at 50% 30%, #000 58%, transparent 100%);
  mask-image: radial-gradient(140% 110% at 50% 30%, #000 58%, transparent 100%);
}
/* Animated grid */
.cv-hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.08; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 60% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, #000 30%, transparent 80%);
}
/* Floating orbs */
.cv-hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(40px); opacity: 0.55;
}
.cv-hero-orb.--a { width: 380px; height: 380px; background: var(--cv-blue-light); top: -80px; right: -60px; animation: cv-orb-a 14s ease-in-out infinite; }
.cv-hero-orb.--b { width: 280px; height: 280px; background: var(--cv-orange); bottom: -100px; left: 8%; animation: cv-orb-b 18s ease-in-out infinite; }
@keyframes cv-orb-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, 40px) scale(1.08); }
}
@keyframes cv-orb-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.12); }
}

.cv-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 0.86fr 1.32fr; gap: 52px;
  align-items: center;
}
.cv-hero-copy { max-width: 560px; }
.cv-hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.88);
  margin-bottom: 26px;
}
.cv-hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--cv-orange);
  box-shadow: 0 0 0 4px rgba(244,97,12,0.22);
}

.cv-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #DCE9F0;
}
.cv-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cv-orange);
  box-shadow: 0 0 0 4px rgba(244,97,12,0.25);
  animation: cv-pulse 2.4s ease-in-out infinite;
}
@keyframes cv-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(244,97,12,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(244,97,12,0.05); }
}

/* Wordmark — image-based */
.cv-wordmark {
  position: relative;
  margin: 0 0 20px 0;
  display: block;
  max-width: none;
  transform-origin: left center;
  filter: drop-shadow(0 14px 44px rgba(114,186,211,0.35));
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  /* Einblend-Animation entfernt – Logo steht statisch */
}
.cv-wordmark img { width: 100%; max-width: 300px; height: auto; display: block; margin: 0; }
/* (Einblend-Animation entfernt – Logo steht statisch) */
/* Shiny glint sweep entfernt – Logo statisch */
@keyframes cv-logo-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Screen-reader / crawler-only utility (semantic SEO headings) */
.cv-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Rotating slogan */
.cv-slogan-row {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  margin-top: 22px;
}
.cv-slogan-index {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  color: var(--cv-orange); letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.cv-slogan-index .of { color: rgba(255,255,255,0.45); font-weight: 600; }

.cv-slogan-stage {
  position: relative; display: grid; width: 100%; min-width: 0;
  overflow: visible;
}
.cv-slogan {
  grid-area: 1 / 1; min-width: 0;
  display: flex; align-items: flex-start; justify-content: flex-start;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3.1vw, 44px); line-height: 1.12; letter-spacing: -0.025em;
  color: #fff;
  text-align: left; text-wrap: balance;
  opacity: 0; transform: translateY(40px);
  pointer-events: none;
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.cv-slogan.is-active { opacity: 1; transform: translateY(0); }
.cv-slogan .word {
  display: inline; white-space: normal;
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s, transform .5s;
  transition-delay: 0s;
}
.cv-slogan.is-active .word {
  opacity: 1; transform: translateY(0);
}
.cv-slogan .highlight { color: var(--cv-blue-light); }
.cv-slogan .accent { color: var(--cv-orange); }
.cv-slogan .colon { color: rgba(255,255,255,0.6); }

.cv-slogan-bar {
  margin-top: 12px; height: 3px; background: rgba(255,255,255,0.14);
  border-radius: 2px; overflow: hidden;
}
.cv-slogan-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--cv-blue-light), var(--cv-orange));
  width: 0%; transition: width 0.1s linear;
}

.cv-hero-actions { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.cv-hero-meta {
  display: flex; gap: 10px 16px; margin-top: 28px; flex-wrap: nowrap;
  font-size: 12.5px; color: rgba(255,255,255,0.82);
}
.cv-hero-meta .item { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.cv-hero-meta svg { color: var(--cv-blue-light); }

/* ─────────────── Horizontal Video Frame ─────────────── */
.cv-video-wrap { position: relative; display: flex; justify-content: center; align-items: center; align-self: center; padding: 0; }
.cv-video-stage { position: relative; width: 100%; max-width: 620px; }
.cv-video-glow {
  position: absolute; inset: -50px;
  background: radial-gradient(closest-side, rgba(114,186,211,0.5), transparent 70%);
  filter: blur(24px); z-index: 0;
}
.cv-video-frame {
  position: relative; z-index: 1;
  aspect-ratio: 16 / 9;
  width: 100%; max-width: none;
  background: linear-gradient(150deg, #4a4d54 0%, #2c2e34 45%, #1c1e23 100%);
  border-radius: 26px;
  padding: 11px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.42),
    0 0 0 1px rgba(255,255,255,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  transform: none;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.cv-video-frame::after {
  content: ""; position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #3a4658, #10151f);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
.cv-video-frame:hover { transform: translateY(-4px); }
.cv-video-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 14px; overflow: hidden;
  background: #000;
}
.cv-video-el {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; display: block;
}
.cv-video-el {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.cv-video-slot { position: absolute; inset: 0; }

/* ── Expand button + fullscreen overlay (same <video> node is moved in) ── */
.cv-vid-expand-btn {
  position: absolute; bottom: 14px; left: 14px; z-index: 4;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(39,53,95,0.78); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.20); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  cursor: pointer; transition: background .2s, transform .2s;
}
.cv-vid-expand-btn:hover { background: var(--cv-orange); transform: translateY(-2px); }
.cv-vid-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #0a1026; backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  animation: cv-vid-fade-in .22s ease both;
}
@keyframes cv-vid-fade-in { from { opacity: 0; } to { opacity: 1; } }
.cv-vid-overlay-inner {
  position: relative;
  width: min(92vw, 1200px); aspect-ratio: 16 / 9;
  background: #000; border-radius: 18px; overflow: hidden;
  box-shadow: 0 60px 140px -40px rgba(0,0,0,0.8);
  animation: cv-vid-pop-in .28s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes cv-vid-pop-in { from { transform: scale(.93); opacity: 0; } to { transform: none; opacity: 1; } }
.cv-vid-overlay-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(39,53,95,0.80); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .2s;
}
.cv-vid-overlay-close:hover { background: var(--cv-orange); transform: scale(1.08); }
.cv-video-controls {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
}
.cv-video-controls .play-mini {
  width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--cv-orange);
  display: flex; align-items: center; justify-content: center;
}
.cv-video-controls .bar {
  flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.25); overflow: hidden;
}
.cv-video-controls .bar-fill { height: 100%; width: 32%; background: var(--cv-orange); border-radius: 2px; }
.cv-video-controls .time { font-variant-numeric: tabular-nums; opacity: 0.9; }

/* Big play overlay */
.cv-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.cv-play-overlay:hover { background: rgba(39,53,95,0.15); }
.cv-play-btn {
  width: 96px; height: 96px; border-radius: 50%; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 50px rgba(15,24,48,0.4), inset 0 0 0 1px rgba(255,255,255,0.7);
  transition: transform .2s;
  position: relative;
}
.cv-play-overlay:hover .cv-play-btn { transform: scale(1.08); }
.cv-play-btn::before, .cv-play-btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  animation: cv-play-ring 2.8s ease-out infinite;
}
.cv-play-btn::after { animation-delay: 1.4s; }
@keyframes cv-play-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}
.cv-play-caption {
  position: absolute; left: 50%; bottom: 24%; transform: translateX(-50%);
  background: rgba(255,255,255,0.95); color: var(--cv-blue-dark);
  padding: 8px 16px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
  white-space: nowrap; box-shadow: 0 8px 24px rgba(15,24,48,0.25);
}

/* Floating chips around video */
.cv-chip-float {
  position: absolute; z-index: 3;
  background: #fff; color: var(--cv-blue-dark);
  border-radius: 14px; padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(15,24,48,0.32), 0 0 0 1px rgba(255,255,255,0.08);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  animation: cv-float 6s ease-in-out infinite;
}
.cv-chip-float .ic {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.cv-chip-float small { display: block; font-weight: 500; color: var(--cv-text-mute); font-size: 11px; }
.cv-chip-float.--tl { top: 0%; left: -6%; animation-delay: -1s; }
.cv-chip-float.--br { bottom: -6%; right: 2%; animation-delay: -3s; }
.cv-chip-float.--mr { top: 42%; right: -16%; animation-delay: -2s; }
@keyframes cv-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ─────────────── Scroll reveal (subtle, serious entrance) ─────────────── */
.cv-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: opacity .9s cubic-bezier(.16,.7,.2,1), transform .9s cubic-bezier(.16,.7,.2,1);
  will-change: opacity, transform;
}
.cv-reveal.is-in { opacity: 1; transform: none; }
/* Keep the dual-CTA cards equal height when wrapped */
.cv-dual .cv-reveal { display: flex; flex-direction: column; }
.cv-dual .cv-reveal > a { flex: 1 1 auto; }
@media (prefers-reduced-motion: reduce) {
  .cv-reveal { opacity: 1; transform: none; transition: none; }
}

/* ─────────────── Section primitives ─────────────── */
.cv-section { padding: 110px 0; }
.cv-section.--gray { background: var(--cv-gray); }
.cv-section.--tint { background: var(--cv-blue-tint); }
.cv-section.--cream { background: var(--cv-cream); }

.cv-section-head { text-align: center; margin: 0 auto 64px; max-width: 760px; }
.cv-section-eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cv-orange);
  margin-bottom: 14px;
}
.cv-section-title {
  font-size: 48px; line-height: 1.08; color: var(--cv-blue-dark); margin: 0 0 16px;
}
.cv-section-sub { font-size: 17px; line-height: 1.6; color: var(--cv-text-mute); margin: 0; }

/* ─────────────── Trusted-by Marquee (elegant) ─────────────── */
.cv-trusted {
  background: #F4F6F9;
  padding: 40px 0 44px;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.cv-trusted-label {
  text-align: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: 12.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cv-text-mute); margin-bottom: 28px;
}
.cv-trusted-label .accent { color: var(--cv-blue-dark); }
.cv-marquee {
  display: flex; overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.cv-marquee-track {
  display: flex; gap: 40px; flex-shrink: 0; align-items: center;
  animation: cv-marquee-scroll var(--marquee-duration, 50s) linear infinite;
  padding-right: 40px;
}
.cv-marquee:hover .cv-marquee-track { animation-play-state: paused; }
@keyframes cv-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cv-trusted-logo {
  flex-shrink: 0; height: 76px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 30px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .3s;
  cursor: default;
}
.cv-trusted-logo:hover { transform: translateY(-3px); }
.cv-trusted-logo img {
  height: 60px; width: auto; max-width: 220px; display: block; object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter .3s ease;
}
.cv-trusted-logo:hover img {
  filter: grayscale(0) opacity(1);
}
/* dark-background lockup (e.g. Kensington) → tidy rounded tile */
.cv-trusted-logo.--tile { padding: 0 12px; }
.cv-trusted-logo.--tile img { height: 60px; border-radius: 9px; }
/* square / stacked logo (e.g. projekt spielart) */
.cv-trusted-logo.--big img { height: 60px; max-width: 220px; }

/* ─────────────── Trusted-by · Konstellation (Netzwerk) ─────────────── */
.cv-net {
  position: relative;
  height: clamp(360px, 36vw, 440px);
  max-width: 1180px; margin: 0 auto;
}
.cv-net-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* central cuvalu hub */
.cv-net-hub {
  position: absolute; z-index: 3;
  transform: translate(-50%, -50%);
  width: 132px; height: 132px;
}
.cv-net-hub-disc {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 50%;
  box-shadow: 0 22px 50px -18px rgba(39,53,95,0.45), inset 0 0 0 1px rgba(39,53,95,0.06);
}
.cv-net-hub-disc img { width: 78px; height: auto; }
.cv-net-hub-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(114,186,211,0.5);
  animation: cv-hub-pulse 3.4s ease-out infinite;
}
@keyframes cv-hub-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .cv-net-hub-pulse { animation: none; opacity: 0.4; } }

/* orbiting logo node */
.cv-net-node {
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  cursor: default;
}
.cv-net-disc {
  width: 116px; height: 116px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  box-shadow: 0 14px 30px -16px rgba(39,53,95,0.30), inset 0 0 0 1px rgba(39,53,95,0.07);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
}
.cv-net-disc img {
  width: 66px; height: 44px; object-fit: contain; display: block;
  filter: grayscale(1) opacity(0.5);
  transition: filter .3s ease;
}
.cv-net-node.--tile .cv-net-disc img { width: 72px; }
.cv-net-node.--big .cv-net-disc img { width: 74px; height: 50px; }

.cv-net-tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--cv-text-mute);
  background: #fff; border: 1px solid var(--cv-line);
  padding: 3px 11px; border-radius: 999px;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .25s, transform .25s, color .25s, border-color .25s;
  white-space: nowrap; pointer-events: none;
}
.cv-net-node.is-hover .cv-net-disc {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 26px 50px -18px rgba(var(--rel), 0.55), inset 0 0 0 2px rgba(var(--rel), 0.65);
}
.cv-net-node.is-hover .cv-net-disc img { filter: grayscale(0) opacity(1); }
.cv-net-node.is-hover .cv-net-tag {
  opacity: 1; transform: translateY(0);
  color: var(--cv-blue-dark); border-color: rgba(var(--rel), 0.6);
}

/* compact (mobile) — graceful grid fallback */
.cv-net.is-compact { height: auto; }
.cv-net.is-compact .cv-net-canvas { display: none; }
.cv-net-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 18px; align-items: center; justify-items: center;
}
.cv-net.is-compact .cv-net-node { position: static; transform: none; }
.cv-net.is-compact .cv-net-disc { width: 104px; height: 104px; }
.cv-net.is-compact .cv-net-tag { opacity: 1; transform: none; }

/* ─────────────── Dual CTA — light cards with colored borders ─────────────── */
/* Dual-CTA intro text */
.cv-dual-intro {
  max-width: 760px; margin: 0 auto 40px;
  text-align: center; font-size: 17px; line-height: 1.72;
  color: var(--cv-text-mute); text-wrap: pretty;
  display: flex; flex-direction: column; gap: 16px;
}
.cv-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.cv-cta-card {
  position: relative; overflow: hidden;
  border-radius: 28px; padding: 48px 44px 40px;
  display: flex; flex-direction: column;
  min-height: 380px;
  background: #fff;
  border: 2px solid var(--cv-line);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .25s;
  text-decoration: none; color: var(--cv-blue-dark);
  box-shadow: 0 10px 30px rgba(39,53,95,0.06);
}
.cv-cta-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(39,53,95,0.14); }

.cv-cta-card.--primary { border-color: var(--cv-blue-dark); }
.cv-cta-card.--primary:hover { box-shadow: 0 30px 70px rgba(39,53,95,0.18); }
.cv-cta-card.--lightblue { border-color: var(--cv-blue-light); }
.cv-cta-card.--lightblue:hover { box-shadow: 0 30px 70px rgba(114,186,211,0.28); }

/* Decorative corner accent in the same color */
.cv-cta-card::before {
  content: ""; position: absolute; inset: auto -60px -60px auto;
  width: 180px; height: 180px; border-radius: 50%;
  opacity: 0.06; pointer-events: none; z-index: 0;
}
.cv-cta-card.--primary::before { background: var(--cv-blue-dark); }
.cv-cta-card.--lightblue::before { background: var(--cv-blue-light); opacity: 0.18; }

/* Soft gradient sheen */
.cv-cta-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0) 0%, rgba(242,242,242,0.5) 100%);
}

.cv-cta-card > * { position: relative; z-index: 1; }

.cv-cta-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: transform .3s;
}
.cv-cta-card:hover .cv-cta-icon { transform: translateY(-2px) rotate(-3deg); }
.cv-cta-card.--primary .cv-cta-icon {
  background: rgba(39,53,95,0.08); color: var(--cv-blue-dark);
}
.cv-cta-card.--lightblue .cv-cta-icon {
  background: rgba(114,186,211,0.18); color: var(--cv-blue-light);
}

.cv-cta-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 38px; line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--cv-blue-dark);
}
.cv-cta-body { font-size: 16px; line-height: 1.6; color: var(--cv-text-mute); max-width: 480px; flex: 1; }

.cv-cta-foot { display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.cv-cta-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--cv-blue-dark);
  position: relative;
  white-space: nowrap;
}
.cv-cta-cta .arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: transparent; border: 1.5px solid;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s, color .25s;
}
.cv-cta-card.--primary .cv-cta-cta .arrow {
  border-color: var(--cv-blue-dark); color: var(--cv-blue-dark);
}
.cv-cta-card.--lightblue .cv-cta-cta .arrow {
  border-color: var(--cv-blue-light); color: var(--cv-blue-light);
}
.cv-cta-card.--primary:hover .cv-cta-cta .arrow {
  background: var(--cv-blue-dark); color: #fff; transform: translateX(6px);
}
.cv-cta-card.--lightblue:hover .cv-cta-cta .arrow {
  background: var(--cv-blue-light); color: #fff; transform: translateX(6px);
}

/* ─────────────── Quote section (premium dark card + typewriter) ─────────────── */
.cv-quote-section { padding: 96px 0; background: #fff; }
.cv-quote-card {
  position: relative; overflow: hidden;
  max-width: 1000px; margin: 0 auto;
  padding: 64px 72px 56px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--cv-line);
  color: var(--cv-blue-dark);
  box-shadow: 0 30px 70px rgba(39,53,95,0.10);
}
.cv-quote-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(39,53,95,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,53,95,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 30%, transparent 78%);
}
.cv-quote-orb { position: absolute; border-radius: 50%; filter: blur(46px); pointer-events: none; }
.cv-quote-orb.--a { width: 300px; height: 300px; background: var(--cv-blue-light); opacity: 0.16; top: -120px; right: -60px; animation: cv-orb-a 16s ease-in-out infinite; }
.cv-quote-orb.--b { width: 240px; height: 240px; background: var(--cv-orange); opacity: 0.10; bottom: -130px; left: -40px; animation: cv-orb-b 20s ease-in-out infinite; }

.cv-quote-mark {
  position: absolute; top: 18px; left: 44px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 200px; line-height: 1;
  background: linear-gradient(180deg, var(--cv-orange), #FF8A3D);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.30; user-select: none; pointer-events: none;
}
.cv-quote-eyebrow {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cv-orange);
  margin-bottom: 26px;
}
.cv-quote-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cv-orange);
  box-shadow: 0 0 0 4px rgba(244,97,12,0.25);
  animation: cv-pulse 2.4s ease-in-out infinite;
}
.cv-quote-text {
  position: relative; z-index: 2;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 2.7vw, 36px); line-height: 1.36; letter-spacing: -0.015em;
  color: var(--cv-blue-dark); margin: 0 0 40px; text-wrap: pretty;
}
.cv-quote-author {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cv-quote-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cv-blue-light), var(--cv-blue-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  flex-shrink: 0; overflow: hidden;
}
.cv-quote-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cv-quote-who .name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--cv-blue-dark); }
.cv-quote-who .role { font-size: 13.5px; color: var(--cv-text-mute); margin-top: 2px; }
.cv-quote-badge {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--cv-blue-tint); border: 1px solid var(--cv-line);
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  color: var(--cv-blue-dark);
}
.cv-quote-badge svg { color: #22C55E; }

/* Flankierte Label (Striche links & rechts) */
.cv-flank {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.cv-flank-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--cv-orange);
  white-space: nowrap;
}
.cv-flank-label svg { color: #22C55E; }
.cv-flank-line {
  height: 1px; width: 56px; flex-shrink: 0;
  background: linear-gradient(90deg, transparent, rgba(244,97,12,0.55));
}
.cv-flank-line:last-child { background: linear-gradient(90deg, rgba(244,97,12,0.55), transparent); }
.cv-flank--light .cv-flank-line { background: linear-gradient(90deg, transparent, rgba(114,186,211,0.6)); }
.cv-flank--light .cv-flank-line:last-child { background: linear-gradient(90deg, rgba(114,186,211,0.6), transparent); }
.cv-flank--light .cv-flank-label { color: var(--cv-blue-light); }

.cv-quote-flank { margin-bottom: 26px; }

/* Typewriter */
.cv-tw { position: relative; display: block; }
.cv-tw-ghost { visibility: hidden; }
.cv-tw-typed { position: absolute; inset: 0; }
.cv-tw-caret {
  display: inline-block; width: 3px; height: 0.95em;
  background: var(--cv-orange); border-radius: 2px;
  margin-left: 7px; vertical-align: -0.12em;
  animation: cv-caret-blink 0.9s steps(1) infinite;
}
.cv-tw-caret.is-done { animation: cv-caret-fade 0.5s ease forwards; animation-delay: 1.6s; }
@keyframes cv-caret-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes cv-caret-fade { to { opacity: 0; width: 0; margin-left: 0; } }
@media (prefers-reduced-motion: reduce) { .cv-tw-caret { display: none; } }

@media (max-width: 640px) {
  .cv-quote-card { padding: 48px 28px 40px; border-radius: 24px; }
  .cv-quote-card { display: flex; flex-direction: column; }
  .cv-quote-flank { order: 1; margin-top: 0; margin-bottom: 0; }
  .cv-quote-mark {
    position: static; order: 2; align-self: flex-start;
    font-size: 96px; line-height: 1; height: 62px; overflow: hidden;
    margin: 14px 0 6px;
  }
  .cv-quote-text { order: 3; }
  .cv-quote-author { order: 4; }
  .cv-quote-badge { margin-left: 0; }
}

/* ─────────────── Ecosystem diagram ─────────────── */
.cv-eco { padding: 100px 0 120px; background: var(--cv-gray); }
.cv-eco-head { display: grid; grid-template-columns: 0.9fr 1fr; gap: 60px; align-items: end; max-width: 1100px; margin: 0 auto 64px; padding: 0 32px; }
.cv-eco-eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cv-orange);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.cv-eco-eyebrow.cv-flank { justify-content: flex-start; }
.cv-eco-eyebrow.cv-flank::before { display: none; }
.cv-eco-eyebrow.cv-flank .cv-flank-line:first-child { display: none; }
.cv-eco-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--cv-blue-dark); margin: 0;
}
.cv-eco-title .italic { font-style: italic; font-weight: 700; }
.cv-eco-lead {
  font-size: 16px; line-height: 1.6; color: var(--cv-text-mute);
  max-width: 460px; padding-bottom: 6px;
}
.cv-eco-stage {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
}
.cv-eco-svg { width: 100%; height: auto; display: block; }

/* Node animations */
.cv-eco-node-bg { transition: fill 0.3s; }
.cv-eco-node-circle { transition: stroke-width 0.3s; }
.cv-eco-node:hover .cv-eco-node-circle { stroke-width: 3; }
.cv-eco-node:hover .cv-eco-node-bg { fill: var(--cv-blue-tint); }

/* Animated flow on edges */
.cv-eco-edge { stroke-dasharray: 6 6; animation: cv-flow 30s linear infinite; }
.cv-eco-edge.--dotted { stroke-dasharray: 2 7; animation-duration: 18s; }
@keyframes cv-flow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -600; }
}

/* Pulsing communication dots */
.cv-eco-pulse { animation: cv-eco-pulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.cv-eco-pulse-b { animation-delay: -0.8s; }
.cv-eco-pulse-c { animation-delay: -1.6s; }
@keyframes cv-eco-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: 0.5; }
}

.cv-eco-legend {
  display: flex; flex-wrap: wrap; gap: 28px; justify-content: center;
  margin-top: 36px;
  font-size: 13px; color: var(--cv-text-mute);
}
.cv-eco-legend .item { display: flex; align-items: center; gap: 10px; }
.cv-eco-legend .swatch-line { width: 28px; height: 2px; background: var(--cv-blue-dark); opacity: 0.4; }
.cv-eco-legend .swatch-dashed {
  width: 28px; height: 0; border-top: 2px dotted var(--cv-orange);
}
.cv-eco-legend .swatch-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--cv-orange);
  box-shadow: 0 0 0 3px rgba(244,97,12,0.18);
}
/* Extra pill variants */
.cv-pill-lg { height: 52px; padding: 0 24px; font-size: 15px; }
.cv-pill-outline-dark {
  background: transparent; color: var(--cv-blue-dark);
  border: 1.5px solid var(--cv-blue-dark);
}
.cv-pill-outline-dark:hover { background: var(--cv-blue-dark); color: #fff; }
.cv-pill-ghost-dark {
  background: transparent; color: var(--cv-text-mute);
  border: 1.5px solid rgba(39,53,95,0.18);
}
.cv-pill-ghost-dark:hover { color: var(--cv-blue-dark); border-color: var(--cv-blue-dark); }

/* ─────────────── cuvalu OS / Platform Hub diagram ─────────────── */
.cv-os {
  padding: 110px 0 120px;
  background:
    radial-gradient(80% 50% at 50% 100%, rgba(114,186,211,0.18), transparent 70%),
    linear-gradient(180deg, #fff 0%, var(--cv-cream) 100%);
  position: relative; overflow: hidden;
}
.cv-os-wrap { position: relative; }
.cv-os-head {
  display: grid; grid-template-columns: 0.95fr 1fr;
  gap: 56px; align-items: end;
  max-width: 1080px; margin: 0 auto 56px;
}
.cv-os-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 4.8vw, 60px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--cv-blue-dark); margin: 0;
}
.cv-os-title .italic { font-style: italic; font-weight: 700; color: var(--cv-orange); }
.cv-os-lead {
  font-size: 16.5px; line-height: 1.6; color: var(--cv-text-mute);
  max-width: 480px; padding-bottom: 8px;
}

/* Centered text variant of "Das Zusammenspiel" (Grafik entfernt) */
.cv-os--text { padding: 56px 0 112px; }
.cv-os-textwrap { max-width: 820px; margin: 0 auto; text-align: center; }
.cv-os-textwrap .cv-section-eyebrow { margin-bottom: 20px; }
.cv-os-title--center {
  font-size: clamp(40px, 5.2vw, 62px);
  max-width: 14ch; margin: 0 auto;
}
.cv-os-copy { max-width: 660px; margin: 34px auto 0; }
.cv-os-copy p {
  font-size: 17.5px; line-height: 1.72; color: var(--cv-text-mute);
  text-wrap: pretty;
}
.cv-os-copy p + p { margin-top: 20px; }
@media (max-width: 760px) {
  .cv-os--text { padding: 40px 0 80px; }
  .cv-os-copy p { font-size: 16px; }
}

/* New ecosystem diagram (close to the original illustration) */
.cv-eco2-stage {
  position: relative; width: 100%;
  max-width: 1080px; margin: 0 auto;
}
.cv-eco2-svg { width: 100%; height: auto; display: block; overflow: visible; }
.cv-eco2-dash path { animation: cv-eco2-flow 28s linear infinite; }
@keyframes cv-eco2-flow { to { stroke-dashoffset: -180; } }

.cv-eco2-legend {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 28px;
  margin: 36px auto 0;
  font-size: 13.5px; color: var(--cv-text-mute);
  font-family: var(--font-display); font-weight: 500;
}
.cv-eco2-legend .item { display: flex; align-items: center; gap: 10px; }
.cv-eco2-legend .sw { flex-shrink: 0; }
.cv-eco2-legend .sw-dashed { width: 30px; height: 0; border-top: 2px dotted var(--cv-orange); }
.cv-eco2-legend .sw-line { width: 30px; height: 2px; background: var(--cv-blue-dark); opacity: 0.55; }
.cv-eco2-legend .sw-circle {
  width: 13px; height: 13px; border-radius: 50%;
  background: #DCEAF2; border: 1.5px solid #BFD8E6;
}

/* Stage — fixed aspect-ratio canvas with absolute-positioned nodes */
.cv-os-stage {
  position: relative; width: 100%;
  max-width: 1180px; margin: 0 auto;
  aspect-ratio: 1000 / 620;
  border-radius: 28px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(39,53,95,0.08);
  box-shadow: 0 30px 80px rgba(39,53,95,0.08);
  padding: 28px;
  overflow: hidden;
}
.cv-os-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image:
    linear-gradient(rgba(39,53,95,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,53,95,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.cv-os-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

/* Animated flow on connection lines */
.cv-os-flow {
  stroke-dashoffset: 0;
  animation: cv-os-flow 1.4s linear infinite;
}
@keyframes cv-os-flow { to { stroke-dashoffset: -36; } }
.cv-os-packet { filter: drop-shadow(0 0 4px rgba(244,97,12,0.6)); }

/* Central platform */
.cv-os-platform {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.cv-os-platform-rings { position: absolute; inset: 0; pointer-events: none; }
.cv-os-platform-rings span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(114,186,211,0.4);
  animation: cv-os-ring 3s ease-out infinite;
}
.cv-os-platform-rings span:nth-child(2) { animation-delay: 1s; }
.cv-os-platform-rings span:nth-child(3) { animation-delay: 2s; }
@keyframes cv-os-ring {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}
.cv-os-platform-card {
  position: relative; z-index: 2;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(120% 100% at 30% 25%, #324478 0%, var(--cv-blue-dark) 55%, var(--cv-blue-deep) 100%);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  box-shadow:
    0 30px 60px rgba(39,53,95,0.4),
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 0 0 6px rgba(255,255,255,0.5),
    0 0 0 7px rgba(39,53,95,0.12);
}
.cv-os-platform-mark {
  font-family: var(--font-display); font-weight: 800;
  font-size: 30px; letter-spacing: -0.025em; line-height: 1;
}
.cv-os-platform-mark .dot { color: var(--cv-orange); }
.cv-os-platform-sub {
  font-family: var(--font-display); font-weight: 700;
  font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cv-blue-light); margin-top: 2px;
}
.cv-os-platform-status {
  margin-top: 12px;
  display: flex; align-items: center; gap: 6px;
  font-size: 9.5px; letter-spacing: 0.08em;
  font-family: var(--font-display); font-weight: 600;
  color: rgba(255,255,255,0.78);
}
.cv-os-platform-status .led {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: cv-os-led 1.6s ease-in-out infinite;
}
@keyframes cv-os-led {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Floating nodes */
.cv-os-node {
  position: absolute; z-index: 2;
  width: 244px;
  background: #fff;
  border: 1px solid rgba(39,53,95,0.1);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(39,53,95,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
  animation: cv-os-float 6s ease-in-out infinite;
}
.cv-os-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(39,53,95,0.16);
}
.cv-os-node.is-accent {
  border-color: rgba(244,97,12,0.5);
  background: linear-gradient(180deg, #fff 0%, #FFF5EE 100%);
}
.cv-os-node--tl { top: 6%; left: 4%; animation-delay: -2s; }
.cv-os-node--tr { top: 6%; right: 4%; animation-delay: -4s; }
.cv-os-node--bl { bottom: 6%; left: 4%; animation-delay: -3s; }
.cv-os-node--br { bottom: 6%; right: 4%; animation-delay: -5s; }
@keyframes cv-os-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.cv-os-node:hover { animation-play-state: paused; }

.cv-os-node-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.cv-os-node-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--cv-blue-tint); color: var(--cv-blue-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cv-os-node-icon svg { width: 26px; height: 26px; }
.cv-os-node.is-accent .cv-os-node-icon { background: rgba(244,97,12,0.14); color: var(--cv-orange); }
.cv-os-node-label {
  font-family: var(--font-display); font-weight: 800;
  font-size: 16px; color: var(--cv-blue-dark); line-height: 1.15;
}
.cv-os-node-sub {
  font-family: var(--font-display); font-weight: 700;
  font-size: 9.5px; letter-spacing: 0.16em;
  color: var(--cv-text-mute); margin-top: 3px;
}
.cv-os-node-body {
  font-size: 12.5px; line-height: 1.5; color: var(--cv-text);
  border-top: 1px solid rgba(39,53,95,0.08);
  padding-top: 10px;
}
.cv-os-node-body .status {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cv-blue-dark);
  margin-bottom: 6px;
  white-space: nowrap;
}
.cv-os-node-body .status .dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.cv-os-node-body .status .dot.--green  { background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
.cv-os-node-body .status .dot.--blue   { background: var(--cv-blue-light); box-shadow: 0 0 0 3px rgba(114,186,211,0.25); }
.cv-os-node-body .status .dot.--orange { background: var(--cv-orange); box-shadow: 0 0 0 3px rgba(244,97,12,0.2); }

/* CTAs */
.cv-os-ctas {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 56px auto 0;
  flex-wrap: wrap;
}
.cv-os-trust {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-top: 24px;
  font-size: 13.5px; color: var(--cv-text-mute);
  font-family: var(--font-display);
}
.cv-os-trust strong { color: var(--cv-blue-dark); font-weight: 800; }
.cv-os-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--cv-text-mute); opacity: 0.4; }

@media (max-width: 1100px) {
  .cv-os-head { grid-template-columns: 1fr; gap: 18px; }
  .cv-os-node { width: 200px; padding: 14px 14px; }
  .cv-os-platform { width: 180px; height: 180px; }
  .cv-os-platform-card { width: 150px; height: 150px; }
  .cv-os-platform-mark { font-size: 24px; }
}
@media (max-width: 760px) {
  .cv-os-stage { aspect-ratio: auto; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
  .cv-os-svg { display: none; }
  .cv-os-grid-bg { display: none; }
  .cv-os-platform { position: relative; transform: none; top: auto; left: auto; order: 1; margin: 8px auto; }
  .cv-os-node { position: relative; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; width: 100%; }
  .cv-os-node--tl { order: 0; }
  .cv-os-node--tr { order: 2; }
  .cv-os-node--bl { order: 3; }
  .cv-os-node--br { order: 4; }
  .cv-os-ctas { flex-direction: column; align-items: stretch; }
  .cv-os-ctas .cv-pill { justify-content: center; }
  .cv-os-trust { flex-wrap: wrap; gap: 12px; }
}

.cv-stats { background: linear-gradient(180deg, #fff 0%, var(--cv-blue-tint) 100%); }
.cv-stats-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: auto auto;
  gap: 20px;
}
.cv-stat {
  border-radius: 24px; padding: 32px;
  background: #fff; border: 1px solid var(--cv-line);
  box-shadow: 0 8px 24px rgba(39,53,95,0.05);
  position: relative; overflow: hidden;
}
.cv-stat .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 72px; line-height: 1; color: var(--cv-blue-dark);
  letter-spacing: -0.04em;
  display: flex; align-items: baseline; gap: 6px;
}
.cv-stat .num .unit { font-size: 32px; color: var(--cv-orange); font-weight: 700; }
.cv-stat .lbl { margin-top: 14px; font-size: 15px; color: var(--cv-text); font-weight: 600; font-family: var(--font-display); }
.cv-stat .sub { margin-top: 6px; font-size: 13.5px; color: var(--cv-text-mute); line-height: 1.5; }

.cv-stat.--hero {
  grid-column: 1 / 2; grid-row: 1 / 3;
  background: linear-gradient(135deg, var(--cv-blue-dark), var(--cv-blue-deep));
  color: #fff; border: none;
  display: flex; flex-direction: column; justify-content: space-between;
}
.cv-stat.--hero .num { color: #fff; font-size: 128px; }
.cv-stat.--hero .num .unit { color: var(--cv-orange); font-size: 56px; }
.cv-stat.--hero .lbl { color: #fff; font-size: 19px; }
.cv-stat.--hero .sub { color: rgba(255,255,255,0.75); font-size: 15px; max-width: 360px; }

.cv-stat.--accent { background: var(--cv-orange); color: #fff; border: none; }
.cv-stat.--accent .num { color: #fff; }
.cv-stat.--accent .num .unit { color: rgba(255,255,255,0.7); }
.cv-stat.--accent .lbl { color: #fff; }
.cv-stat.--accent .sub { color: rgba(255,255,255,0.85); }

.cv-stat .bg-shape {
  position: absolute; right: -30px; bottom: -30px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--cv-blue-tint); opacity: 0.7; z-index: 0;
}
.cv-stat > * { position: relative; z-index: 1; }
.cv-stat.--accent .bg-shape { background: rgba(255,255,255,0.15); opacity: 1; }

.cv-spark { margin-top: 28px; height: 90px; position: relative; }
.cv-spark svg { width: 100%; height: 100%; }

/* ─────────────── Final CTA ─────────────── */
.cv-final {
  position: relative; overflow: hidden;
  padding: 120px 0 130px;
  background:
    radial-gradient(700px 480px at 85% 8%, rgba(114,186,211,0.32), transparent 64%),
    radial-gradient(620px 460px at 8% 92%, rgba(244,97,12,0.24), transparent 62%),
    linear-gradient(135deg, var(--cv-blue-dark) 0%, var(--cv-blue-deep) 100%);
  color: #fff; text-align: center;
}
.cv-final-orb {
  position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.5; pointer-events: none;
}
.cv-final-orb.--a { width: 340px; height: 340px; background: var(--cv-blue-light); top: -90px; right: 6%; animation: cv-orb-a 16s ease-in-out infinite; }
.cv-final-orb.--b { width: 260px; height: 260px; background: var(--cv-orange); bottom: -110px; left: 4%; animation: cv-orb-b 20s ease-in-out infinite; }
.cv-final-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cv-final-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: #DCE9F0;
  margin-bottom: 22px;
}
.cv-final-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cv-orange);
  box-shadow: 0 0 0 4px rgba(244,97,12,0.25);
  animation: cv-pulse 2.4s ease-in-out infinite;
}
.cv-final-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.025em;
  margin: 0 0 22px; color: #fff;
}
.cv-final-title .hl {
  background: linear-gradient(180deg, var(--cv-orange), #FF8A3D);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cv-final-sub {
  font-size: 17.5px; line-height: 1.65; color: rgba(255,255,255,0.88);
  max-width: 560px; margin: 0 auto 40px; text-wrap: pretty;
}
.cv-final-actions {
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.cv-pill-xl { height: 60px; padding: 0 34px; font-size: 17px; gap: 12px; border-radius: 999px; }
.cv-final-secondary {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: rgba(255,255,255,0.8); text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.3); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.cv-final-secondary:hover { color: #fff; border-color: #fff; }
.cv-final-trust {
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  font-family: var(--font-display); font-size: 13.5px; color: rgba(255,255,255,0.8);
}
.cv-final-trust strong { color: #fff; font-weight: 800; }
.cv-final-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); }

/* ─────────────── Footer ─────────────── */
.cv-footer { background: var(--cv-blue-ink); color: rgba(255,255,255,0.78); padding: 72px 0 28px; }
/* Social icons (LinkedIn / Instagram) */
.cv-social { display: flex; gap: 12px; }
.cv-social a {
  display: inline-flex; width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,0.08); align-items: center; justify-content: center;
  color: #fff; transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.cv-social a svg { width: 19px; height: 19px; }
.cv-social a:hover { transform: translateY(-2px); }
.cv-social a.--li:hover { background: #0A66C2; box-shadow: 0 10px 22px -8px rgba(10,102,194,.8); }
.cv-social a.--ig:hover { background: radial-gradient(circle at 30% 110%, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%); box-shadow: 0 10px 22px -8px rgba(214,41,118,.8); }
.cv-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.cv-footer h5 { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; margin: 0 0 16px; }
.cv-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.cv-footer a:hover { color: #fff; }
.cv-footer-bot { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: center; align-items: center; text-align: center; font-size: 13px; }
.cv-footer-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cv-blue-light), #fff 130%);
  display: flex; align-items: center; justify-content: center;
  color: var(--cv-blue-dark); font-weight: 900; font-size: 18px; font-family: var(--font-display);
}

/* Responsive */
@media (max-width: 1080px) {
  .cv-hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .cv-dual { grid-template-columns: 1fr; }
  .cv-stats-grid { grid-template-columns: 1fr 1fr; }
  .cv-stat.--hero { grid-column: 1 / 3; grid-row: auto; }
  .cv-stat.--hero .num { font-size: 96px; }
  .cv-footer-grid { grid-template-columns: 1fr 1fr 1fr; row-gap: 36px; }
  .cv-footer-grid > div:first-child { grid-column: 1 / -1; }
  .cv-cta-bullets { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cv-wrap { padding: 0 20px; }
  .cv-nav ul { display: none; }
  .cv-nav-cta .cv-pill-ghost { display: none; }
  .cv-section { padding: 72px 0; }
  .cv-section-title { font-size: 34px; }
  .cv-cta-card { padding: 32px 24px; min-height: auto; }
  .cv-cta-title { font-size: 28px; }
  .cv-stats-grid { grid-template-columns: 1fr; }
  .cv-stat.--hero { grid-column: auto; }
  .cv-stat.--hero .num { font-size: 80px; }
  .cv-chip-float { display: none; }

  /* Hero — mobile polish */
  .cv-hero-inner { gap: 48px; }
  .cv-hero-badge {
    font-size: 10.5px; letter-spacing: 0.07em;
    padding: 7px 13px 7px 11px; line-height: 1.5;
    margin-bottom: 20px;
  }
  .cv-slogan-row { margin-top: 16px; }
  .cv-slogan { font-size: 27px; }
  .cv-hero-actions { margin-top: 18px; }
  .cv-hero-actions .cv-pill { flex: 1 1 auto; justify-content: center; }
  .cv-hero-meta { margin-top: 22px; flex-wrap: wrap; }

  /* Footer — mobile: brand block full width, links in clean 2-column grid */
  .cv-footer { padding: 56px 0 24px; }
  .cv-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; margin-bottom: 36px; }
  .cv-footer-grid > div:first-child { grid-column: 1 / -1; }
  .cv-footer-grid > div:first-child p { max-width: none; }
  .cv-footer-bot { padding-top: 20px; font-size: 12px; }
}

/* ═══════════════ Craft layer — global polish & mobile nav (2026 refresh) ═══════════════ */

/* In-page navigation: smooth scroll + offset so anchors clear the sticky header */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
[id] { scroll-margin-top: 92px; }

/* On-brand text selection */
::selection { background: rgba(244,97,12,0.22); color: var(--cv-blue-ink); }

/* Accessible keyboard focus ring (mouse interaction stays clean) */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible,
[tabindex]:focus-visible, .cv-pill:focus-visible {
  outline: 3px solid var(--cv-blue-light);
  outline-offset: 3px;
}
.cv-nav a:focus-visible, .cv-nav button:focus-visible { outline-color: #fff; }

/* Fluid display rhythm — section titles scale smoothly across viewports */
.cv-section-title { font-size: clamp(32px, 4vw, 50px); }
.cv-section-title .dot { color: inherit; }

/* Signature section eyebrow — orange label flanked by soft accent rules */
.cv-section-head .cv-section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}
.cv-section-head .cv-section-eyebrow::before,
.cv-section-head .cv-section-eyebrow::after {
  content: ""; width: 30px; height: 1.5px; border-radius: 2px; flex-shrink: 0;
}
.cv-section-head .cv-section-eyebrow::before { background: linear-gradient(90deg, transparent, var(--cv-orange)); }
.cv-section-head .cv-section-eyebrow::after  { background: linear-gradient(90deg, var(--cv-orange), transparent); }
.cv-section-head .cv-section-eyebrow.cv-flank::before,
.cv-section-head .cv-section-eyebrow.cv-flank::after { display: none; }

/* ── Mobile navigation (hamburger) ── */
.cv-nav-toggle {
  display: none; flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.cv-nav-toggle:hover { background: rgba(255,255,255,0.14); }
.cv-nav-toggle span,
.cv-nav-toggle span::before,
.cv-nav-toggle span::after {
  content: ""; display: block; width: 19px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), opacity .2s, background .2s;
}
.cv-nav-toggle span { position: relative; }
.cv-nav-toggle span::before { position: absolute; left: 0; top: -6px; }
.cv-nav-toggle span::after  { position: absolute; left: 0; top: 6px; }
.cv-nav.is-open .cv-nav-toggle span { background: transparent; }
.cv-nav.is-open .cv-nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.cv-nav.is-open .cv-nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

.cv-nav-mobile { display: none; }

@media (max-width: 880px) {
  .cv-nav-inner > ul { display: none; }
  .cv-nav-inner > .cv-nav-cta { display: none; }
  .cv-nav-toggle { display: inline-flex; }

  .cv-nav-mobile {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows .36s cubic-bezier(.2,.7,.2,1);
    background: rgba(27,38,74,0.98);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .cv-nav.is-open .cv-nav-mobile { grid-template-rows: 1fr; }
  .cv-nav-mobile-inner { overflow: hidden; min-height: 0; }
  .cv-nav-mobile ul { list-style: none; margin: 0; padding: 10px 0; display: flex; flex-direction: column; }
  .cv-nav-mobile li a {
    display: block; padding: 14px 28px;
    font-family: var(--font-display); font-weight: 600; font-size: 16px;
    color: rgba(255,255,255,0.82);
    border-left: 3px solid transparent;
    transition: background .18s, color .18s, border-color .18s;
  }
  .cv-nav-mobile li a:hover { background: rgba(255,255,255,0.05); color: #fff; }
  .cv-nav-mobile li a.is-active { color: #fff; border-left-color: var(--cv-orange); }
  .cv-nav-mobile-cta {
    display: flex; gap: 12px; padding: 16px 28px 24px;
    margin-top: 6px; border-top: 1px solid rgba(255,255,255,0.08);
  }
  .cv-nav-mobile-cta .cv-pill { flex: 1; justify-content: center; }
}

/* ── Mobile-only guards (desktop unchanged) ── */
@media (max-width: 880px) {
  /* decorative orbs/glows may bleed past the viewport on sections without
     overflow:hidden — clip instead of allowing sideways scroll.
     overflow-x: clip (not hidden) keeps position:sticky nav working. */
  html, body { overflow-x: clip; }
}
@media (max-width: 640px) {
  /* flanked section eyebrows: let the label wrap and the rules shrink
     instead of pushing past 390px (Preise, Partnerprogramm, u.a.) */
  .cv-flank { min-width: 0; }
  .cv-flank-line { flex-shrink: 1; min-width: 14px; }
  .cv-flank-label { white-space: normal; text-align: center; }
  /* hero eyebrow pill: never wider than its column */
  .cv-eyebrow { max-width: 100%; }
}
@media (max-width: 480px) {
  /* very narrow screens: pill buttons may wrap onto two lines instead of clipping */
  .cv-pill {
    max-width: 100%; height: auto; min-height: 44px;
    white-space: normal; text-align: center; justify-content: center;
    padding-top: 10px; padding-bottom: 10px;
  }
}
@media (max-width: 360px) {
  /* very small phones (320–360px): footer link columns stack —
     long labels like "Abwesenheitsmanagement" need the full width */
  .cv-footer-grid { grid-template-columns: 1fr; }
}
