/* === CSS RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background-color: #0A0A0F;
  color: #F5F0EB;
  overflow-x: hidden;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === KONTAKTSEITE === */
.contact-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.contact-card {
  max-width: 640px;
  width: 100%;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #A39E99;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A39E99;
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #F5F0EB;
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid rgba(0, 159, 227, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #009fe3;
  box-shadow: 0 0 12px rgba(0, 159, 227, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(163, 158, 153, 0.5);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23009fe3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-select option {
  background: #13131F;
  color: #F5F0EB;
}

/* Honeypot field - hidden from humans, visible to bots */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.alert-success {
  background: rgba(0, 159, 227, 0.15);
  border: 1px solid rgba(0, 159, 227, 0.3);
  color: #F5F0EB;
}

.alert-error {
  background: rgba(230, 0, 126, 0.15);
  border: 1px solid rgba(230, 0, 126, 0.3);
  color: #F5F0EB;
}

.required {
  color: #E6007E;
}

/* === KINETIC SPOTLIGHT — Langsamer, ganzes Wort farbig === */
.kinetic-spotlight {
  background: linear-gradient(
    90deg,
    #009fe3 0%,
    #00bfff 15%,
    #E6007E 30%,
    #ff4db3 45%,
    #009fe3 60%,
    #00bfff 75%,
    #E6007E 90%,
    #009fe3 100%
  );
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: spotlight-sweep 12s linear infinite;
}

@keyframes spotlight-sweep {
  0% { background-position: 0% center; }
  100% { background-position: 400% center; }
}

/* === NAVIGATION === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 159, 227, 0.1);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.7);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #F5F0EB;
}

.nav-link.active {
  color: #F5F0EB;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #009fe3;
}

.nav-cta {
  font-size: 0.875rem;
  padding: 10px 24px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #009fe3;
  transition: all 0.3s ease;
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #0A0A0F;
  background-image: radial-gradient(circle at center, rgba(0, 159, 227, 0.15) 0%, transparent 70%);
}

.mobile-menu.open {
  display: flex;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
}

.mobile-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: #F5F0EB;
  transition: color 0.3s ease;
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.mobile-link:nth-child(2) { animation-delay: 0s; }
.mobile-link:nth-child(3) { animation-delay: 0.08s; }
.mobile-link:nth-child(4) { animation-delay: 0.16s; }
.mobile-link:nth-child(5) { animation-delay: 0.24s; }
.mobile-link:nth-child(6) { animation-delay: 0.32s; }

.mobile-link:hover {
  color: #009fe3;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  opacity: 0;
  animation: heroFadeIn 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}

.hero-subline {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.45;
  color: #A39E99;
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
}

.hero-teaser {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(245, 240, 235, 0.7);
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 1.0s forwards;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 1.4s forwards;
  transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
  opacity: 0 !important;
}

.scroll-line {
  width: 2px;
  height: 32px;
  background: #009fe3;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A39E99;
  opacity: 0.5;
}

/* === SECTIONS === */
.section {
  position: relative;
  z-index: 1;
  padding: 120px 24px;
  scroll-margin-top: 72px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}

.section-subline {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(245, 240, 235, 0.7);
  margin-top: 16px;
}

/* === GRID === */
.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* === GLASSMORPHISM CARDS === */
.glass-card {
  background: rgba(19, 19, 31, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 159, 227, 0.15);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.glass-card:hover {
  border-color: rgba(230, 0, 126, 0.3);
  box-shadow: 0 12px 48px rgba(230, 0, 126, 0.15);
  transform: translateY(-4px);
}

.pillar-icon {
  margin-bottom: 24px;
  flex-shrink: 0;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #F5F0EB;
  margin-bottom: 16px;
}

.card-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #A39E99;
  flex-grow: 1;
}

/* === TAGS === */
.tag {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 4px 12px;
  margin-top: auto;
}

.tag-cyan {
  background: rgba(0, 159, 227, 0.15);
  color: #009fe3;
}

.tag-magenta {
  background: rgba(230, 0, 126, 0.15);
  color: #E6007E;
}

/* === BUTTONS === */
.magnetic-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 14px 32px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s ease,
              background-color 0.3s ease;
}

.magnetic-btn-primary {
  background: #E6007E;
  color: #F5F0EB;
}

.magnetic-btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 30px rgba(230, 0, 126, 0.5);
}

.magnetic-btn-primary:active {
  transform: scale(0.98);
}

.magnetic-btn-secondary {
  background: transparent;
  color: #009fe3;
  border: 2px solid #009fe3;
}

.magnetic-btn-secondary:hover {
  background: #009fe3;
  color: #F5F0EB;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 20px rgba(0, 159, 227, 0.4);
}

.magnetic-btn-secondary:active {
  transform: scale(0.98);
}

/* === LINK BUTTONS === */
.link-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  cursor: pointer;
  margin-top: auto;
  padding-top: 8px;
}

.link-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
}

.link-btn:hover::after {
  width: 100%;
}

.link-btn-cyan {
  color: #009fe3;
}

.link-btn-cyan::after {
  background: #009fe3;
}

.link-btn-cyan:hover {
  color: #F5F0EB;
}

.link-btn-magenta {
  color: #E6007E;
}

.link-btn-magenta::after {
  background: #E6007E;
}

.link-btn-magenta:hover {
  color: #F5F0EB;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 48px;
}

.timeline-line {
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #009fe3 0%, #E6007E 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #009fe3;
  box-shadow: 0 0 12px rgba(0, 159, 227, 0.6);
}

.timeline-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #F5F0EB;
  margin-bottom: 12px;
}

/* === ENSEMBLE VISUAL === */
.ensemble-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* === B2B SECTION === */
.b2b-section {
  background: linear-gradient(135deg, #0A0A0F 0%, #13131F 100%);
}

.b2b-card {
  position: relative;
  overflow: hidden;
}

.b2b-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
}

.b2b-target {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(163, 158, 153, 0.6);
  margin: 16px 0;
}

/* === MITSPIELEN === */
.mitspielen-section {
  background: #0A0A0F;
  background-image: radial-gradient(circle at center, rgba(230, 0, 126, 0.08) 0%, transparent 60%);
  padding: 140px 24px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.steps-line {
  position: absolute;
  top: 24px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, #009fe3 0%, #E6007E 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.steps.revealed .steps-line {
  transform: scaleX(1);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #009fe3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #009fe3;
  margin-bottom: 16px;
  background: #0A0A0F;
  box-shadow: 0 0 12px rgba(0, 159, 227, 0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0);
  z-index: 2;
  position: relative;
}

.steps.revealed .step-circle {
  transform: scale(1);
}

.steps.revealed .step:nth-child(2) .step-circle { transition-delay: 0.15s; }
.steps.revealed .step:nth-child(3) .step-circle { transition-delay: 0.3s; }
.steps.revealed .step:nth-child(4) .step-circle { transition-delay: 0.45s; }

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #F5F0EB;
  margin-bottom: 8px;
}

/* === SCROLL REVEAL === */
.reveal-element {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === FOOTER === */
.footer {
  position: relative;
  z-index: 1;
  background: #0A0A0F;
  background-image: radial-gradient(circle at 50% 0%, rgba(230, 0, 126, 0.05) 0%, transparent 50%);
  padding: 80px 24px 40px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #A39E99;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #009fe3;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links a {
  color: #A39E99;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #009fe3;
}

.footer-bottom {
  border-top: 1px solid rgba(163, 158, 153, 0.15);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A39E99;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-legal:hover {
  color: #F5F0EB;
}

/* === KEYFRAMES === */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .kinetic-spotlight {
    animation: none;
    background: linear-gradient(90deg, #009fe3 0%, #E6007E 100%);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .reveal-element {
    transition: none;
  }

  .hero-content,
  .hero-subline,
  .hero-teaser,
  .hero-buttons,
  .scroll-indicator {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  .mitspielen-section {
    padding: 60px 20px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .glass-card {
    padding: 28px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps-line {
    display: none;
  }

  .step-circle {
    transform: scale(1) !important;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .b2b-number {
    font-size: 2.5rem;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}
