/* ============================================
   pages-rich.css
   Rich section library shared across subpages.
   Built so any subpage can compose 4-6 of these
   to feel as varied as the index.
   ============================================ */

/* ============================================
   Mobile fixes — hide overlapping nav-cta & hero CTA
   ============================================ */
@media (max-width: 980px) {
  .nav-cta { display: none !important; }
  .ph-foot > a.btn-primary,
  .ph-foot > .btn { display: none !important; }
  /* Hide hamburger button visually — replaced by full-width menu later if needed */
}

/* Make hero foot stack cleanly when CTA is hidden */
@media (max-width: 980px) {
  .ph-foot { grid-template-columns: 1fr !important; }
}

/* ============================================
   Bento cell — upgraded interactivity
   ============================================ */
.bento-cell {
  --mx: 50%;
  --my: 50%;
  isolation: isolate;
}
/* mouse-tracked radial glow */
.bento-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 240px at var(--mx) var(--my), rgba(212,255,58,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  z-index: 0;
}
.bento-cell:hover::after { opacity: 1; }
.bento-cell.lime::after { background: radial-gradient(circle 240px at var(--mx) var(--my), rgba(255,255,255,0.4), transparent 70%); }
.bento-cell.dark-cell::after { background: radial-gradient(circle 240px at var(--mx) var(--my), rgba(212,255,58,0.25), transparent 70%); }
.bento-cell > * { position: relative; z-index: 1; }

/* lift + slight tilt on hover */
.bento-cell {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.6s, background 0.4s, border-color 0.4s;
}
.bento-cell:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  box-shadow: 0 32px 80px rgba(10,10,10,0.12);
}

/* Upgraded "first lime" cell — concentric orbits + pulsing center + crosshair */
.bento-cell.lime.b-2x2 {
  position: relative;
  overflow: hidden;
}
.bento-cell.lime.b-2x2::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  bottom: -180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 32%, rgba(10,10,10,0.08) 33%, transparent 34%),
    radial-gradient(circle at center, transparent 50%, rgba(10,10,10,0.06) 51%, transparent 52%),
    radial-gradient(circle at center, transparent 70%, rgba(10,10,10,0.04) 71%, transparent 72%);
  pointer-events: none;
  animation: lbmOrbitGrow 14s ease-in-out infinite;
}
@keyframes lbmOrbitGrow {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.06) rotate(180deg); }
}

/* Replaced orbit dot with full system: center pulse + outer satellites */
.bento-cell.lime.b-2x2 .b-orbit {
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  opacity: 1;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.bento-cell.lime.b-2x2:hover .b-orbit { transform: rotate(35deg) scale(1.08); }
.bento-cell.lime.b-2x2 .b-orbit::before,
.bento-cell.lime.b-2x2 .b-orbit::after {
  border-color: rgba(10,10,10,0.35);
  border-width: 1.5px;
}
.bento-cell.lime.b-2x2 .b-orbit::before { inset: 0; }
.bento-cell.lime.b-2x2 .b-orbit::after { inset: 38px; border-style: dashed; }
.bento-cell.lime.b-2x2 .b-orbit-dot {
  width: 18px;
  height: 18px;
  background: var(--ink);
  top: 10px; left: 50%;
  margin-left: -9px;
  box-shadow: 0 0 0 5px rgba(10,10,10,0.12);
  transform-origin: 9px 150px;
  animation: bOrbitFast 9s linear infinite;
}
@keyframes bOrbitFast { to { transform: rotate(360deg); } }
/* Second satellite */
.bento-cell.lime.b-2x2 .b-orbit::before {
  content: "";
}
.bento-cell.lime.b-2x2 .b-orbit > .b-orbit-dot::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  opacity: 0.25;
}
/* Center crosshair pulse */
.bento-cell.lime.b-2x2 .b-orbit > span::before {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 0 rgba(10,10,10,0.4),
    0 0 0 0 rgba(10,10,10,0.2);
  animation: bCenterPulse 2.4s ease-out infinite;
}
@keyframes bCenterPulse {
  0% { box-shadow: 0 0 0 0 rgba(10,10,10,0.4), 0 0 0 0 rgba(10,10,10,0.2); }
  100% { box-shadow: 0 0 0 32px rgba(10,10,10,0), 0 0 0 64px rgba(10,10,10,0); }
}

/* Variant by page — slight nuance via data-bgglyph on hero */
body[data-page="handwerk"] .bento-cell.lime.b-2x2 .b-orbit-dot { background: var(--ink); }
/* Each subpage's first lime cell can also use additional visual via class */

/* Bigger animated bars */
.b-bars span {
  transition: opacity 0.4s, transform 0.5s cubic-bezier(0.16,1,0.3,1), background 0.4s;
}
.bento-cell:hover .b-bars span {
  animation: bBarPulse 1.4s ease-in-out infinite;
}
.bento-cell:hover .b-bars span:nth-child(1) { animation-delay: 0.0s; }
.bento-cell:hover .b-bars span:nth-child(2) { animation-delay: 0.08s; }
.bento-cell:hover .b-bars span:nth-child(3) { animation-delay: 0.16s; }
.bento-cell:hover .b-bars span:nth-child(4) { animation-delay: 0.24s; }
.bento-cell:hover .b-bars span:nth-child(5) { animation-delay: 0.32s; }
.bento-cell:hover .b-bars span:nth-child(6) { animation-delay: 0.40s; }
.bento-cell:hover .b-bars span:nth-child(7) { animation-delay: 0.48s; }
.bento-cell:hover .b-bars span:nth-child(8) { animation-delay: 0.56s; }
.bento-cell:hover .b-bars span:nth-child(9) { animation-delay: 0.64s; }
.bento-cell:hover .b-bars span:nth-child(10) { animation-delay: 0.72s; }
@keyframes bBarPulse {
  0%, 100% { transform: scaleY(0.7); }
  50% { transform: scaleY(1.15); }
}

/* Ticker dots come alive on hover */
.b-ticker-dots span {
  height: 8px;
  border-radius: 4px;
  transition: background 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
.bento-cell:hover .b-ticker-dots span {
  animation: bTickerFlow 1.8s ease-in-out infinite;
}
.bento-cell:hover .b-ticker-dots span:nth-child(1) { animation-delay: 0s; }
.bento-cell:hover .b-ticker-dots span:nth-child(2) { animation-delay: 0.15s; }
.bento-cell:hover .b-ticker-dots span:nth-child(3) { animation-delay: 0.3s; }
.bento-cell:hover .b-ticker-dots span:nth-child(4) { animation-delay: 0.45s; }
.bento-cell:hover .b-ticker-dots span:nth-child(5) { animation-delay: 0.6s; }
.bento-cell:hover .b-ticker-dots span:nth-child(6) { animation-delay: 0.75s; }
.bento-cell:hover .b-ticker-dots span:nth-child(7) { animation-delay: 0.9s; }
.bento-cell:hover .b-ticker-dots span:nth-child(8) { animation-delay: 1.05s; }
@keyframes bTickerFlow {
  0%, 100% { opacity: 0.2; transform: scaleY(0.7); background: currentColor; }
  50% { opacity: 1; transform: scaleY(1.6); background: var(--lime); }
}

/* Big-stat cell: count-up flicker */
.b-big {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  display: inline-block;
}
.bento-cell:hover .b-big {
  transform: translateY(-4px) scale(1.04);
}

/* Cells with tags now show a corner-cut on hover */
.bento-cell {
  position: relative;
  overflow: hidden;
}
.bento-cell .b-tag {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.bento-cell:hover .b-tag {
  transform: translateX(4px);
}
.bento-cell .b-h {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.bento-cell:hover .b-h {
  transform: translateY(-2px);
}

/* ============================================
   Mini-timeline cards — upgraded
   ============================================ */
.mini-tl-card {
  --mx: 50%;
  --my: 50%;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.mini-tl-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--mx) var(--my), rgba(212,255,58,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
}
.mini-tl-card:hover::before { opacity: 1; }
.mini-tl-card.lime::before { background: radial-gradient(circle 200px at var(--mx) var(--my), rgba(255,255,255,0.5), transparent 70%); }
.mini-tl-card.ink::before { background: radial-gradient(circle 200px at var(--mx) var(--my), rgba(212,255,58,0.18), transparent 70%); }
.mini-tl-card > * { position: relative; z-index: 1; }

/* Decorative diagonal stripe revealed on hover */
.mini-tl-card::after {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(10,10,10,0.025) 12px 14px);
  opacity: 0;
  transition: opacity 0.5s, transform 0.8s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  z-index: 0;
}
.mini-tl-card:hover::after { opacity: 1; transform: translate(-2%, -2%); }
.mini-tl-card.ink::after { background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(212,255,58,0.06) 12px 14px); }

/* Icon animates */
.mini-tl-icon {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), background 0.4s, color 0.4s;
}
.mini-tl-card:hover .mini-tl-icon {
  transform: rotate(-12deg) scale(1.15);
}
.mini-tl-card.lime:hover .mini-tl-icon {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(10,10,10,0.1);
}

/* Status pill animates */
.mini-tl-status {
  transition: transform 0.4s, background 0.4s, color 0.4s;
}
.mini-tl-card:hover .mini-tl-status {
  transform: scale(1.05);
}

/* Year badge as a moving label */
.mini-tl-year {
  transition: letter-spacing 0.5s cubic-bezier(0.16,1,0.3,1);
}
.mini-tl-card:hover .mini-tl-year {
  letter-spacing: 0.22em;
}

/* Heading lifts */
.mini-tl-h {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.mini-tl-card:hover .mini-tl-h {
  transform: translateY(-2px);
}

/* Animated bottom progress bar */
.mini-tl-card {
  border-bottom: 2px solid transparent;
}
.mini-tl-card:hover {
  border-bottom-color: var(--lime);
}

/* ============================================
   Live Dashboard Widget — reusable card
   ============================================ */
.live-dash {
  background: var(--ink);
  color: var(--white);
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(10,10,10,0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 360px;
}
.live-dash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 400px at 80% 0%, rgba(212,255,58,0.1), transparent 60%),
    radial-gradient(circle 300px at 0% 100%, rgba(212,255,58,0.08), transparent 60%);
  pointer-events: none;
}
.live-dash > * { position: relative; z-index: 1; }

.ld-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ld-title-wrap { display: flex; align-items: center; gap: 12px; }
.ld-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ld-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 4px 10px;
  background: rgba(212,255,58,0.08);
  border-radius: 999px;
}
.ld-live::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.ld-clock {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

.ld-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ld-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
  transition: background 0.4s, border-color 0.4s;
}
.ld-kpi:hover {
  background: rgba(212,255,58,0.06);
  border-color: rgba(212,255,58,0.25);
}
.ld-kpi-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ld-kpi-val {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-top: 4px;
  color: var(--white);
}
.ld-kpi-val.lime { color: var(--lime); }
.ld-kpi-delta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--lime);
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ld-kpi-delta::before { content: "▲"; font-size: 8px; }

/* Mini bar chart inside dashboard */
.ld-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ld-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ld-chart-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ld-chart-trend {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--lime);
}
.ld-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 64px;
}
.ld-bars span {
  flex: 1;
  background: linear-gradient(to top, rgba(212,255,58,0.3), var(--lime));
  border-radius: 3px 3px 0 0;
  transition: opacity 0.4s, transform 0.6s cubic-bezier(0.16,1,0.3,1);
  transform-origin: bottom;
  animation: ldBarGrow 2.4s ease-out infinite;
}
.ld-bars span:nth-child(1) { height: 35%; animation-delay: 0.0s; }
.ld-bars span:nth-child(2) { height: 50%; animation-delay: 0.1s; }
.ld-bars span:nth-child(3) { height: 65%; animation-delay: 0.2s; }
.ld-bars span:nth-child(4) { height: 45%; animation-delay: 0.3s; }
.ld-bars span:nth-child(5) { height: 75%; animation-delay: 0.4s; }
.ld-bars span:nth-child(6) { height: 60%; animation-delay: 0.5s; }
.ld-bars span:nth-child(7) { height: 85%; animation-delay: 0.6s; }
.ld-bars span:nth-child(8) { height: 70%; animation-delay: 0.7s; }
.ld-bars span:nth-child(9) { height: 90%; animation-delay: 0.8s; }
.ld-bars span:nth-child(10) { height: 100%; animation-delay: 0.9s; opacity: 1; }
@keyframes ldBarGrow {
  0%, 100% { transform: scaleY(0.95); }
  50% { transform: scaleY(1.05); }
}

/* Activity feed inside dashboard */
.ld-feed {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.ld-feed-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ld-feed-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ld-feed-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--lime);
  letter-spacing: 0.1em;
}
.ld-feed-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  animation: ldFeedIn 0.5s cubic-bezier(0.16,1,0.3,1);
}
.ld-feed-row:last-child { border-bottom: none; }
.ld-feed-row .who {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
}
.ld-feed-row .av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  flex-shrink: 0;
}
.ld-feed-row .when {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}
@keyframes ldFeedIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mini sparkline */
.ld-spark {
  height: 40px;
  position: relative;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  overflow: hidden;
}
.ld-spark svg { width: 100%; height: 100%; }
.ld-spark path { stroke: var(--ink); stroke-width: 2; fill: none; }
.ld-spark .fill { fill: url(#sparkGrad); stroke: none; }

/* Compact section for live-dash placement */
.live-dash-strip {
  background: var(--paper);
  padding: clamp(48px, 7vw, 100px) var(--pad-x);
}
.live-dash-strip .container { max-width: var(--container); margin: 0 auto; }
.live-dash-strip-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.live-dash-strip-title {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 18ch;
  text-wrap: balance;
}

/* ============================================
   Page-hero index strip — upgraded interactivity
   ============================================ */
.ph-ix {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ph-ix::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--mx) var(--my), rgba(212,255,58,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
}
.ph-ix:hover::before, .ph-ix.active::before { opacity: 1; }
.ph-ix > * { position: relative; z-index: 1; }
.ph-ix.active { background: rgba(212,255,58,0.05); }
.ph-ix.active::after { transform: scaleX(1); }
.ph-ix.active .ph-ix-icon {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
  transform: rotate(-12deg);
}

.ph-ix-icon {
  font-size: 18px;
}
.ph-ix-h {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.ph-ix:hover .ph-ix-h, .ph-ix.active .ph-ix-h {
  transform: translateY(-2px);
}

/* ============================================
   Workflow steps — extra animation polish
   ============================================ */
.wf-step {
  --mx: 50%;
  --my: 50%;
  isolation: isolate;
}
.wf-step::after {
  background: radial-gradient(circle 200px at var(--mx) var(--my), rgba(212,255,58,0.1), transparent 60%), var(--lime);
  background-size: 200% 100%, 100% 2px;
  background-repeat: no-repeat;
  background-position: 0 0, 0 100%;
}
/* Step counter that animates progress on hover */
.wf-step-num {
  display: inline-block;
  position: relative;
}
.wf-step-num::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--lime);
  transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
}
.wf-step:hover .wf-step-num::before { width: 100%; }

.wf-step-glyph {
  position: relative;
}
.wf-step-glyph::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--lime);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.wf-step:hover .wf-step-glyph::after {
  opacity: 0.6;
  transform: scale(1);
  animation: wfGlyphRing 1.8s ease-out infinite;
}
@keyframes wfGlyphRing {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

/* ============================================
   Sub-services row — extra polish
   ============================================ */
.subs-row .subs-arr {
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.subs-row:hover .subs-arr {
  box-shadow: 0 0 0 6px rgba(212,255,58,0.18);
}

/* Number rotating on hover */
.subs-row .subs-num {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), color 0.4s;
}
.subs-row:hover .subs-num {
  transform: translateX(-4px);
}

/* ============================================
   Compare columns — extra polish
   ============================================ */
.compare-col {
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.6s;
}
.compare-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(10,10,10,0.1);
}
.compare-col.lime-col:hover {
  box-shadow: 0 32px 80px rgba(212,255,58,0.25);
}
.compare-col.dark-col:hover {
  box-shadow: 0 32px 80px rgba(10,10,10,0.4);
}

/* Big stat in compare reveals via count when in view */
.compare-stat-val {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.compare-col:hover .compare-stat-val {
  transform: scale(1.05);
}

/* ============================================
   Page-hero CTA tighter on mobile
   ============================================ */
@media (max-width: 640px) {
  .ph-title { font-size: clamp(40px, 12vw, 64px) !important; }
  .ph-meta { padding: 6px 10px; font-size: 10px; }
  .ph-lead { font-size: 15px; }
  .live-dash { padding: 20px; }
  .ld-grid { grid-template-columns: 1fr 1fr; }
  .bento-cell { padding: 20px; }
  .bento-cell .b-h { font-size: 19px; }
}

/* ============================================
   Reduce-motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Page hero — index strip (4 entry tiles) ---------- */
.ph-index-rich {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 980px) { .ph-index-rich { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ph-index-rich { grid-template-columns: 1fr; } }

.ph-ix {
  position: relative;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.5s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
  min-height: 200px;
}
.ph-ix:last-child { border-right: none; }
.ph-ix::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212,255,58,0.0), rgba(212,255,58,0.10));
  opacity: 0;
  transition: opacity 0.6s;
}
.ph-ix:hover { background: rgba(212,255,58,0.04); }
.ph-ix:hover::before { opacity: 1; }
.ph-ix::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.ph-ix:hover::after { transform: scaleX(1); }

.ph-ix-head { display: flex; justify-content: space-between; align-items: center; }
.ph-ix-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--lime);
}
.ph-ix-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  font-size: 14px;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), background 0.4s, color 0.4s, border-color 0.4s;
}
.ph-ix:hover .ph-ix-icon { transform: rotate(-12deg); background: var(--lime); color: var(--black); border-color: var(--lime); }

.ph-ix-h {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-top: auto;
}
.ph-ix-p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  max-width: 32ch;
}

/* ---------- Branch Data — 3-up giant stacked numbers (paper bg) ---------- */
.branch-data {
  background: var(--black);
  color: var(--white);
  padding: clamp(60px, 9vw, 140px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.branch-data::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 15% 25%, rgba(212,255,58,0.10), transparent 60%),
    radial-gradient(ellipse 600px 300px at 85% 75%, rgba(212,255,58,0.07), transparent 60%);
  pointer-events: none;
}
.branch-data .container { position: relative; z-index: 1; }
.branch-data .data-rail { margin-top: 56px; }
.branch-data .data-marker {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.15);
}

/* Mid-light variant on paper, used to break up dark sections */
.branch-data.light { background: var(--paper); color: var(--ink); }
.branch-data.light::before { display: none; }
.branch-data.light .data-marker { color: var(--gray-500); border-color: var(--gray-200); }
.branch-data.light .data-main { color: var(--ink); text-shadow: none; }
.branch-data.light .data-ghost { color: rgba(10,10,10,0.06); }
.branch-data.light .data-ghost.ghost-2 { color: rgba(10,10,10,0.03); }
.branch-data.light .data-num-card.center .data-main { color: var(--lime-dim); text-shadow: 0 0 60px rgba(212,255,58,0.4); }
.branch-data.light .data-info { border-top-color: rgba(10,10,10,0.1); }
.branch-data.light .data-text { color: var(--gray-700); }
.branch-data.light .data-text strong { color: var(--ink); }
.branch-data.light .data-source { color: var(--gray-400); }
.branch-data.light .data-divider { background: linear-gradient(to bottom, transparent, rgba(10,10,10,0.12) 30%, rgba(10,10,10,0.12) 70%, transparent); }

/* Lime cell highlight */
.data-num-card.lime-cell { position: relative; }
.data-num-card.lime-cell::before {
  content: "";
  position: absolute;
  inset: -16px -28px;
  background: var(--lime);
  border-radius: 18px;
  z-index: -1;
}
.data-num-card.lime-cell .data-main { color: var(--ink) !important; text-shadow: none !important; }
.data-num-card.lime-cell .data-ghost { color: rgba(10,10,10,0.06) !important; }
.data-num-card.lime-cell .data-info { border-top-color: rgba(10,10,10,0.18) !important; }
.data-num-card.lime-cell .data-text { color: rgba(10,10,10,0.85) !important; }
.data-num-card.lime-cell .data-text strong { color: var(--ink) !important; }
.data-num-card.lime-cell .data-source { color: rgba(10,10,10,0.6) !important; }

/* ---------- Bento Mosaic — asymmetric feature grid ---------- */
.bento-section {
  padding: clamp(60px, 9vw, 140px) var(--pad-x);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.bento-section.dark { background: var(--black); color: var(--white); }

.bento-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px 40px;
  margin-bottom: 56px;
  align-items: end;
}
@media (max-width: 880px) { .bento-head { grid-template-columns: 1fr; gap: 24px; } }
.bento-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bento-title {
  font-size: clamp(40px, 5.4vw, 84px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-top: 14px;
}
.bento-intro {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  color: var(--gray-500);
  max-width: 40ch;
  align-self: end;
  padding-bottom: 8px;
}
.bento-section.dark .bento-intro { color: rgba(255,255,255,0.65); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
@media (max-width: 980px) { .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
@media (max-width: 540px) { .bento-grid { grid-template-columns: 1fr; } }

.bento-cell {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s, background 0.4s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bento-section.dark .bento-cell {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.bento-cell:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10,10,10,0.08);
}
.bento-section.dark .bento-cell:hover { background: rgba(212,255,58,0.05); border-color: rgba(212,255,58,0.25); }

.bento-cell.lime { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.bento-cell.lime:hover { background: var(--lime); }
.bento-cell.dark-cell { background: var(--ink); color: var(--white); border-color: var(--ink); }
.bento-cell.dark-cell:hover { background: var(--ink); }

/* sizes */
.b-2x1 { grid-column: span 2; }
.b-2x2 { grid-column: span 2; grid-row: span 2; }
.b-1x2 { grid-row: span 2; }
.b-3x1 { grid-column: span 3; }
.b-4x1 { grid-column: span 4; }
@media (max-width: 980px) {
  .b-3x1, .b-4x1 { grid-column: span 2; }
  .b-2x2 { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 540px) {
  .b-2x1, .b-3x1, .b-4x1, .b-2x2 { grid-column: span 1; }
  .b-2x2, .b-1x2 { grid-row: span 1; }
}

.bento-cell .b-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.bento-cell.lime .b-tag { color: rgba(10,10,10,0.6); }
.bento-cell.dark-cell .b-tag, .bento-section.dark .bento-cell .b-tag { color: rgba(255,255,255,0.5); }
.bento-cell .b-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.bento-cell.lime .b-tag::before { background: var(--ink); }

.bento-cell .b-h {
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.bento-cell .b-p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-500);
  margin-top: auto;
}
.bento-cell.lime .b-p { color: rgba(10,10,10,0.75); }
.bento-cell.dark-cell .b-p, .bento-section.dark .bento-cell .b-p { color: rgba(255,255,255,0.65); }

.bento-cell .b-big {
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--lime-dim);
  margin-top: auto;
}
.bento-cell.lime .b-big { color: var(--ink); }
.bento-cell.dark-cell .b-big, .bento-section.dark .bento-cell .b-big { color: var(--lime); }
.bento-cell .b-big .unit { opacity: 0.55; font-weight: 400; font-size: 0.55em; }

/* visual: rotating gradient */
.b-viz-rotor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  transition: opacity 0.5s;
}
.bento-cell:hover .b-viz-rotor { opacity: 0.32; }
.b-viz-rotor::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, currentColor 30%, transparent 60%);
  animation: bRotor 12s linear infinite;
}
@keyframes bRotor { to { transform: rotate(360deg); } }

/* visual: dots scatter */
.b-viz-dots {
  position: absolute;
  inset: 16px;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 16px;
  gap: 4px;
  opacity: 0.18;
  transition: opacity 0.5s;
}
.bento-cell:hover .b-viz-dots { opacity: 0.4; }
.b-viz-dots span {
  background: currentColor;
  border-radius: 50%;
  width: 4px; height: 4px;
  align-self: center;
  justify-self: center;
}

/* visual: bar chart */
.b-bars {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 60px;
  margin-top: 8px;
}
.b-bars span {
  flex: 1;
  background: currentColor;
  opacity: 0.18;
  border-radius: 3px;
  transition: opacity 0.5s, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.bento-cell:hover .b-bars span { opacity: 0.6; transform: scaleY(1.1); }
.bento-cell:hover .b-bars span:nth-child(odd) { opacity: 0.9; }
.b-bars span:last-child { opacity: 1; background: var(--lime); transform-origin: bottom; }
.bento-cell.lime .b-bars span:last-child { background: var(--ink); }

/* visual: orbit dots */
.b-orbit {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.5s, transform 0.6s;
}
.bento-cell:hover .b-orbit { opacity: 0.8; transform: rotate(20deg); }
.b-orbit::before, .b-orbit::after {
  content: "";
  position: absolute;
  border: 1px dashed currentColor;
  border-radius: 50%;
  opacity: 0.4;
}
.b-orbit::before { inset: 0; }
.b-orbit::after { inset: 26px; }
.b-orbit-dot {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--lime);
  border-radius: 50%;
  top: 12px; left: 50%;
  margin-left: -7px;
  animation: bOrbit 10s linear infinite;
  transform-origin: 7px 98px;
}
.bento-cell.lime .b-orbit-dot { background: var(--ink); }
@keyframes bOrbit { to { transform: rotate(360deg); } }

/* visual: pill list */
.b-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.b-pills span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--gray-700);
  transition: background 0.3s, color 0.3s;
}
.bento-cell.lime .b-pills span { background: rgba(10,10,10,0.1); color: var(--ink); }
.bento-cell.dark-cell .b-pills span, .bento-section.dark .bento-cell .b-pills span { background: rgba(255,255,255,0.08); color: var(--white); }
.bento-cell:hover .b-pills span:first-child { background: var(--lime); color: var(--ink); }

/* visual: meter ring */
.b-ring {
  position: absolute;
  top: 16px; right: 16px;
  width: 64px; height: 64px;
}
.b-ring svg { width: 100%; height: 100%; }
.b-ring text {
  font-family: var(--font-mono);
  font-size: 13px;
  fill: currentColor;
  font-weight: 500;
}

/* visual: ticker dots row */
.b-ticker-dots {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  height: 8px;
}
.b-ticker-dots span {
  flex: 1;
  background: currentColor;
  opacity: 0.15;
  border-radius: 4px;
  height: 8px;
  transition: opacity 0.4s, transform 0.4s;
}
.bento-cell:hover .b-ticker-dots span { opacity: 0.4; }
.bento-cell:hover .b-ticker-dots span:nth-child(3) { opacity: 1; background: var(--lime); transform: scaleY(1.5); }
.bento-cell:hover .b-ticker-dots span:nth-child(5) { opacity: 1; background: var(--lime); transform: scaleY(1.5); }

/* ---------- Workflow strip — compact horizontal step flow ---------- */
.workflow {
  padding: clamp(60px, 9vw, 140px) var(--pad-x);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.workflow.dark { background: var(--black); color: var(--white); }
.workflow.lime { background: var(--lime); color: var(--ink); }

.workflow-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.workflow-title {
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  flex: 1;
  min-width: 280px;
}
.workflow-sub {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  color: var(--gray-500);
  max-width: 36ch;
}
.workflow.dark .workflow-sub { color: rgba(255,255,255,0.6); }
.workflow.lime .workflow-sub { color: rgba(10,10,10,0.7); }

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.workflow.dark .workflow-rail { border-color: rgba(255,255,255,0.1); }
.workflow.lime .workflow-rail { border-color: rgba(10,10,10,0.15); }
@media (max-width: 900px) { .workflow-rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .workflow-rail { grid-template-columns: 1fr; } }

.wf-step {
  padding: 32px 24px 36px;
  border-right: 1px solid var(--gray-200);
  position: relative;
  transition: background 0.5s;
  cursor: default;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.workflow.dark .wf-step { border-right-color: rgba(255,255,255,0.1); }
.workflow.lime .wf-step { border-right-color: rgba(10,10,10,0.15); }
.wf-step:last-child { border-right: none; }
.wf-step:hover { background: rgba(212,255,58,0.06); }
.workflow.lime .wf-step:hover { background: rgba(10,10,10,0.06); }
.workflow.dark .wf-step:hover { background: rgba(212,255,58,0.05); }

.wf-step::before {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  height: 2px;
  width: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.wf-step:hover::before { transform: scaleX(1); }

.wf-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.workflow.dark .wf-step-num { color: var(--lime); }
.workflow.lime .wf-step-num { color: rgba(10,10,10,0.6); }
.wf-step-h {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.wf-step-p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-500);
  margin-top: auto;
}
.workflow.dark .wf-step-p { color: rgba(255,255,255,0.6); }
.workflow.lime .wf-step-p { color: rgba(10,10,10,0.7); }
.workflow .accent { color: var(--ink); }
.workflow.dark .accent { color: var(--lime); }
.workflow.lime .accent { color: var(--ink); }

.wf-step-glyph {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 16px;
  transition: background 0.4s, color 0.4s, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.wf-step:hover .wf-step-glyph { background: var(--lime); transform: rotate(-12deg); }
.workflow.dark .wf-step-glyph { background: rgba(255,255,255,0.06); color: var(--lime); }
.workflow.dark .wf-step:hover .wf-step-glyph { background: var(--lime); color: var(--ink); }
.workflow.lime .wf-step-glyph { background: var(--ink); color: var(--lime); }

/* Numbered floating callout strip below workflow */
.wf-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--paper);
  border-radius: 18px;
  flex-wrap: wrap;
  gap: 16px;
}
.workflow.dark .wf-callout { background: rgba(255,255,255,0.04); }
.workflow.lime .wf-callout { background: var(--ink); color: var(--lime); }
.wf-callout-text {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.wf-callout-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 8px 14px;
  border: 1px solid var(--lime);
  border-radius: 999px;
}
.workflow.lime .wf-callout-tag { color: var(--lime); border-color: var(--lime); }

/* ---------- Sub-services rail — vertical accordion (like industries) ---------- */
.subs-section {
  padding: clamp(60px, 9vw, 140px) var(--pad-x);
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.subs-section.dark { background: var(--black); color: var(--white); }
.subs-section.lime { background: var(--lime); color: var(--ink); }

.subs-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: end;
}
@media (max-width: 880px) { .subs-head { grid-template-columns: 1fr; gap: 24px; } }
.subs-title {
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.subs-sub {
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
  color: var(--gray-500);
  max-width: 40ch;
  align-self: end;
  padding-bottom: 8px;
}
.subs-section.dark .subs-sub { color: rgba(255,255,255,0.6); }
.subs-section.lime .subs-sub { color: rgba(10,10,10,0.7); }

.subs-rail {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-200);
}
.subs-section.dark .subs-rail { border-top-color: rgba(255,255,255,0.1); }
.subs-section.lime .subs-rail { border-top-color: rgba(10,10,10,0.15); }

.subs-row {
  display: grid;
  grid-template-columns: 80px 1.6fr 1fr 80px;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.5s cubic-bezier(0.16,1,0.3,1), background 0.5s;
}
.subs-section.dark .subs-row { border-bottom-color: rgba(255,255,255,0.1); }
.subs-section.lime .subs-row { border-bottom-color: rgba(10,10,10,0.15); }
.subs-row::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), transparent 70%);
  opacity: 0.0;
  z-index: 0;
  transition: opacity 0.5s, width 0.6s cubic-bezier(0.16,1,0.3,1);
}
.subs-row:hover::after { opacity: 0.15; width: 80%; }
.subs-row:hover { padding-left: 16px; }
.subs-row > * { position: relative; z-index: 1; }

.subs-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  transition: color 0.4s;
}
.subs-row:hover .subs-num { color: var(--lime); }
.subs-section.dark .subs-num { color: rgba(255,255,255,0.4); }

.subs-h {
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.subs-row:hover .subs-h { transform: translateX(8px); }

.subs-p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-500);
  max-width: 44ch;
}
.subs-section.dark .subs-p { color: rgba(255,255,255,0.55); }
.subs-section.lime .subs-p { color: rgba(10,10,10,0.7); }

.subs-arr {
  width: 56px; height: 56px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--ink);
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.5s cubic-bezier(0.16,1,0.3,1);
  justify-self: end;
}
.subs-section.dark .subs-arr { border-color: rgba(255,255,255,0.15); color: var(--white); }
.subs-section.lime .subs-arr { border-color: rgba(10,10,10,0.2); }
.subs-row:hover .subs-arr {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
  transform: none;
}

@media (max-width: 900px) {
  .subs-row { grid-template-columns: 50px 1fr 44px; gap: 16px; padding: 24px 0; }
  .subs-row .subs-p { display: none; }
  .subs-arr { width: 44px; height: 44px; font-size: 16px; }
}

/* ---------- Big Quote block (oversized, marquee bg) ---------- */
.big-quote {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 12vw, 180px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.big-quote.lime { background: var(--lime); color: var(--ink); }
.big-quote-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.bq-mark {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(150px, 22vw, 320px);
  line-height: 0.6;
  color: var(--lime);
  display: block;
  margin-bottom: -40px;
}
.big-quote.lime .bq-mark { color: var(--ink); }
.bq-text {
  font-size: clamp(28px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 24ch;
  text-wrap: balance;
}
.bq-text em { font-family: var(--font-sans); font-style: normal; color: var(--lime); font-weight: 500; }
.big-quote.lime .bq-text em { color: var(--ink); font-weight: 700; }
.bq-text .hl {
  background: linear-gradient(to top, rgba(212,255,58,0.25) 60%, transparent 60%);
  padding: 0 4px;
}
.big-quote.lime .bq-text .hl { background: linear-gradient(to top, rgba(10,10,10,0.2) 60%, transparent 60%); }

.bq-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 56px;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.big-quote.lime .bq-foot { border-top-color: rgba(10,10,10,0.2); }
.bq-attr {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bq-attr-av {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--lime);
  font-weight: 600;
}
.big-quote.lime .bq-attr-av { background: rgba(10,10,10,0.1); border-color: rgba(10,10,10,0.2); color: var(--ink); }
.bq-attr-meta { display: flex; flex-direction: column; gap: 4px; }
.bq-attr-name { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.bq-attr-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.big-quote.lime .bq-attr-role { color: rgba(10,10,10,0.55); }

.bq-results {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bq-rp {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}
.bq-rp:hover { background: rgba(212,255,58,0.08); border-color: rgba(212,255,58,0.3); transform: translateY(-4px); }
.big-quote.lime .bq-rp { background: rgba(10,10,10,0.06); border-color: rgba(10,10,10,0.15); }
.big-quote.lime .bq-rp:hover { background: var(--ink); color: var(--lime); }
.bq-rp-big {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--lime);
  line-height: 1;
}
.big-quote.lime .bq-rp-big { color: var(--ink); }
.big-quote.lime .bq-rp:hover .bq-rp-big { color: var(--lime); }
.bq-rp-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.35;
  margin-top: 4px;
}
.big-quote.lime .bq-rp-lbl { color: rgba(10,10,10,0.6); }

.bq-bg-marquee {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.bq-bg-inner {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  width: max-content;
  animation: tickerRoll 60s linear infinite;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.big-quote.lime .bq-bg-inner { -webkit-text-stroke-color: rgba(10,10,10,0.1); }

/* ---------- Feature split — large two-column block ---------- */
.feature-split {
  padding: clamp(60px, 9vw, 140px) var(--pad-x);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.feature-split.dark { background: var(--black); color: var(--white); }
.feature-split.paper { background: var(--paper); }

.fs-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.fs-grid.reverse { grid-template-columns: 1.1fr 1fr; }
.fs-grid.reverse .fs-left { order: 2; }
.fs-grid.reverse .fs-right { order: 1; }
@media (max-width: 880px) {
  .fs-grid, .fs-grid.reverse { grid-template-columns: 1fr; gap: 32px; }
  .fs-grid.reverse .fs-left, .fs-grid.reverse .fs-right { order: 0; }
}

.fs-eye {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-dim);
  padding: 6px 14px;
  border: 1px solid rgba(184,224,48,0.3);
  border-radius: 999px;
  margin-bottom: 24px;
}
.feature-split.dark .fs-eye { color: var(--lime); border-color: rgba(212,255,58,0.25); }
.fs-eye::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.fs-h {
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.feature-split.dark .fs-h { color: var(--white); }
.fs-p {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--gray-500);
  margin-top: 20px;
  max-width: 50ch;
}
.feature-split.dark .fs-p { color: rgba(255,255,255,0.65); }

.fs-bullets {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--gray-200);
}
.feature-split.dark .fs-bullets { border-color: rgba(255,255,255,0.1); }
.fs-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  line-height: 1.5;
  transition: padding-left 0.4s cubic-bezier(0.16,1,0.3,1);
}
.fs-bullets li:hover { padding-left: 8px; }
.feature-split.dark .fs-bullets li { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.fs-bullets .b-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--lime-dim);
  letter-spacing: 0.08em;
  width: 28px;
  flex-shrink: 0;
  padding-top: 3px;
}
.feature-split.dark .fs-bullets .b-num { color: var(--lime); }
.fs-bullets .b-text strong { font-weight: 600; }

/* Visual side */
.fs-visual {
  background: var(--paper);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 48px);
  min-height: 440px;
  position: relative;
  overflow: hidden;
}
.feature-split.dark .fs-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.fs-visual.lime { background: var(--lime); color: var(--ink); }
.fs-visual.ink { background: var(--ink); color: var(--white); }

/* Mockup of a phone screen with content */
.fs-phone {
  width: 280px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 36px;
  padding: 12px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}
.fs-phone-screen {
  background: var(--white);
  border-radius: 26px;
  padding: 28px 18px 18px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.fs-phone-notch {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  background: var(--ink);
  border-radius: 999px;
}

/* Floating elements around mockup */
.fs-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 24px 60px rgba(10,10,10,0.1);
  animation: phFloat 5s ease-in-out infinite;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fs-float.f1 { top: 20px; right: -10px; animation-delay: 0s; }
.fs-float.f2 { bottom: 40px; left: -10px; animation-delay: -1.5s; }
.fs-float.f3 { top: 50%; right: -30px; animation-delay: -3s; }
.feature-split.dark .fs-float { background: var(--black-card); border-color: rgba(255,255,255,0.08); color: var(--white); }
.fs-float-dot {
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Compare panel — side-by-side ---------- */
.compare {
  padding: clamp(60px, 9vw, 140px) var(--pad-x);
  background: var(--paper);
}
.compare.dark { background: var(--black); color: var(--white); }

.compare-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.compare-title {
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  flex: 1;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-col {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.compare.dark .compare-col { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.compare-col.dark-col {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.compare-col.lime-col {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: 0.7;
  align-self: flex-start;
}
.compare-col.lime-col .compare-tag::before {
  content: "✓";
  color: var(--ink);
  font-weight: 700;
}
.compare-col.dark-col .compare-tag::before {
  content: "✕";
  color: var(--lime);
}
.compare-h {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.compare-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid currentColor;
  border-top-color: rgba(10,10,10,0.12);
}
.compare-col.dark-col .compare-list { border-top-color: rgba(255,255,255,0.12); }
.compare-col.lime-col .compare-list { border-top-color: rgba(10,10,10,0.18); }
.compare-list li {
  padding: 14px 0;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid currentColor;
  border-bottom-color: rgba(10,10,10,0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: padding-left 0.4s cubic-bezier(0.16,1,0.3,1);
}
.compare-list li:hover { padding-left: 8px; }
.compare-col.dark-col .compare-list li { border-bottom-color: rgba(255,255,255,0.1); }
.compare-col.lime-col .compare-list li { border-bottom-color: rgba(10,10,10,0.12); }
.compare-list li::before {
  font-family: var(--font-mono);
  font-size: 12px;
  width: 18px;
  flex-shrink: 0;
}
.compare-col.dark-col .compare-list li::before { content: "✕"; color: rgba(255,255,255,0.4); }
.compare-col.lime-col .compare-list li::before { content: "→"; color: var(--ink); font-weight: 700; }

.compare-stat {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  border-top-color: rgba(10,10,10,0.18);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.compare-col.dark-col .compare-stat { border-top-color: rgba(255,255,255,0.12); }
.compare-col.lime-col .compare-stat { border-top-color: rgba(10,10,10,0.2); }
.compare-stat-val {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.compare-col.lime-col .compare-stat-val { color: var(--ink); }
.compare-col.dark-col .compare-stat-val { color: var(--lime); }
.compare-stat-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ---------- Mini-timeline (compact 3-step horizontal) ---------- */
.mini-tl {
  padding: clamp(60px, 9vw, 140px) var(--pad-x);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.mini-tl.dark { background: var(--black); color: var(--white); }

.mini-tl-head { margin-bottom: 56px; max-width: 720px; }
.mini-tl-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-top: 16px;
}
.mini-tl-title { text-wrap: balance; }

.mini-tl-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
}
@media (max-width: 880px) { .mini-tl-row { grid-template-columns: 1fr; } }

.mini-tl-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s, background 0.4s;
  position: relative;
  overflow: hidden;
}
.mini-tl-card:first-child {
  box-shadow: inset 0 0 0 1px rgba(10,10,10,0.02);
}
.mini-tl.dark .mini-tl-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.mini-tl-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(10,10,10,0.06); }
.mini-tl-card.lime { background: var(--lime); border-color: var(--lime); }
.mini-tl-card.ink { background: var(--ink); color: var(--white); border-color: var(--ink); }
.mini-tl-card.lime:hover, .mini-tl-card.ink:hover { transform: translateY(-6px); }

.mini-tl-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-tl-year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.mini-tl-card.lime .mini-tl-year { color: rgba(10,10,10,0.6); }
.mini-tl-card.ink .mini-tl-year { color: rgba(255,255,255,0.55); }
.mini-tl-status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--gray-500);
}
.mini-tl-card.lime .mini-tl-status { background: var(--ink); color: var(--lime); }
.mini-tl-card.ink .mini-tl-status { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }

.mini-tl-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--paper);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 22px;
}
.mini-tl-card.lime .mini-tl-icon { background: var(--ink); color: var(--lime); }
.mini-tl-card.ink .mini-tl-icon { background: rgba(212,255,58,0.12); color: var(--lime); }

.mini-tl-h {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}
.mini-tl-p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-500);
  margin-top: auto;
}
.is-hidden-temporary {
  display: none !important;
}
.mini-tl-card.lime .mini-tl-p { color: rgba(10,10,10,0.72); }
.mini-tl-card.ink .mini-tl-p { color: rgba(255,255,255,0.65); }

/* ---------- Value strip — 4-cell stat band ---------- */
.value-strip {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--ink);
  color: var(--white);
}
.value-strip-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 var(--pad-x);
}
@media (max-width: 880px) { .value-strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .value-strip-grid { grid-template-columns: 1fr; } }

.vs-cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.vs-cell:last-child { border-right: none; }
.vs-cell:hover { background: rgba(212,255,58,0.05); }
.vs-cell::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.vs-cell:hover::before { transform: scaleX(1); }
.vs-cell-big {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.9;
  color: var(--lime);
}
.vs-cell-big .unit { opacity: 0.55; font-weight: 400; font-size: 0.55em; }
.vs-cell-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* ---------- Marquee strip — large headline marquee ---------- */
.marquee-strip {
  background: var(--white);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.marquee-strip.dark { background: var(--black); color: var(--white); border-color: rgba(255,255,255,0.06); }
.marquee-strip.lime { background: var(--lime); color: var(--ink); border-color: rgba(10,10,10,0.1); }
.marquee-strip .ms-inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  animation: tickerRoll 28s linear infinite;
  line-height: 1.05;
}
.marquee-strip.reverse .ms-inner { animation-direction: reverse; }
.marquee-strip .ms-item {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.marquee-strip .ms-item::after {
  content: "";
  width: 12px; height: 12px;
  background: var(--lime);
  border-radius: 50%;
}
.marquee-strip.lime .ms-item::after { background: var(--ink); }
.marquee-strip .ms-item .em {
  color: var(--lime);
  font-weight: 600;
}
.marquee-strip.lime .ms-item .em { color: var(--ink); font-weight: 700; }
.marquee-strip.dark .ms-item .em { color: var(--lime); }

/* ---------- Projekte / Case grid (rich) ---------- */
.case-grid-rich {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 56px;
}
@media (max-width: 980px) { .case-grid-rich { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .case-grid-rich { grid-template-columns: 1fr; } }

.case-rich {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s;
  position: relative;
}
.case-rich:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(10,10,10,0.08); }
.case-rich.size-2 { grid-column: span 2; }
.case-rich.size-3 { grid-column: span 3; }
.case-rich.size-4 { grid-column: span 4; }
.case-rich.size-6 { grid-column: span 6; }
@media (max-width: 980px) {
  .case-rich.size-2, .case-rich.size-3, .case-rich.size-4, .case-rich.size-6 { grid-column: span 2; }
}
@media (max-width: 540px) {
  .case-rich.size-2, .case-rich.size-3, .case-rich.size-4, .case-rich.size-6 { grid-column: span 1; }
}

.cr-cover {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--paper), var(--gray-50));
  position: relative;
  overflow: hidden;
}
.cr-cover.lime { background: linear-gradient(135deg, var(--lime), var(--lime-soft)); }
.cr-cover.ink { background: linear-gradient(135deg, var(--ink), #1a1a1a); }
.cr-cover .ph-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(0,0,0,0.04) 12px, rgba(0,0,0,0.04) 13px);
}
.cr-cover.ink .ph-stripes { background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.04) 12px, rgba(255,255,255,0.04) 13px); }
.cr-cover .ph-mark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
}
.cr-cover.ink .ph-mark { color: rgba(255,255,255,0.4); }
.cr-cover.lime .ph-mark { color: rgba(10,10,10,0.45); }

.cr-cover-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--white);
  border-radius: 999px;
  color: var(--ink);
}
.cr-cover-num {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray-700);
  padding: 6px 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.cr-cover.ink .cr-cover-num { background: rgba(0,0,0,0.5); color: var(--white); }

.cr-body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cr-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cr-cat::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.cr-name {
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cr-desc { font-size: 14px; line-height: 1.55; color: var(--gray-500); margin-bottom: auto; padding-bottom: 16px; }
.cr-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.cr-foot .cr-result { color: var(--lime-dim); font-weight: 500; }

/* ---------- Team grid (about page) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s, background 0.4s;
  min-height: 280px;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(10,10,10,0.08); background: var(--ink); color: var(--white); }
.team-card:hover .team-role { color: var(--lime); }
.team-card:hover .team-bio { color: rgba(255,255,255,0.65); }

.team-av {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gray-100);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--gray-500);
  font-weight: 500;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}
.team-card:hover .team-av { background: var(--lime); color: var(--ink); border-color: var(--lime); }

.team-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.3s;
}
.team-bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-500);
  margin-top: auto;
  transition: color 0.3s;
}

/* ---------- Map / location block ---------- */
.map-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 780px) { .map-card { grid-template-columns: 1fr; } }
.map-viz {
  aspect-ratio: 4/3;
  background: var(--ink);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.map-viz::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 40px);
}
.map-pin {
  position: absolute;
  width: 24px; height: 24px;
  background: var(--lime);
  border-radius: 50%;
  border: 4px solid var(--ink);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(212,255,58,0.3);
  animation: pulse 2s infinite;
}
.map-pin-label {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--white);
  background: var(--ink);
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ---------- Inline section anchor row ---------- */
.section-anchor {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.section-anchor .sa-line { flex: 1; max-width: 80px; height: 1px; background: var(--gray-200); }
.section-anchor .sa-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gray-500);
  text-transform: uppercase;
}
.dark .section-anchor .sa-line,
.branch-data .section-anchor .sa-line,
.compare.dark .section-anchor .sa-line,
.mini-tl.dark .section-anchor .sa-line { background: rgba(255,255,255,0.15); }
.dark .section-anchor .sa-tag,
.branch-data .section-anchor .sa-tag,
.compare.dark .section-anchor .sa-tag,
.mini-tl.dark .section-anchor .sa-tag { color: rgba(255,255,255,0.55); }

/* Reveal helpers for new sections */
.bento-cell, .wf-step, .subs-row, .mini-tl-card, .compare-col, .case-rich, .team-card, .ph-ix {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1), background 0.4s, box-shadow 0.5s;
}
.in .bento-cell, .in .wf-step, .in .subs-row, .in .mini-tl-card, .in .compare-col, .in .case-rich, .in .team-card, .in .ph-ix,
.bento-cell.in, .wf-step.in, .subs-row.in, .mini-tl-card.in, .compare-col.in, .case-rich.in, .team-card.in, .ph-ix.in {
  opacity: 1;
  transform: translateY(0);
}
.bento-grid.in .bento-cell:nth-child(1), .workflow-rail.in .wf-step:nth-child(1), .case-grid-rich.in .case-rich:nth-child(1), .team-grid.in .team-card:nth-child(1) { transition-delay: 0.05s; }
.bento-grid.in .bento-cell:nth-child(2), .workflow-rail.in .wf-step:nth-child(2), .case-grid-rich.in .case-rich:nth-child(2), .team-grid.in .team-card:nth-child(2) { transition-delay: 0.10s; }
.bento-grid.in .bento-cell:nth-child(3), .workflow-rail.in .wf-step:nth-child(3), .case-grid-rich.in .case-rich:nth-child(3), .team-grid.in .team-card:nth-child(3) { transition-delay: 0.15s; }
.bento-grid.in .bento-cell:nth-child(4), .workflow-rail.in .wf-step:nth-child(4), .case-grid-rich.in .case-rich:nth-child(4), .team-grid.in .team-card:nth-child(4) { transition-delay: 0.20s; }
.bento-grid.in .bento-cell:nth-child(5), .case-grid-rich.in .case-rich:nth-child(5) { transition-delay: 0.25s; }
.bento-grid.in .bento-cell:nth-child(6), .case-grid-rich.in .case-rich:nth-child(6) { transition-delay: 0.30s; }
.bento-grid.in .bento-cell:nth-child(7) { transition-delay: 0.35s; }

.mini-tl-row.in .mini-tl-card:nth-child(1) { transition-delay: 0.05s; }
.mini-tl-row.in .mini-tl-card:nth-child(2) { transition-delay: 0.15s; }
.mini-tl-row.in .mini-tl-card:nth-child(3) { transition-delay: 0.25s; }

.subs-rail.in .subs-row:nth-child(1) { transition-delay: 0.05s; }
.subs-rail.in .subs-row:nth-child(2) { transition-delay: 0.10s; }
.subs-rail.in .subs-row:nth-child(3) { transition-delay: 0.15s; }
.subs-rail.in .subs-row:nth-child(4) { transition-delay: 0.20s; }
.subs-rail.in .subs-row:nth-child(5) { transition-delay: 0.25s; }
.subs-rail.in .subs-row:nth-child(6) { transition-delay: 0.30s; }

.compare-grid.in .compare-col:nth-child(1) { transition-delay: 0.05s; }
.compare-grid.in .compare-col:nth-child(2) { transition-delay: 0.20s; }

.ph-index-rich.in .ph-ix:nth-child(1) { transition-delay: 0.10s; }
.ph-index-rich.in .ph-ix:nth-child(2) { transition-delay: 0.20s; }
.ph-index-rich.in .ph-ix:nth-child(3) { transition-delay: 0.30s; }
.ph-index-rich.in .ph-ix:nth-child(4) { transition-delay: 0.40s; }

/* ---------- About — long-form editorial ---------- */
.about-hero {
  background: var(--black);
  color: var(--white);
  padding: 160px var(--pad-x) clamp(60px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero::before {
  content: "uptomade";
  position: absolute;
  bottom: -10%;
  left: -3%;
  font-size: clamp(220px, 36vw, 600px);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.025);
  line-height: 0.85;
  pointer-events: none;
}
.about-hero h1 {
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 18ch;
}
.about-hero .accent { color: var(--lime); font-weight: 700; }
.about-hero .lead-block {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) { .about-hero .lead-block { grid-template-columns: 1fr; gap: 24px; } }
.about-hero .lead-text {
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 50ch;
}
.about-hero .lead-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.about-hero .lead-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about-hero .lead-meta-row strong { color: var(--white); font-weight: 500; }

/* ---------- Inline editorial section ---------- */
.story {
  padding: clamp(60px, 9vw, 140px) var(--pad-x);
  background: var(--paper);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; gap: 32px; } }
.story-side { position: sticky; top: 100px; }
.story-side-num {
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--lime);
}
.story-side-h {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 24px;
}
.story-body p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--gray-700);
}
.story-body p:first-child {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 32px;
}
.story-body strong { font-weight: 600; color: var(--ink); }
.story-body .pull {
  display: block;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  background: var(--lime);
  padding: 24px 28px;
  border-radius: 16px;
  margin: 32px 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.subpage-brief {
  padding-top: clamp(56px, 7vw, 100px);
  padding-bottom: clamp(56px, 7vw, 100px);
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.subpage-brief .story-side-num {
  color: var(--ink);
  opacity: 0.12;
}
.subpage-brief .story-side-h {
  max-width: 10ch;
}
.subpage-brief .story-body {
  max-width: 760px;
}
.subpage-brief .story-body .pull {
  border-radius: 8px;
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .workflow > .container,
  .subs-section > .container,
  .compare > .container,
  .mini-tl > .container,
  .bento-section > .container,
  .team-section > .container,
  .feature-split > .container {
    padding-inline: 0 !important;
  }
  .feature-split {
    padding-block: clamp(52px, 12vw, 76px);
  }
  .branch-data > .container {
    padding-inline: var(--pad-x) !important;
  }
  .workflow,
  .subs-section,
  .bento-section,
  .team-section,
  .mini-tl,
  .feature-split,
  .case-section,
  .case-grid-rich,
  .value-strip,
  .compare {
    overflow: visible !important;
  }
  .fs-grid,
  .fs-left,
  .fs-right,
  .browser-frame {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .fs-grid {
    gap: 20px !important;
  }
  .feature-split .fs-right {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: calc((100% - (100vw - 28px)) / 2) !important;
  }
  .browser-frame {
    border-radius: 8px !important;
    overflow: hidden !important;
  }
  .bf-head {
    padding: 10px !important;
    gap: 8px !important;
  }
  .bf-dots {
    gap: 4px !important;
  }
  .bf-dots span {
    width: 8px !important;
    height: 8px !important;
  }
  .bf-url {
    min-width: 0 !important;
    max-width: none !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    padding: 5px 9px !important;
    font-size: 10px !important;
  }
  .bf-body {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
  }
  .bf-hero {
    padding: 24px 18px !important;
  }
  .bf-h1 {
    font-size: clamp(28px, 9vw, 38px) !important;
  }
  .bf-side {
    padding: 18px !important;
  }
  .fs-bullets li {
    gap: 10px !important;
    padding: 14px 0 !important;
    font-size: 14px !important;
  }
  .fs-bullets li:hover {
    padding-left: 0 !important;
  }
  .fs-bullets .b-num {
    width: auto !important;
    min-width: 18px !important;
    letter-spacing: 0 !important;
  }
  .workflow {
    padding-block: clamp(56px, 14vw, 88px);
    overflow: visible !important;
  }
  .workflow-head {
    margin-bottom: 26px !important;
    gap: 16px !important;
  }
  .workflow-title {
    font-size: clamp(34px, 11vw, 54px) !important;
  }
  .workflow-rail {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    padding-inline: var(--pad-x);
    margin-inline: calc(var(--pad-x) * -1);
    border: 0 !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .workflow-rail::-webkit-scrollbar {
    display: none;
  }
  .wf-step {
    flex: 0 0 min(82vw, 360px) !important;
    min-height: 230px !important;
    padding: 22px 18px !important;
    scroll-snap-align: center;
    border: 1px solid rgba(10,10,10,0.08) !important;
    border-radius: 8px !important;
    background: var(--white);
  }
  .workflow.dark .wf-step {
    background: #171914;
  }
  .wf-step-num {
    display: none !important;
  }
  .wf-step > div:first-child {
    justify-content: flex-end !important;
  }
  .wf-step-glyph {
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
  }
  .subpage-brief {
    padding-block: clamp(48px, 13vw, 78px);
  }
  .subpage-brief .story-grid {
    gap: 20px;
  }
  .subpage-brief .story-side {
    position: relative;
    top: auto;
  }
  .subpage-brief .story-side-num {
    font-size: clamp(56px, 24vw, 110px);
  }
  .subpage-brief .story-side-h {
    max-width: none;
  }
  .subpage-brief .story-body .pull {
    padding: 20px;
  }
}

@media (max-width: 760px) {
  .mobile-stack {
    display: block !important;
    grid-template-columns: none !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    touch-action: pan-y !important;
    padding-inline: 0 !important;
    margin-inline: 0 !important;
    --mobile-stack-top: clamp(118px, 16vh, 146px);
    padding-bottom: 0 !important;
  }
  .mobile-stack > .stack-card {
    position: sticky !important;
    top: var(--mobile-stack-top);
    z-index: var(--stack-z, 20);
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 0 clamp(16px, 4vh, 34px) !important;
    transform-origin: top center;
    box-shadow: 0 22px 70px rgba(10,10,10,0.12);
    opacity: 1 !important;
    transition: box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease !important;
  }
  .mobile-stack > .stack-card:nth-child(even),
  .mobile-stack > .stack-card:nth-child(odd) {
    transform: none !important;
  }
  .mobile-stack > .stack-card:last-child {
    margin-bottom: clamp(16px, 4vh, 34px) !important;
  }
  .mobile-stack > .mobile-stack-spacer {
    display: block !important;
    height: var(--mobile-stack-tail, clamp(56px, 12dvh, 136px));
    pointer-events: none;
  }
  .workflow-rail.mobile-stack,
  .subs-rail.mobile-stack,
  .case-grid-rich.mobile-stack,
  .value-strip-grid.mobile-stack,
  .bento-grid.mobile-stack,
  .team-grid.mobile-stack,
  .rich-stats.mobile-stack,
  .mini-tl-row.mobile-stack {
    margin-top: clamp(18px, 5vw, 28px) !important;
  }
  .data-rail:not(.mobile-stack) {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
    margin: clamp(20px, 6vw, 32px) 0 0 !important;
    scrollbar-width: none;
    touch-action: pan-y !important;
    overscroll-behavior-x: auto;
  }
  .data-rail:not(.mobile-stack)::-webkit-scrollbar {
    display: none;
  }
  .data-rail:not(.mobile-stack) > .data-num-card {
    flex: none !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    scroll-snap-align: none;
    padding: 20px !important;
    border-radius: 8px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 18px 48px rgba(0,0,0,0.2);
    gap: 14px;
  }
  .branch-data.light .data-rail:not(.mobile-stack) > .data-num-card {
    background: var(--white);
    border-color: rgba(10,10,10,0.08);
    box-shadow: 0 22px 70px rgba(10,10,10,0.1);
  }
  .data-rail:not(.mobile-stack) .data-stack {
    height: auto;
    min-height: 82px;
  }
  .data-rail:not(.mobile-stack) .data-main,
  .data-rail:not(.mobile-stack) .data-ghost,
  .data-rail:not(.mobile-stack) .data-ghost.ghost-2 {
    font-size: clamp(54px, 16vw, 78px);
  }
  .data-rail:not(.mobile-stack) .data-info {
    padding-top: 12px;
  }
  .data-rail:not(.mobile-stack) .data-text {
    font-size: 14px;
    line-height: 1.45;
  }
  .data-rail:not(.mobile-stack) > .data-num-card.lime-cell::before {
    inset: 0;
    border-radius: 8px;
  }
  .mobile-stack > .data-divider,
  .mobile-stack > .proc-connector {
    display: none !important;
  }
  .mobile-stack > .svc-card.stack-card,
  .mobile-stack > .proc-step.stack-card {
    border-radius: 8px !important;
  }
  .mobile-stack > .subs-row.stack-card {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-content: start;
    gap: 18px !important;
    min-height: 280px;
    padding: 28px 24px !important;
    background: var(--white);
    border: 1px solid rgba(10,10,10,0.08) !important;
    box-shadow: 0 22px 70px rgba(10,10,10,0.12);
  }
  .mobile-stack > .subs-row.stack-card::after {
    display: none !important;
  }
  .subs-section.dark .mobile-stack > .subs-row.stack-card {
    background: #171914;
    border-color: rgba(255,255,255,0.12) !important;
  }
  .subs-section.lime .mobile-stack > .subs-row.stack-card {
    background: #f7f7f2;
    border-color: rgba(10,10,10,0.12) !important;
  }
  .mobile-stack > .subs-row.stack-card .subs-num {
    grid-column: 1;
    grid-row: 1;
  }
  .mobile-stack > .subs-row.stack-card .subs-arr {
    grid-column: 2;
    grid-row: 1;
    width: 48px !important;
    height: 48px !important;
  }
  .mobile-stack > .subs-row.stack-card .subs-h {
    grid-column: 1 / -1;
    transform: none !important;
    font-size: clamp(28px, 8vw, 38px);
  }
  .mobile-stack > .subs-row.stack-card .subs-p {
    display: block !important;
    grid-column: 1 / -1;
    max-width: none;
  }
  .mobile-stack > .proc-step.stack-card {
    display: block !important;
  }
  .mobile-stack > .proc-step.stack-card .proc-card {
    height: auto !important;
    min-height: 340px !important;
  }
  .mobile-stack > .wf-step.stack-card,
  .mobile-stack > .subs-row.stack-card,
  .mobile-stack > .compare-col.stack-card,
  .mobile-stack > .case-card-rich.stack-card,
  .mobile-stack > .case-rich.stack-card,
  .mobile-stack > .vs-cell.stack-card,
  .mobile-stack > .bento-cell.stack-card,
  .mobile-stack > .team-card.stack-card,
  .mobile-stack > .rich-stat.stack-card,
  .mobile-stack > .tl-row.stack-card,
  .mobile-stack > .mini-tl-card.stack-card {
    border-radius: 8px !important;
  }
  .mobile-stack > .wf-step.stack-card {
    min-height: 235px !important;
  }
  .mobile-stack > .compare-col.stack-card {
    position: sticky !important;
    top: var(--mobile-stack-top);
    margin-top: 0 !important;
  }
  .value-strip {
    padding: clamp(52px, 14vw, 82px) var(--pad-x);
    background:
      radial-gradient(circle at 88% 12%, rgba(212,255,58,0.18), transparent 34%),
      var(--ink);
  }
  .value-strip-grid.mobile-stack {
    padding: 0 !important;
  }
  .mobile-stack > .vs-cell.stack-card {
    min-height: 210px;
    padding: 28px 24px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  }
  .mobile-stack > .tl-row.stack-card {
    display: flex;
    flex-direction: column;
  }
  .mobile-stack > .tl-row.stack-card .tl-card {
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  .data-rail:not(.mobile-stack) > .data-num-card {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 24px 22px !important;
  }
  .data-rail:not(.mobile-stack) .data-stack,
  .data-num-card.center .data-stack {
    justify-content: center;
    width: 100%;
  }
  .data-rail:not(.mobile-stack) .data-info {
    width: 100%;
    align-items: center;
  }
  .data-rail:not(.mobile-stack) .data-text,
  .data-rail:not(.mobile-stack) .data-source {
    text-align: center;
  }

  .value-strip {
    padding: 38px var(--pad-x) 44px !important;
    background:
      radial-gradient(circle at 86% 8%, rgba(212,255,58,0.2), transparent 34%),
      linear-gradient(180deg, #0a0a0a 0%, #10120d 100%) !important;
  }
  .value-strip-grid,
  .value-strip-grid.mobile-stack {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 520px !important;
    overflow: visible !important;
    touch-action: pan-y !important;
  }
  .value-strip-grid > .vs-cell,
  .value-strip-grid.mobile-stack > .vs-cell.stack-card {
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 142px !important;
    margin: 0 !important;
    padding: 18px 16px !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.055) !important;
    box-shadow: none !important;
    justify-content: space-between;
  }
  .value-strip-grid > .vs-cell:nth-child(2),
  .value-strip-grid > .vs-cell:nth-child(3) {
    background: rgba(212,255,58,0.12) !important;
  }
  .value-strip-grid > .mobile-stack-spacer {
    display: none !important;
  }

  .workflow:not(.dark):not(.lime) {
    background:
      radial-gradient(circle at 88% 10%, rgba(212,255,58,0.16), transparent 34%),
      linear-gradient(180deg, #0a0a0a 0%, #11130d 100%);
    color: var(--white);
  }
  .workflow:not(.dark):not(.lime) .workflow-sub {
    color: rgba(255,255,255,0.62);
  }
  .workflow:not(.dark):not(.lime) .workflow-rail.mobile-stack {
    margin-top: 22px !important;
  }
  .workflow-rail.mobile-stack {
    --mobile-stack-top: clamp(112px, 15vh, 138px);
    --mobile-stack-tail: clamp(160px, 30dvh, 280px);
  }
  .workflow:not(.dark):not(.lime) .wf-step.stack-card {
    border: 1px solid rgba(255,255,255,0.12) !important;
    background: #171914;
    color: var(--white);
    box-shadow: 0 24px 70px rgba(0,0,0,0.32);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .workflow:not(.dark):not(.lime) .wf-step.stack-card:nth-child(2n) {
    background: var(--lime);
    color: var(--ink);
  }
  .workflow:not(.dark):not(.lime) .wf-step.stack-card:nth-child(2n) .wf-step-p,
  .workflow:not(.dark):not(.lime) .wf-step.stack-card:nth-child(2n) .wf-step-num {
    color: rgba(10,10,10,0.72);
  }
  .workflow:not(.dark):not(.lime) .wf-step.stack-card:not(:nth-child(2n)) .wf-step-p {
    color: rgba(255,255,255,0.66);
  }
  .workflow:not(.dark):not(.lime) .wf-step.stack-card:not(:nth-child(2n)) .wf-step-num {
    color: var(--lime);
  }

  .subs-section:not(.dark):not(.lime) {
    background:
      radial-gradient(circle at 12% 0%, rgba(212,255,58,0.14), transparent 30%),
      var(--paper);
  }
  .subs-section:not(.dark):not(.lime) .subs-rail.mobile-stack {
    margin-top: 22px !important;
  }
  .subs-section:not(.dark):not(.lime) .subs-row.stack-card {
    background: var(--white);
    border: 1px solid rgba(10,10,10,0.08) !important;
    box-shadow: 0 22px 58px rgba(10,10,10,0.08);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .subs-section:not(.dark):not(.lime) .subs-row.stack-card:nth-child(2n) {
    background: var(--ink);
    color: var(--white);
  }
  .subs-section:not(.dark):not(.lime) .subs-row.stack-card:nth-child(2n) .subs-p {
    color: rgba(255,255,255,0.65);
  }
  .subs-section:not(.dark):not(.lime) .subs-row.stack-card:nth-child(2n) .subs-num,
  .subs-section:not(.dark):not(.lime) .subs-row.stack-card:nth-child(2n) .subs-arr {
    color: var(--lime);
    border-color: rgba(212,255,58,0.28);
  }

  .workflow.dark .wf-step.stack-card,
  .workflow:not(.dark):not(.lime) .wf-step.stack-card,
  .workflow:not(.dark):not(.lime) .wf-step.stack-card:nth-child(2n) {
    border: 1px solid rgba(255,255,255,0.12) !important;
    background: rgb(14 14 11) !important;
    color: var(--white) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,0.32) !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .workflow.dark .wf-step.stack-card .wf-step-p,
  .workflow:not(.dark):not(.lime) .wf-step.stack-card .wf-step-p,
  .workflow:not(.dark):not(.lime) .wf-step.stack-card:nth-child(2n) .wf-step-p {
    color: rgba(255,255,255,0.66) !important;
  }
  .workflow.dark .wf-step.stack-card .wf-step-num,
  .workflow:not(.dark):not(.lime) .wf-step.stack-card .wf-step-num,
  .workflow:not(.dark):not(.lime) .wf-step.stack-card:nth-child(2n) .wf-step-num {
    color: var(--lime) !important;
  }

  .faq-section {
    padding-inline: 12px;
  }
  .faq-section > .container {
    padding-inline: 0 !important;
  }
  .faq-head {
    padding-inline: 10px;
    margin-bottom: 24px;
  }
}



/* ============================================
   KI-BÜROKRATIE — heavy animation theme
   ============================================ */
body.kib-page { background: var(--black); color: var(--white); }

/* ---- Universal motion helpers ---- */
@keyframes kibFloat   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes kibFloat2  { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-6px) translateX(4px)} }
@keyframes kibSpin    { to { transform: rotate(360deg); } }
@keyframes kibSpinRev { to { transform: rotate(-360deg); } }
@keyframes kibPulse   { 0%,100%{opacity:.5; transform: scale(1)} 50%{opacity:1; transform: scale(1.05)} }
@keyframes kibBlink   { 0%,49%{opacity:1} 50%,100%{opacity:0} }
@keyframes kibStrike  { from { width: 0 } to { width: 100% } }
@keyframes kibShake   { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-2px)} 75%{transform:translateX(2px)} }
@keyframes kibSlideIn { from { transform: translateY(40px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes kibTypewrite { from { width: 0 } to { width: 100% } }
@keyframes kibCount   { from { transform: translateY(0) } to { transform: translateY(-100%) } }
@keyframes kibParticle { 0%{ transform: translateX(0); opacity: 0 } 10%{opacity:1} 90%{opacity:1} 100%{ transform: translateX(var(--travel, 200px)); opacity: 0 } }
@keyframes kibBeam    { from { stroke-dashoffset: 800 } to { stroke-dashoffset: 0 } }
@keyframes kibScan    { 0%,100%{transform:translateY(-100%)} 50%{transform:translateY(100%)} }
@keyframes kibBarRise { from { transform: scaleY(0.2) } to { transform: scaleY(1) } }
@keyframes kibInkFill { from { width: 0 } to { width: 100% } }
@keyframes kibChipDrop { from { transform: translateY(-12px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes kibGlow    { 0%,100%{box-shadow: 0 0 0 0 rgba(212,255,58,0.6)} 50%{box-shadow: 0 0 0 18px rgba(212,255,58,0)} }
@keyframes kibCaret   { 0%,50%{opacity:1} 51%,100%{opacity:0} }
@keyframes kibMarquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ============================================
   HERO
   ============================================ */
.kib-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 140px var(--pad-x) 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.kib-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 80% 20%, rgba(212,255,58,0.06), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(212,255,58,0.04), transparent 60%);
  pointer-events: none;
}
.kib-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .kib-hero-grid { grid-template-columns: 1fr; } }

.kib-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 32px;
  animation: kibSlideIn .8s cubic-bezier(.2,.8,.2,1) both;
}
.kib-eyebrow .kib-eb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  animation: kibGlow 2.2s ease-in-out infinite;
}
.kib-crumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.kib-crumb a { color: rgba(255,255,255,0.7); }
.kib-crumb a:hover { color: var(--lime); }
.kib-crumb span.slash { margin: 0 8px; color: rgba(255,255,255,0.25); }

.kib-h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 144px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--white);
}
.kib-h1 .struck {
  position: relative;
  display: inline-block;
  color: rgba(255,255,255,0.45);
}
.kib-h1 .struck::after {
  content: "";
  position: absolute;
  left: -2%; right: 0;
  top: 52%;
  height: 6px;
  background: var(--lime);
  width: 0;
  animation: kibStrike 1.4s cubic-bezier(.2,.8,.2,1) .4s forwards;
}
.kib-h1 .accent {
  color: var(--lime);
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-display);
  position: relative;
}
.kib-h1 .accent::after {
  content: "_";
  display: inline-block;
  margin-left: 4px;
  animation: kibCaret 0.9s steps(1) infinite;
  color: var(--lime);
  font-style: normal;
}
.kib-sub {
  margin-top: 36px;
  max-width: 52ch;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  animation: kibSlideIn 1s cubic-bezier(.2,.8,.2,1) .8s both;
}
.kib-sub strong { color: var(--white); font-weight: 500; }

.kib-cta-row {
  margin-top: 44px;
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  animation: kibSlideIn 1s cubic-bezier(.2,.8,.2,1) 1s both;
}
.kib-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 500; font-size: 15px; letter-spacing: -0.01em;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.kib-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(212,255,58,0.25); }
.kib-cta .kib-cta-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: var(--lime);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.kib-cta:hover .kib-cta-arrow { transform: rotate(-45deg); }
.kib-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  padding: 16px 22px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  transition: border-color .3s, color .3s;
}
.kib-cta-ghost:hover { color: var(--lime); border-color: rgba(212,255,58,0.4); }

/* ----- Hero AI orb visualization ----- */
.kib-orb-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.kib-orb-ring {
  position: absolute;
  top: 22%; left: 22%;
  width: 56%; height: 56%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.12);
  animation: kibSpin 60s linear infinite;
}
.kib-orb-ring.r2 {
  top: 28%; left: 28%;
  width: 44%; height: 44%;
  border-style: dashed;
  border-color: rgba(212,255,58,0.22);
  animation: kibSpinRev 40s linear infinite;
}
.kib-orb-ring.r3 { display: none; }

.kib-orb-core {
  position: absolute;
  top: 34%; left: 34%;
  width: 32%; height: 32%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--lime), var(--lime-dim) 50%, #8aab1c 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 0 80px rgba(212,255,58,0.3), inset 0 0 60px rgba(0,0,0,0.15);
  animation: kibFloat 4s ease-in-out infinite;
}
.kib-orb-core::before {
  content: "";
  position: absolute; inset: -8%;
  border-radius: 50%;
  border: 2px solid rgba(212,255,58,0.4);
  animation: kibPulse 3s ease-in-out infinite;
}
.kib-orb-core::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent 45%, rgba(255,255,255,0.4) 50%, transparent 55%);
  mix-blend-mode: overlay;
  animation: kibScan 3.5s ease-in-out infinite;
}
.kib-orb-core-label {
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1.3;
}

/* Orbit satellites */
.kib-sat {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--white);
  z-index: 3;
  font-family: var(--font-mono);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  animation: kibFloat 5s ease-in-out infinite;
}
.kib-sat .kib-sat-dot {
  position: absolute;
  top: -3px; right: -3px;
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  border: 2px solid var(--black);
  animation: kibBlink 1.6s steps(1) infinite;
}
.kib-sat .kib-sat-label { display: none; opacity: 0; visibility: hidden;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
/* Satellites at 6 hex positions, sized 64px. Centered via negative margins so animation transform stays untouched. */
.kib-sat {
  width: 64px; height: 64px;
  border-radius: 16px;
  margin-left: -32px;
  margin-top: -32px;
}
.kib-sat.s1 { top: 8%;  left: 50%; animation-delay: 0s; }    /* 12 */
.kib-sat.s2 { top: 28%; left: 90%; animation-delay: .4s; }   /* 2  */
.kib-sat.s3 { top: 72%; left: 90%; animation-delay: .8s; }   /* 4  */
.kib-sat.s4 { top: 92%; left: 50%; animation-delay: 1.2s; }  /* 6  */
.kib-sat.s5 { top: 72%; left: 10%; animation-delay: 1.6s; }  /* 8  */
.kib-sat.s6 { top: 28%; left: 10%; animation-delay: 2.0s; }  /* 10 */

/* Connecting beams (SVG fills the orb wrap) */
.kib-orb-beams {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.kib-orb-beams line {
  stroke: var(--lime);
  stroke-width: 0.6;
  stroke-dasharray: 1.2 2;
  stroke-dashoffset: 0;
  opacity: 0.45;
  animation: kibBeam 6s linear infinite;
}

/* Mini badge bottom hero */
.kib-hero-foot {
  position: absolute;
  bottom: 32px; left: var(--pad-x); right: var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  z-index: 2;
}
.kib-hero-foot a { color: rgba(255,255,255,0.6); }
.kib-hero-foot a:hover { color: var(--lime); }
@media (max-width: 760px) { .kib-hero-foot { position: static; margin-top: 60px; flex-direction: column; align-items: flex-start; } }

/* ============================================
   MANIFESTO STRIP
   ============================================ */
.kib-manifesto {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(10,10,10,0.06);
  border-bottom: 1px solid rgba(10,10,10,0.06);
  padding: 80px var(--pad-x);
}
.kib-mani-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 800px) { .kib-mani-grid { grid-template-columns: 1fr; } }
.kib-mani-cell {
  padding: 32px 36px;
  border-right: 1px solid rgba(10,10,10,0.1);
  position: relative;
  overflow: hidden;
  transition: background .4s;
}
.kib-mani-cell:last-child { border-right: none; }
@media (max-width: 800px) {
  .kib-mani-cell { border-right: none; border-bottom: 1px solid rgba(10,10,10,0.1); }
  .kib-mani-cell:last-child { border-bottom: none; }
}
.kib-mani-cell:hover { background: rgba(212,255,58,0.12); }
.kib-mani-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  opacity: 0.5;
}
.kib-mani-word {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 0.95;
  margin-bottom: 18px;
}
.kib-mani-bar {
  height: 4px;
  background: rgba(10,10,10,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.kib-mani-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--lime);
  border-radius: 2px;
  animation: kibInkFill 2.4s cubic-bezier(.2,.8,.2,1) forwards;
}
.kib-mani-cell:nth-child(2) .kib-mani-bar::after { animation-delay: .4s; }
.kib-mani-cell:nth-child(3) .kib-mani-bar::after { animation-delay: .8s; }
.kib-mani-p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(10,10,10,0.6);
}

/* ============================================
   TASKS GRID (6 animated tiles)
   ============================================ */
.kib-tasks {
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.kib-tasks-head {
  max-width: var(--container);
  margin: 0 auto 60px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap;
}
.kib-section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.kib-section-label .ln { width: 28px; height: 1px; background: var(--lime); opacity: .5; }
.kib-section-h {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
}
.kib-flow .kib-section-h, .kib-flow .kib-section-p { color: var(--ink); }
.kib-section-h em { font-style: italic; color: var(--lime); font-weight: 400; }
.kib-section-p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10,10,10,0.65);
  max-width: 38ch;
}

.kib-tasks-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 920px) { .kib-tasks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .kib-tasks-grid { grid-template-columns: 1fr; } }

.kib-task {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 22px;
  padding: 24px 24px 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: border-color .4s, background .4s, transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.kib-task:hover { border-color: rgba(10,10,10,0.18); background: var(--white); transform: translateY(-4px); box-shadow: 0 18px 50px rgba(10,10,10,0.08); }
.kib-task .kib-task-p { margin-bottom: 18px; }

.kib-task-tag {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
  padding: 6px 10px;
  border: 1px solid rgba(10,10,10,0.15);
  border-radius: 999px;
  background: rgba(212,255,58,0.18);
}
.kib-task-tag .kib-task-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
  animation: kibBlink 1.4s steps(1) infinite;
}
.kib-task-num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  color: rgba(10,10,10,0.35);
}
.kib-task-h {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin-top: 4px;
}
.kib-task-p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(10,10,10,0.65);
  max-width: 28ch;
}

.kib-task-viz {
  margin-top: auto;
  margin-left: -24px;
  margin-right: -24px;
  height: 84px;
  pointer-events: none;
  overflow: hidden;
  border-top: 1px solid rgba(10,10,10,0.06);
  background: rgba(10,10,10,0.04);
}

/* Inbox viz: stacking mail bars */
.kib-viz-inbox {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 24px;
  justify-content: flex-end;
  height: 100%;
}
.kib-viz-inbox .ml {
  height: 8px;
  background: linear-gradient(90deg, rgba(10,10,10,0.12), rgba(10,10,10,0.05));
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  animation: kibChipDrop .5s cubic-bezier(.2,.8,.2,1) both;
}
.kib-viz-inbox .ml::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--lime); border-radius: 2px;
}
.kib-task:hover .kib-viz-inbox .ml:nth-child(1) { animation-delay: 0s }
.kib-task:hover .kib-viz-inbox .ml:nth-child(2) { animation-delay: .1s }
.kib-task:hover .kib-viz-inbox .ml:nth-child(3) { animation-delay: .2s }
.kib-task:hover .kib-viz-inbox .ml:nth-child(4) { animation-delay: .3s }

/* Bars viz: data analysis */
.kib-viz-bars {
  display: flex; gap: 6px; align-items: flex-end;
  padding: 10px 24px;
  height: 100%;
}
.kib-viz-bars .br {
  flex: 1;
  background: linear-gradient(180deg, var(--lime), rgba(212,255,58,0.2));
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: kibBarRise 1.4s cubic-bezier(.2,.8,.2,1) infinite alternate;
}
.kib-viz-bars .br:nth-child(1){ height: 30%; animation-delay: 0s }
.kib-viz-bars .br:nth-child(2){ height: 55%; animation-delay: .15s }
.kib-viz-bars .br:nth-child(3){ height: 40%; animation-delay: .3s }
.kib-viz-bars .br:nth-child(4){ height: 75%; animation-delay: .45s }
.kib-viz-bars .br:nth-child(5){ height: 60%; animation-delay: .6s }
.kib-viz-bars .br:nth-child(6){ height: 90%; animation-delay: .75s }
.kib-viz-bars .br:nth-child(7){ height: 45%; animation-delay: .9s }
.kib-viz-bars .br:nth-child(8){ height: 70%; animation-delay: 1.05s }
.kib-viz-bars .br:nth-child(9){ height: 35%; animation-delay: 1.2s }

/* Routing viz: splitting paths */
.kib-viz-route {
  position: relative; height: 100%; padding: 12px 24px;
}
.kib-viz-route svg { width: 100%; height: 100%; }
.kib-viz-route .pth {
  fill: none; stroke: var(--lime); stroke-width: 1.4; stroke-dasharray: 3 5;
  animation: kibBeam 3s linear infinite;
  opacity: 0.5;
}
.kib-viz-route .nde { fill: var(--lime); }
.kib-viz-route .nde-out { fill: rgba(10,10,10,0.5); }

/* Extraction viz: text being highlighted */
.kib-viz-ocr {
  padding: 12px 24px; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.kib-viz-ocr .ln {
  height: 8px;
  background: rgba(10,10,10,0.08);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.kib-viz-ocr .ln::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(212,255,58,0.5);
  animation: kibInkFill 1.6s ease-in-out infinite alternate;
}
.kib-viz-ocr .ln:nth-child(1)::after { width: 80%; animation-delay: 0s }
.kib-viz-ocr .ln:nth-child(2)::after { width: 65%; animation-delay: .2s }
.kib-viz-ocr .ln:nth-child(3)::after { width: 90%; animation-delay: .4s }
.kib-viz-ocr .ln:nth-child(4)::after { width: 50%; animation-delay: .6s }

/* Typing viz: chat dots */
.kib-viz-type {
  display: flex; align-items: center; justify-content: flex-start; gap: 12px;
  padding: 0 24px; height: 100%;
}
.kib-viz-type .bubble {
  background: rgba(10,10,10,0.08);
  padding: 10px 16px;
  border-radius: 999px;
  display: flex; gap: 6px;
}
.kib-viz-type .bubble span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  opacity: 0.5;
  animation: kibFloat 1s ease-in-out infinite;
}
.kib-viz-type .bubble span:nth-child(2) { animation-delay: .15s }
.kib-viz-type .bubble span:nth-child(3) { animation-delay: .3s }
.kib-viz-type .meta {
  font-family: var(--font-mono);
  font-size: 11px; color: rgba(10,10,10,0.5);
  letter-spacing: 0.04em;
}

/* Approval viz: checkmarks */
.kib-viz-approve {
  display: flex; gap: 6px; align-items: center; justify-content: flex-start;
  padding: 0 24px; height: 100%; flex-wrap: wrap;
}
.kib-viz-approve .chk {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--lime);
  background: rgba(212,255,58,0.08);
  border: 1px solid rgba(212,255,58,0.3);
  border-radius: 999px;
  padding: 4px 10px;
  animation: kibChipDrop .6s cubic-bezier(.2,.8,.2,1) both;
}
.kib-viz-approve .chk:nth-child(1){ animation-delay: 0s }
.kib-viz-approve .chk:nth-child(2){ animation-delay: .15s }
.kib-viz-approve .chk:nth-child(3){ animation-delay: .3s }
.kib-viz-approve .chk:nth-child(4){ animation-delay: .45s }
.kib-viz-approve .chk .mk {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
}

/* ============================================
   INTEGRATIONS — flowing constellation
   ============================================ */
.kib-int {
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.kib-int-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 980px) { .kib-int-grid { grid-template-columns: 1fr; } }

.kib-int-stage {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.kib-int-stage svg.beams {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.kib-int-stage svg.beams line {
  fill: none; stroke: var(--lime); stroke-width: 0.4;
  opacity: 0.4;
  stroke-dasharray: 1.2 2;
  animation: kibBeam 6s linear infinite;
}

.kib-int-core {
  position: absolute;
  left: 50%; top: 50%;
  margin-left: -70px;
  margin-top: -70px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 5;
  box-shadow: 0 0 80px rgba(212,255,58,0.25);
  animation: kibFloat 4s ease-in-out infinite;
}
.kib-int-core::before {
  content: "";
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(212,255,58,0.4);
  animation: kibSpin 30s linear infinite;
}
.kib-int-core .lbl {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.6;
}
.kib-int-core .v {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-top: 2px;
}

.kib-int-node {
  position: absolute;
  width: 96px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 12px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 3;
  animation: kibFloat 5s ease-in-out infinite;
  transition: border-color .4s, transform .4s;
}
.kib-int-node:hover { border-color: var(--lime); transform: scale(1.08); z-index: 6; }
.kib-int-node .ico {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
}
.kib-int-node .nm {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-align: center;
  text-transform: uppercase;
}
.kib-int-node .st {
  position: absolute; top: 8px; right: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  animation: kibBlink 1.4s steps(1) infinite;
}
.kib-int-node {
  width: 104px;
  margin-left: -52px;
  margin-top: -42px;
}
.kib-int-node.n1 { top: 6%;  left: 50%; animation-delay: 0s; }    /* 12 */
.kib-int-node.n2 { top: 28%; left: 92%; animation-delay: .4s; }   /* 2  */
.kib-int-node.n3 { top: 72%; left: 92%; animation-delay: .8s; }   /* 4  */
.kib-int-node.n4 { top: 94%; left: 50%; animation-delay: 1.2s; }  /* 6  */
.kib-int-node.n5 { top: 72%; left: 8%;  animation-delay: 1.6s; }  /* 8  */
.kib-int-node.n6 { top: 28%; left: 8%;  animation-delay: 2s; }    /* 10 */
.kib-int-node:hover { z-index: 6; }

/* moving dots along beams — center via negative margins so keyframes drive top/left cleanly */
.kib-int-particle {
  position: absolute;
  width: 7px; height: 7px;
  margin-left: -3.5px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
  z-index: 4;
  top: 50%; left: 50%;
}
@keyframes kibBeamRun1 { 0%{ top: 6%;  left: 50%; opacity:0 } 10%,90%{opacity:1} 100%{ top: 50%; left: 50%; opacity:0 } }
@keyframes kibBeamRun2 { 0%{ top: 28%; left: 92%; opacity:0 } 10%,90%{opacity:1} 100%{ top: 50%; left: 50%; opacity:0 } }
@keyframes kibBeamRun3 { 0%{ top: 72%; left: 92%; opacity:0 } 10%,90%{opacity:1} 100%{ top: 50%; left: 50%; opacity:0 } }
@keyframes kibBeamRun4 { 0%{ top: 94%; left: 50%; opacity:0 } 10%,90%{opacity:1} 100%{ top: 50%; left: 50%; opacity:0 } }
@keyframes kibBeamRun5 { 0%{ top: 72%; left: 8%;  opacity:0 } 10%,90%{opacity:1} 100%{ top: 50%; left: 50%; opacity:0 } }
@keyframes kibBeamRun6 { 0%{ top: 28%; left: 8%;  opacity:0 } 10%,90%{opacity:1} 100%{ top: 50%; left: 50%; opacity:0 } }
.kib-int-particle.p1 { animation: kibBeamRun1 3s ease-in infinite 0s; }
.kib-int-particle.p2 { animation: kibBeamRun2 3s ease-in infinite .5s; }
.kib-int-particle.p3 { animation: kibBeamRun3 3s ease-in infinite 1s; }
.kib-int-particle.p4 { animation: kibBeamRun4 3s ease-in infinite 1.5s; }
.kib-int-particle.p5 { animation: kibBeamRun5 3s ease-in infinite 2s; }
.kib-int-particle.p6 { animation: kibBeamRun6 3s ease-in infinite 2.5s; }

/* ============================================
   WORKFLOW BAND — chaos → AI → order
   ============================================ */
.kib-flow {
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(10,10,10,0.06);
  position: relative;
  overflow: hidden;
}
.kib-flow-head {
  max-width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}
.kib-flow-stage {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 980px) {
  .kib-flow-stage { grid-template-columns: 1fr; }
  .kib-flow-stage .arr { transform: rotate(90deg); justify-self: center; }
}

.kib-flow-col {
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 20px;
  padding: 26px;
  min-height: 320px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
}
.kib-flow-col.brain {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.kib-flow-col-lbl {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(10,10,10,0.55);
}
.kib-flow-col.brain .kib-flow-col-lbl { color: var(--lime); }
.kib-flow-col-h {
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--ink); line-height: 1.15;
}
.kib-flow-col.brain .kib-flow-col-h { color: var(--white); }

/* Input column: chaotic incoming */
.kib-flow-in {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 12px;
}
.kib-flow-in .row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(10,10,10,0.03);
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(10,10,10,0.75);
  animation: kibChipDrop .6s cubic-bezier(.2,.8,.2,1) both;
}
.kib-flow-in .row .ic {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(10,10,10,0.08);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kib-flow-in .row .meta { margin-left: auto; font-size: 9px; opacity: 0.5; }
.kib-flow-in .row:nth-child(1) { animation-delay: .0s }
.kib-flow-in .row:nth-child(2) { animation-delay: .15s }
.kib-flow-in .row:nth-child(3) { animation-delay: .3s }
.kib-flow-in .row:nth-child(4) { animation-delay: .45s }
.kib-flow-in .row:nth-child(5) { animation-delay: .6s }

/* Brain column */
.kib-brain {
  margin-top: 16px;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
}
.kib-brain-core {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--lime), var(--lime-dim) 60%, #8aab1c);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(212,255,58,0.4), inset 0 0 40px rgba(0,0,0,0.15);
  animation: kibFloat 4s ease-in-out infinite;
}
.kib-brain-core::before {
  content: "";
  position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(212,255,58,0.4);
  animation: kibPulse 3s ease-in-out infinite;
}
.kib-brain-core::after {
  content: "";
  position: absolute; inset: -22px; border-radius: 50%;
  border: 1px dashed rgba(212,255,58,0.3);
  animation: kibSpin 20s linear infinite;
}
.kib-brain-core svg { width: 56px; height: 56px; color: var(--ink); }
.kib-brain-ops {
  display: flex; flex-direction: column; gap: 6px;
  width: 100%;
}
.kib-brain-ops .op {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--lime);
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
}
.kib-brain-ops .op .tick {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
}
.kib-brain-ops .op .ld {
  margin-left: auto;
  width: 40px; height: 3px; border-radius: 2px;
  background: rgba(212,255,58,0.15);
  overflow: hidden;
  position: relative;
}
.kib-brain-ops .op .ld::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--lime);
  width: 0;
  animation: kibInkFill 1.8s cubic-bezier(.2,.8,.2,1) infinite alternate;
}
.kib-brain-ops .op:nth-child(1) .ld::after { animation-delay: 0s }
.kib-brain-ops .op:nth-child(2) .ld::after { animation-delay: .3s }
.kib-brain-ops .op:nth-child(3) .ld::after { animation-delay: .6s }
.kib-brain-ops .op:nth-child(4) .ld::after { animation-delay: .9s }

/* Output column: ordered actions */
.kib-flow-out {
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.kib-flow-out .out {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(212,255,58,0.18);
  border: 1px solid rgba(212,255,58,0.55);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  animation: kibChipDrop .6s cubic-bezier(.2,.8,.2,1) both;
}
.kib-flow-out .out .mk {
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--lime); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.kib-flow-out .out .meta { margin-left: auto; font-size: 9px; opacity: 0.5; }
.kib-flow-out .out:nth-child(1) { animation-delay: 1.0s }
.kib-flow-out .out:nth-child(2) { animation-delay: 1.15s }
.kib-flow-out .out:nth-child(3) { animation-delay: 1.3s }
.kib-flow-out .out:nth-child(4) { animation-delay: 1.45s }
.kib-flow-out .out:nth-child(5) { animation-delay: 1.6s }

/* Arrow column */
.kib-flow-stage .arr {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.kib-flow-stage .arr svg {
  width: 56px; height: 18px;
}
.kib-flow-stage .arr svg path { stroke-dasharray: 4 5; animation: kibBeam 2s linear infinite; }

/* ============================================
   BIG CTA
   ============================================ */
.kib-cta-section {
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  background: var(--lime);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.kib-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 80% 30%, rgba(10,10,10,0.05), transparent 60%),
    radial-gradient(500px 400px at 20% 70%, rgba(10,10,10,0.04), transparent 60%);
  pointer-events: none;
}
.kib-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .kib-cta-inner { grid-template-columns: 1fr; } }

.kib-cta-h {
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--ink);
}
.kib-cta-h .it { font-style: italic; font-weight: 400; }
.kib-cta-p {
  margin-top: 28px;
  font-size: 17px; line-height: 1.5;
  color: rgba(10,10,10,0.72);
  max-width: 48ch;
}
.kib-cta-buttons {
  margin-top: 36px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.kib-cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 30px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 999px;
  font-weight: 500; font-size: 15px;
  transition: transform .3s, box-shadow .3s;
}
.kib-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,0.25); }
.kib-cta-btn .arr {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .4s;
}
.kib-cta-btn:hover .arr { transform: rotate(-45deg); }
.kib-cta-link {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid rgba(10,10,10,0.3);
  padding-bottom: 4px;
  transition: border-color .3s;
}
.kib-cta-link:hover { border-color: var(--ink); }

.kib-cta-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(10,10,10,0.15);
  border-radius: 18px;
  overflow: hidden;
}
.kib-cta-stat-grid .cell {
  background: var(--lime);
  padding: 26px;
  display: flex; flex-direction: column; gap: 6px;
}
.kib-cta-stat-grid .cell .v {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.kib-cta-stat-grid .cell .l {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(10,10,10,0.6);
}



/* ============================================
   KI-Bürokratie integration overrides
   ============================================ */
.kib-page .kib-crumb,
.kib-page .kib-hero-foot { display: none !important; }
.kib-page .site-header { color: var(--white); }
.kib-page main { background: var(--black); }
.kib-page .word-reveal .wr-word {
  color: inherit !important;
  transform: none !important;
}
.kib-page .kib-h1 {
  font-size: clamp(50px, 7.3vw, 112px);
  line-height: 0.94;
}
.kib-page .kib-section-h em,
.kib-page .kib-cta-h .it { font-style: normal; color: var(--lime); }
.kib-page .kib-section-label { display: none !important; }
.kib-page .kib-tasks {
  background:
    radial-gradient(820px 480px at 85% 10%, rgba(212,255,58,0.08), transparent 64%),
    var(--paper);
  color: var(--ink);
}
.kib-page .kib-tasks .kib-section-h,
.kib-page .kib-tasks .kib-section-p { color: var(--ink); }
.kib-page .kib-tasks .kib-section-p { color: rgba(10,10,10,0.66); }
.kib-page .kib-int .kib-section-h,
.kib-page .kib-int .kib-section-p { color: var(--white); }
.kib-page .kib-int .kib-section-p { color: rgba(255,255,255,0.68); }
.kib-page .kib-task {
  background: #141511;
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}
.kib-page .kib-task:hover {
  background: #181a14;
  border-color: rgba(212,255,58,0.32);
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
}
.kib-page .kib-task-tag {
  color: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
}
.kib-page .kib-task-num { color: rgba(255,255,255,0.32); }
.kib-page .kib-task-h { color: var(--white); }
.kib-page .kib-task-p { color: rgba(255,255,255,0.66); }
.kib-page .kib-task-viz {
  border-top-color: rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(212,255,58,0.06), rgba(255,255,255,0.025)),
    #0b0c09;
}
.kib-page .kib-viz-inbox .ml {
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
}
.kib-page .kib-viz-bars .br { background: linear-gradient(180deg, var(--lime), rgba(212,255,58,0.22)); }
.kib-page .kib-viz-route svg .pth { stroke: rgba(212,255,58,0.7); }
.kib-page .kib-viz-ocr .ln { background: rgba(255,255,255,0.12); }
.kib-page .kib-viz-type .bubble,
.kib-page .kib-viz-approve .chk { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.78); }
.kib-page .kib-task,
.kib-page .kib-flow-col,
.kib-page .kib-cta-stat-grid { border-radius: 8px; }
.kib-page .kib-sub,
.kib-page .kib-cta-row {
  animation-duration: 0.45s;
  animation-delay: 0s;
}
.kib-page .kib-sat.s1,
.kib-page .kib-sat.s2,
.kib-page .kib-sat.s3,
.kib-page .kib-sat.s4,
.kib-page .kib-sat.s5,
.kib-page .kib-sat.s6 {
  animation-delay: 0s;
}
.kib-page .kib-cta:hover .kib-cta-arrow,
.kib-page .kib-cta-btn:hover .arr { transform: none; }
.kib-page .kib-cta-ghost:hover { transform: none; }
.kib-page footer { background: var(--black); }
@media (max-width: 760px) {
  body.kib-page { overflow-x: hidden; }
  .kib-page .kib-hero {
    min-height: auto;
    padding: 90px 0 48px;
    align-items: flex-start;
    background:
      radial-gradient(650px 420px at 72% 18%, rgba(212,255,58,0.06), transparent 62%),
      var(--black);
  }
  .kib-page .kib-hero-grid {
    gap: 22px;
    padding: 32px calc(var(--pad-x) + 24px) 0;
  }
  .kib-page .kib-eyebrow {
    margin-bottom: 34px;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: rgba(250,250,247,0.62);
    letter-spacing: 0.16em;
    line-height: 1.35;
  }
  .kib-page .kib-h1 {
    font-size: clamp(38px, 10.6vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 500;
  }
  .kib-page .kib-h1 .struck {
    color: var(--white);
  }
  .kib-page .kib-h1 .struck::after {
    display: none;
  }
  .kib-page .kib-h1 .accent {
    display: block;
    margin-top: 2px;
    font-style: normal;
    font-weight: 700;
    color: var(--lime);
  }
  .kib-page .kib-h1 .accent::after {
    display: none;
  }
  .kib-page .kib-sub { font-size: 16px; line-height: 1.55; margin-top: 22px; }
  .kib-page .kib-cta-row { margin-top: 22px; gap: 10px; }
  .kib-page .kib-cta,
  .kib-page .kib-cta-ghost {
    width: auto;
    justify-content: space-between;
    min-height: 58px;
    padding: 16px 22px 16px 26px;
    font-size: 15px;
    border-radius: 999px;
  }
  .kib-page .kib-cta {
    color: var(--ink);
    font-weight: 600;
  }
  .kib-page .kib-cta-ghost {
    color: var(--white);
    border-color: rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.055);
  }
  .kib-page .kib-cta-row { align-items: flex-start; }
  .kib-page .kib-cta-ghost { display: none; }
  .kib-page .kib-cta .kib-cta-arrow {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }
  .kib-page .kib-orb-wrap { max-width: 180px; margin: 2px auto 0; }
  .kib-page .kib-sat { width: 34px; height: 34px; margin-left: -17px; margin-top: -17px; border-radius: 8px; }
  .kib-page .kib-sat svg { width: 14px; height: 14px; }
  .kib-page .kib-sat-label { font-size: 6px; }
  .kib-page .kib-orb-core { font-size: 7px; }
  .kib-page .kib-manifesto,
  .kib-page .kib-tasks,
  .kib-page .kib-int,
  .kib-page .kib-flow,
  .kib-page .kib-cta-section { padding-inline: var(--pad-x); }
  .kib-page .kib-manifesto { padding-top: 56px; padding-bottom: 56px; }
  .kib-page .kib-mani-grid { grid-template-columns: 1fr; gap: 12px; }
  .kib-page .kib-mani-cell { padding: 26px; border-radius: 8px; }
  .kib-page .kib-mani-grid.mobile-stack,
  .kib-page .kib-tasks-grid.mobile-stack {
    --mobile-stack-top: clamp(112px, 15vh, 138px);
    --mobile-stack-tail: clamp(170px, 34dvh, 300px);
    margin-top: 20px !important;
  }
  .kib-page .kib-mani-grid.mobile-stack > .kib-mani-cell.stack-card {
    background: #141511;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  }
  .kib-page .kib-mani-grid.mobile-stack > .kib-mani-cell.stack-card .kib-mani-num,
  .kib-page .kib-mani-grid.mobile-stack > .kib-mani-cell.stack-card .kib-mani-word {
    color: var(--white);
  }
  .kib-page .kib-mani-grid.mobile-stack > .kib-mani-cell.stack-card .kib-mani-bar {
    background: rgba(255,255,255,0.12);
  }
  .kib-page .kib-mani-grid.mobile-stack > .kib-mani-cell.stack-card .kib-mani-p {
    color: rgba(255,255,255,0.68);
  }
  .kib-page .kib-tasks { padding-top: 58px; padding-bottom: 62px; }
  .kib-page .kib-tasks-head,
  .kib-page .kib-int-grid { grid-template-columns: 1fr; gap: 20px; }
  .kib-page .kib-section-h { font-size: clamp(38px, 12vw, 56px); line-height: .98; }
  .kib-page .kib-section-p { font-size: 16px; line-height: 1.55; }
  .kib-page .kib-tasks-grid { grid-template-columns: 1fr; gap: 14px; }
  .kib-page .kib-tasks-grid.mobile-stack > .kib-task.stack-card {
    min-height: 340px !important;
    padding: 26px 24px 0 !important;
  }
  .kib-page .kib-tasks-grid.mobile-stack > .kib-task.stack-card .kib-task-viz {
    margin-top: 18px !important;
    height: 98px;
  }
  .kib-page .kib-task { min-height: 260px; padding: 28px; }
  .kib-page .kib-task-h { font-size: 30px; }
  .kib-page .kib-task-p { font-size: 15px; }
  .kib-page .kib-int { padding-top: 58px; padding-bottom: 68px; }
  .kib-page .kib-int-grid { gap: 34px; }
  .kib-page .kib-int-stage {
    width: min(66vw, 236px);
    max-width: 236px;
    margin: 46px auto 0;
  }
  .kib-page .kib-int-node { width: 68px; margin-left: -34px; margin-top: -34px; padding: 9px 7px; border-radius: 8px; }
  .kib-page .kib-int-node .ico svg { width: 20px; height: 20px; }
  .kib-page .kib-int-node .nm { font-size: 7px; }
  .kib-page .kib-int-core { width: 78px; height:78px; margin-left:-39px; margin-top:-39px; }
  .kib-page .kib-flow { padding-top: 58px; padding-bottom: 58px; }
  .kib-page .kib-flow-head { margin-bottom: 28px; }
  .kib-page .kib-flow-stage { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .kib-page .kib-flow-stage .arr { transform: none; margin: -2px auto; min-height: 36px; }
  .kib-page .kib-flow-stage .arr svg { transform: rotate(90deg); }
  .kib-page .kib-flow-stage .arr span { display: none; }
  .kib-page .kib-flow-col { min-height: auto; padding: 22px; border-radius: 8px; }
  .kib-page .kib-brain-core { width: 104px; height: 104px; }
  .kib-page .kib-brain-core svg { width: 42px; height: 42px; }
  .kib-page .kib-brain { gap: 12px; margin-top: 6px; }
  .kib-page .kib-flow-in .row,
  .kib-page .kib-flow-out .out { font-size: 13px; }
  .kib-page .kib-cta-section { padding-top: 68px; padding-bottom: 78px; }
  .kib-page .kib-cta-inner { grid-template-columns: 1fr; gap: 26px; padding: 30px; border-radius: 8px; }
  .kib-page .kib-cta-h { font-size: clamp(42px, 14vw, 64px); }
  .kib-page .kib-cta-p { font-size: 16px; }
  .kib-page .kib-cta-buttons { flex-direction: column; align-items: stretch; }
  .kib-page .kib-cta-btn { justify-content: center; }
  .kib-page .kib-cta-link { justify-content: center; }
  .kib-page .kib-cta-stat-grid { grid-template-columns: 1fr 1fr; overflow: hidden; }
  .kib-page .kib-cta-stat-grid .cell { min-height: 130px; padding: 20px; }
  .kib-page .kib-cta-stat-grid .cell .v { font-size: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  .kib-page *,
  .kib-page *::before,
  .kib-page *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

@media (max-width: 760px) {
  .contact-page-hero-light {
    background:
      radial-gradient(circle at 76% 26%, rgba(212,255,58,0.16), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, var(--paper) 100%) !important;
    color: var(--ink) !important;
  }
  .contact-page-hero-light::before {
    color: rgba(10,10,10,0.035) !important;
  }
  .contact-page-hero-light::after {
    background: radial-gradient(circle, rgba(212,255,58,0.14), transparent 62%) !important;
  }
  .contact-page-hero-light .ph-title,
  .contact-page-hero-light .ph-title .wr-word,
  .contact-page-hero-light .ph-title span {
    color: var(--ink) !important;
  }
  .contact-page-hero-light .ph-lead,
  .contact-page-hero-light .ph-foot {
    color: rgba(10,10,10,0.68) !important;
  }

  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card,
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card.lime,
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card.dark-cell {
    background: rgb(14,14,11) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: var(--white) !important;
    opacity: 1 !important;
    box-shadow: 0 24px 70px rgba(0,0,0,0.38) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card .b-h,
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card.lime .b-h,
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card.dark-cell .b-h {
    color: var(--white) !important;
  }
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card .b-p,
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card.lime .b-p,
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card.dark-cell .b-p {
    color: rgba(255,255,255,0.68) !important;
  }
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card .b-tag,
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card.lime .b-tag,
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card.dark-cell .b-tag {
    color: rgba(255,255,255,0.58) !important;
  }
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card .b-tag::before,
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card.lime .b-tag::before,
  .bento-section.dark .bento-grid.mobile-stack > .bento-cell.stack-card.dark-cell .b-tag::before {
    background: var(--lime) !important;
  }

  .story .story-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .story .story-side {
    position: static !important;
    top: auto !important;
    z-index: auto !important;
    transform: none !important;
    margin: 0 !important;
  }
  .story .story-side-num {
    display: none !important;
  }
  .story .story-side-h {
    position: static !important;
    z-index: auto !important;
    margin: 0 0 10px !important;
    max-width: 100% !important;
    font-size: clamp(30px, 8.8vw, 40px) !important;
    line-height: 1.02 !important;
    color: var(--ink) !important;
  }
  .story .story-body {
    position: static !important;
    z-index: auto !important;
    min-width: 0 !important;
  }
  .story .story-body p:first-child {
    margin-top: 0 !important;
  }
}
