body { font-family: "Inter", sans-serif; --iconify-stroke-width: 1.5px; }

.brand-logo {
  object-fit: contain;
  flex-shrink: 0;
}
.brand-logo--on-dark {
  filter: brightness(0) invert(1);
}
.font-display { font-family: "Bebas Neue", sans-serif; }
iconify-icon { display: inline-block; vertical-align: middle; }

.bg-grid-pattern {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 1.35rem 1.35rem;
}
.bg-grid-pattern-dark {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 2rem 2rem;
}

.hero-radial-overlay {
  background:
    radial-gradient(760px 460px at 50% 32%, rgba(77,163,255,0.18), transparent 56%),
    radial-gradient(560px 320px at 50% 38%, rgba(77,163,255,0.08), transparent 62%),
    linear-gradient(to bottom, rgba(245,245,242,0.08), rgba(245,245,242,0.16) 100%);
}
.hero-top-fade {
  position: absolute; inset: 0 0 auto 0; height: 180px;
  background: linear-gradient(to bottom, #f5f5f2 0%, rgba(245,245,242,0) 100%);
  pointer-events: none; z-index: 2;
}
.hero-bottom-fade {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 180px;
  background: linear-gradient(to bottom, rgba(245,245,242,0) 0%, #f5f5f2 100%);
  pointer-events: none; z-index: 5;
}

.toggle-checkbox:checked { right: 0; border-color: #10141B; }
.toggle-checkbox:checked + .toggle-label { background-color: #10141B; }

html.gsap-loading nav,
html.gsap-loading section:nth-of-type(1) .relative.z-10 > * {
  opacity: 0; visibility: hidden;
}
.reveal-card { will-change: transform, opacity; }

/* Chat typewriter */
.chat-cursor::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: #4DA3FF;
  animation: blink-cursor 0.9s step-end infinite;
}
.chat-cursor.done::after { display: none; }
@keyframes blink-cursor {
  50% { opacity: 0; }
}

/* Knowledge graph */
@keyframes flow-dash {
  to { stroke-dashoffset: -24; }
}
.kg-line {
  stroke-dasharray: 6 6;
  animation: flow-dash 2.5s linear infinite;
}
.kg-pulse {
  animation: kg-pulse 2.2s ease-in-out infinite;
}
@keyframes kg-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* Contact / pricing ambience */
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}
.section-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  animation: float-orb 8s ease-in-out infinite;
}
.section-orb-delay { animation-delay: -4s; }

.pricing-card-featured {
  box-shadow: 0 24px 60px rgba(77,163,255,0.18), 0 0 0 1px rgba(77,163,255,0.2);
}
.pricing-card-featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(77,163,255,0.5), transparent 40%, rgba(77,163,255,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-field { transform-origin: center bottom; }

/* Logo strip — monochrome wie zuvor, Farbe bei Hover */
.logo-strip img.logo-partner {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.logo-strip img.logo-partner--personio {
  height: 24px;
  max-width: 110px;
}
.logo-strip img.logo-partner--workday {
  height: 32px;
  max-width: 36px;
}

/* Vorteile bento */
.vorteile-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.82);
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.04);
  backdrop-filter: blur(12px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.vorteile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 180px at 0% 0%, rgba(77, 163, 255, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.vorteile-card:hover {
  border-color: rgba(77, 163, 255, 0.22);
  box-shadow: 0 20px 48px rgba(77, 163, 255, 0.1), 0 0 0 1px rgba(77, 163, 255, 0.08);
  transform: translateY(-2px);
}
.vorteile-card:hover::before { opacity: 1; }
.vorteile-card__index {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  user-select: none;
  pointer-events: none;
  transition: color 0.35s ease;
}
.vorteile-card:hover .vorteile-card__index { color: rgba(77, 163, 255, 0.14); }
.vorteile-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: #10141B;
  color: #4DA3FF;
  margin-bottom: 1rem;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.vorteile-card:hover .vorteile-card__icon {
  box-shadow: 0 0 20px rgba(77, 163, 255, 0.25);
  transform: scale(1.05);
}
.vorteile-card__title {
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #0A0A0A;
}
.vorteile-card__desc {
  position: relative;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #5F6672;
  max-width: 36ch;
}
/* Subpage */
.page-hero-gradient {
  background:
    radial-gradient(600px 320px at 20% 0%, rgba(77,163,255,0.12), transparent 60%),
    radial-gradient(500px 280px at 80% 20%, rgba(77,163,255,0.08), transparent 55%);
}
