/* Canonical Kurklub navigation — identical across all pages */
.kurklub-nav { font-family: 'Space Grotesk', sans-serif; }
.kurklub-nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.kurklub-nav-start {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.kurklub-nav-link {
  color: rgba(161, 161, 170, 1);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.kurklub-nav-link:hover { color: #ffffff; }
.kurklub-nav-active {
  color: #C8A76B !important;
  border-bottom-color: #C8A76B;
}
.kurklub-nav-cta {
  background: linear-gradient(135deg, #C8A76B, #D4B87C);
  color: #000 !important;
  padding: 0.65rem 1.5rem;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: filter 0.25s, transform 0.25s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.kurklub-nav-cta:hover { filter: brightness(1.12); }
.kurklub-nav-cta:active { transform: scale(0.97); }

/* Mobile-specific tweaks — hamburger + logo stay left, CTA stays right */
@media (max-width: 767px) {
  .kurklub-nav-inner { height: 64px; gap: 0.5rem; }
  .kurklub-nav-logo img { height: 1.5rem; }
  .kurklub-nav-cta {
    padding: 0.55rem 0.95rem;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }
}
/* CTA text swap — uses both spans so only one shows per breakpoint */
.kurklub-nav-cta .kurklub-cta-short { display: none; }
@media (max-width: 767px) {
  .kurklub-nav-cta .kurklub-cta-long { display: none; }
  .kurklub-nav-cta .kurklub-cta-short { display: inline; }
}

/* Hamburger — Kurklub brass-accented toggle (OriginUI-inspired) */
.kurklub-hamburger {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(200, 167, 107, 0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, border-color 0.3s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.kurklub-hamburger:hover {
  background: rgba(200, 167, 107, 0.08);
  border-color: rgba(200, 167, 107, 0.55);
}
.kurklub-hamburger:active { transform: scale(0.94); }
.kurklub-hamburger:focus-visible {
  outline: 2px solid #C8A76B;
  outline-offset: 2px;
}
.kurklub-hamburger span {
  display: block;
  width: 18px;
  height: 1.75px;
  background: #eef0fc;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.2s ease, background 0.25s ease;
}
.kurklub-hamburger:hover span { background: #C8A76B; }
/* Morph to X when the menu is open */
.kurklub-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.75px) rotate(45deg);
}
.kurklub-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.kurklub-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.75px) rotate(-45deg);
}
body.kurklub-menu-open { overflow: hidden; }

/* Mobile sidebar menu */
.kurklub-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  pointer-events: none;
}
.kurklub-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.kurklub-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.kurklub-mobile-drawer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 86%;
  max-width: 380px;
  background: linear-gradient(160deg, #0b0c12 0%, #02040a 100%);
  border-right: 1px solid rgba(200, 167, 107, 0.15);
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  box-shadow: 10px 0 60px rgba(0, 0, 0, 0.6);
}
.kurklub-mobile-menu.is-open .kurklub-mobile-drawer {
  transform: translateX(0);
}
.kurklub-mobile-drawer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(200, 167, 107, 0.35), transparent);
  pointer-events: none;
}
.kurklub-mobile-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #C8A76B;
  background: transparent;
  border: 1px solid rgba(200, 167, 107, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.kurklub-mobile-close:hover {
  background: rgba(200, 167, 107, 0.08);
  border-color: rgba(200, 167, 107, 0.5);
  transform: rotate(90deg);
}
.kurklub-mobile-close:focus-visible {
  outline: 2px solid #C8A76B;
  outline-offset: 2px;
}
.kurklub-mobile-logo { margin: 0.25rem 0 2.75rem; display: inline-block; }
.kurklub-mobile-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200, 167, 107, 0.55);
  margin-bottom: 0.9rem;
}
.kurklub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.kurklub-mobile-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: #eef0fc;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(-18px);
  transition: color 0.25s, border-color 0.25s,
              opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.kurklub-mobile-links a::after {
  content: '→';
  font-size: 1.1rem;
  color: rgba(200, 167, 107, 0.35);
  transition: transform 0.25s, color 0.25s;
}
.kurklub-mobile-links a:hover {
  color: #C8A76B;
  border-bottom-color: rgba(200, 167, 107, 0.25);
}
.kurklub-mobile-links a:hover::after {
  color: #C8A76B;
  transform: translateX(4px);
}
.kurklub-mobile-links a.is-active {
  color: #C8A76B;
  border-bottom-color: rgba(200, 167, 107, 0.35);
}
.kurklub-mobile-links a.is-active::after {
  color: #C8A76B;
  content: '●';
  font-size: 0.6rem;
}
.kurklub-mobile-menu.is-open .kurklub-mobile-links a {
  opacity: 1;
  transform: translateX(0);
}
.kurklub-mobile-menu.is-open .kurklub-mobile-links a:nth-child(1) { transition-delay: 0.10s; }
.kurklub-mobile-menu.is-open .kurklub-mobile-links a:nth-child(2) { transition-delay: 0.16s; }
.kurklub-mobile-menu.is-open .kurklub-mobile-links a:nth-child(3) { transition-delay: 0.22s; }
.kurklub-mobile-menu.is-open .kurklub-mobile-links a:nth-child(4) { transition-delay: 0.28s; }
.kurklub-mobile-menu.is-open .kurklub-mobile-links a:nth-child(5) { transition-delay: 0.34s; }
.kurklub-mobile-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Archivo', sans-serif;
  font-size: 0.85rem;
}
.kurklub-mobile-contact {
  color: #C8A76B;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}
.kurklub-mobile-contact:hover { text-decoration: underline; }
.kurklub-mobile-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.kurklub-mobile-legal a {
  color: rgba(161, 161, 170, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.kurklub-mobile-legal a:hover { color: #C8A76B; }

@media (prefers-reduced-motion: reduce) {
  .kurklub-mobile-drawer,
  .kurklub-mobile-menu,
  .kurklub-mobile-links a,
  .kurklub-mobile-close,
  .kurklub-hamburger span {
    transition-duration: 0.01s !important;
    transition-delay: 0s !important;
  }
}

/* Unified footer link state — highlights current page */
.kurklub-footer-link {
  color: rgb(107, 114, 128);
  transition: color 0.25s;
  text-decoration: none;
  font-size: 0.875rem;
}
.kurklub-footer-link:hover { color: #C8A76B; }
.kurklub-footer-link.is-active { color: #ffffff; }

/* Shine-text tagline used in the unified footer */
@keyframes kurklub-shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shine-text {
  background: linear-gradient(90deg, #C8A76B 0%, #F5DDB0 50%, #C8A76B 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: kurklub-shine 4s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .shine-text { animation: none; }
}

/* Gradient-stroke banner — gold infinite left-to-right loop */
.kurklub-banner {
  overflow: hidden;
  background: #000;
  border-top: 1px solid rgba(200, 167, 107, 0.08);
  border-bottom: 1px solid rgba(200, 167, 107, 0.08);
  padding: 28px 0;
  position: relative;
}
.kurklub-banner-track {
  display: flex;
  gap: 4rem;
  animation: kurklub-banner-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.kurklub-banner-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.8vw, 42px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px transparent;
  background: linear-gradient(90deg, #C8A76B, #E8DCC8, #D4B87C, #C8C0B0, #B8945B, #E0D8CC, #C8A76B, #EBC877, #D0C8C0, #C8A76B);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px currentColor;
  animation: kurklub-gradient-shift 8s linear infinite;
}
.kurklub-banner-dot {
  align-self: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #D4B87C, #9A7E4E);
  flex-shrink: 0;
}
@keyframes kurklub-banner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes kurklub-gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Split-scroll "So arbeitet Kurklub" — brass harmonics */
.kurklub-split-section { position: relative; height: 300vh; }
.kurklub-split-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  overflow: hidden;
  background: #02040a;
}
.kurklub-split-col {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.kurklub-split-col-inner {
  position: absolute;
  left: 0;
  right: 0;
  will-change: transform;
}
.kurklub-split-item {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  text-align: center;
  position: relative;
}
.kurklub-split-item-inner { max-width: 36ch; }
.kurklub-split-item .step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C8A76B;
  margin-bottom: 1rem;
  font-weight: 700;
  display: block;
}
.kurklub-split-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.25rem;
  color: #ffffff;
}
.kurklub-split-item p {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  color: #99A1AF;
  line-height: 1.6;
}
/* Brass-harmonic backgrounds — no rainbow */
.kurklub-left-1 { background: linear-gradient(135deg, #0a0b0f 0%, #141108 100%); }
.kurklub-left-2 { background: linear-gradient(135deg, #0e1014 0%, #1a1408 100%); }
.kurklub-left-3 { background: linear-gradient(135deg, #100d08 0%, #1f1810 100%); }
.kurklub-left-4 { background: linear-gradient(135deg, #080a0e 0%, #14100a 100%); }
.kurklub-right-1 { background: linear-gradient(135deg, #0f0a05 0%, #1a1408 100%); }
.kurklub-right-2 { background: linear-gradient(135deg, #0a0e14 0%, #14181a 100%); }
.kurklub-right-3 { background: linear-gradient(135deg, #100c08 0%, #1c1611 100%); }
.kurklub-right-4 { background: linear-gradient(135deg, #0a0e10 0%, #14180c 100%); }
.kurklub-split-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(200,167,107,0.25) 50%, transparent 100%);
  flex-shrink: 0;
}
.kurklub-split-header {
  position: absolute;
  top: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200, 167, 107, 0.7);
  z-index: 5;
  pointer-events: none;
}
.kurklub-split-header-left { left: 2rem; }
.kurklub-split-header-right { right: 2rem; }
@media (max-width: 768px) {
  .kurklub-split-section { height: auto; }
  .kurklub-split-sticky { position: static; height: auto; flex-direction: column; }
  .kurklub-split-col { flex: none; height: auto; }
  .kurklub-split-col-inner { position: relative; }
  .kurklub-split-item { height: auto; min-height: 50vh; padding: 3rem 1.5rem; }
  .kurklub-split-divider { width: 100%; height: 1px; }
  .kurklub-split-header { display: none; }
}

/* Spline lazy-load skeleton */
.kurklub-spline-skeleton {
  background: linear-gradient(135deg, #0a0b0f, #14100a);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.kurklub-spline-skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200, 167, 107, 0.08), transparent 60%);
  animation: kurklub-pulse 3s ease-in-out infinite;
}
.kurklub-spline-skeleton-label {
  color: rgba(200, 167, 107, 0.6);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
@keyframes kurklub-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.9; } }

/* Circular-text progress badge for audit loading */
.kurklub-progress-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 2rem auto;
}
.kurklub-progress-svg {
  width: 100%;
  height: 100%;
  animation: kurklub-spin 12s linear infinite;
}
.kurklub-progress-svg text {
  fill: #C8A76B;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.kurklub-progress-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  pointer-events: none;
}
.kurklub-progress-counter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.25rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kurklub-progress-unit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(200, 167, 107, 0.8);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.kurklub-progress-status {
  margin-top: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #99A1AF;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  min-height: 1.5em;
}
@keyframes kurklub-spin { to { transform: rotate(360deg); } }

/* ── Spotlight card (pricing) ─────────────────────────────── */
.spotlight-card { position: relative; overflow: hidden; }
.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  background: radial-gradient(380px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(200, 167, 107, 0.09), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.spotlight-card:hover::before { opacity: 1; }
.spotlight-card > * { position: relative; z-index: 1; }

/* ── Golden gradient input focus ──────────────────────────── */
.input-gold-wrap { position: relative; }
.input-gold-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  padding: 1px;
  background: linear-gradient(135deg, #C8A76B, #EBC877, #D4B87C, #B8945B);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 2px;
}
.input-gold-wrap:focus-within::after { opacity: 1; }

/* ── Text roll animation (hero headline) ──────────────────── */
@keyframes textRollIn {
  0%   { transform: translateY(108%); opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}
.roll-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05;
}
.roll-inner {
  display: inline-block;
  animation: textRollIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0s);
}
@media (prefers-reduced-motion: reduce) {
  .roll-inner { animation: none; }
}

/* ── Animated stats counter pulse ─────────────────────────── */
.stat-num { font-variant-numeric: tabular-nums; }
.stat-divider { width: 1px; background: linear-gradient(180deg, transparent, rgba(200,167,107,0.25), transparent); }

/* ── Audit modal ───────────────────────────────────────────── */
.audit-modal-open  { opacity: 1 !important; pointer-events: auto !important; }
@keyframes skeletonPulse { 0%,100%{opacity:.35} 50%{opacity:.7} }
.skel { animation: skeletonPulse 1.6s ease-in-out infinite; background: rgba(255,255,255,0.05); border-radius: 4px; }
.skel-delay1 { animation-delay: .15s; }
.skel-delay2 { animation-delay: .3s; }
.skel-delay3 { animation-delay: .45s; }
