/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: #050816;
  color: white;
}

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

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(16px);

  height: 90px; /* <- WICHTIG */
  display: flex;
  align-items: center;
}
/* ================= NAV ================= */
.nav {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 18px;
}

/* ================= LOGO ================= */

.logo {
  transform: translateX(-18px);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 62px !important;
  width: auto !important;
  display: block;
}

/* ================= NAV LINKS ================= */
.nav-links {
  transform: translateX(-35px);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

/* ================= CONTACT BUTTON ================= */
.contact-btn {
  margin-left: -28px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #7c3aed;

  font-size: 13px;
  font-weight: 500;

  white-space: nowrap;
  display: flex;
  align-items: center;

  transition: 0.2s;
}

.contact-btn:hover {
  background: rgba(124,58,237,0.15);
}

/* ================= HERO ================= */
.hero {
  padding-top: 140px;
  text-align: center;

  max-width: 900px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
}

h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 18px;
}

h1 span {
  background: linear-gradient(90deg, #7c3aed, #4f8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ================= BUTTONS ================= */
.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
}

.primary {
  background: linear-gradient(90deg,#7c3aed,#2563eb);
}

.secondary {
  border: 1px solid rgba(255,255,255,0.2);
}

/* ================= STATUS ================= */
.status {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.25);

  color: rgba(255,255,255,0.75);
}

/* GREEN DOT */
.dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}

/* PULSE ANIMATION */
.dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(34,197,94,0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  70% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
  100% { opacity: 0; }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .header {
    height: 64px;
  }

  .logo img {
    height: 32px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .contact-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  h1 {
    font-size: 34px;
  }

  .buttons {
    flex-direction: column;
  }
  .hero-logo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

.hero-logo img {
  height: 90px;
  width: auto;
  display: block;
}
}