/* ===== Global ===== */
:root {
  --bg: #0a0f14;
  --text: #ffffff;
  --accent: #00e5ff;
  --accent-glow: rgba(0,229,255,0.4);
  --border: rgba(255,255,255,0.08);
}

/* Reset & Layout */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ===== Header ===== */
header.site-header {
  width: 100%;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,15,20,0.92);
  position: fixed;
  top: 0;
  z-index: 100;
}

header.site-header .logo {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, #00e5ff, #00ff9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header.site-header nav a {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 20px;
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.2s;
}

header.site-header nav a:hover { opacity: 1; }

/* ===== Hero Section ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 30px;
  min-height: 100vh;
}

.hero h1 {
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.05;
}

.hero p {
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 600px;
}

/* ===== Trust Punkte ===== */
.trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-weight: 600;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

/* ===== CTA Button ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 15px 38px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 0 24px var(--accent-glow);
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.06);
  box-shadow: 0 0 40px var(--accent);
}

/* Subtext */
.btn-subtext, .btn-subtext * {
  font-size: 14px;
  margin-top: 12px;
  opacity: 0.65;
}

/* ===== Scroll Button ===== */
.scroll-btn {
  all: unset;
  cursor: pointer;
  margin-top: 20px;
  font-size: 32px;
  color: var(--accent);
  opacity: 0.6;
  transition: 0.2s;
  animation: float 1.8s infinite ease-in-out;
}

.scroll-btn:hover {
  opacity: 1;
  transform: translateY(5px);
}

@keyframes float {
  0% { transform: translateY(0px); opacity: 0.3; }
  50% { transform: translateY(8px); opacity: 1; }
  100% { transform: translateY(0px); opacity: 0.3; }
}

/* ===== Sections ===== */
section {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 60px 20px;
}

/* ===== Footer ===== */
footer.site-footer {
  width: 100%;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: rgba(10,15,20,0.95);
}

footer.site-footer .footer-right a {
  color: var(--text);
  opacity: 0.7;
  text-decoration: none;
  font-size: 13px;
  margin: 8px;
}

footer.site-footer .footer-right a:hover { opacity: 1; }

/* ===== Responsive (Hero / Header / Footer) ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  header.site-header nav { display: none; }
  footer.site-footer { padding: 24px; }
}

/* ===== Feature Sections ===== */
.feature-section {
  padding: 36px 20px 6px;
  text-align: center;
}

.feature-section h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.feature-grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 1000px;
  margin: 16px auto 0;
  justify-content: center;
}

.feature-box {
  flex: 1 1 280px;
  max-width: 460px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px 16px;
  text-align: left;
}

.feature-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  opacity: 0.8;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Fade-In */
.fade-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Block */
.center-cta {
  margin-top: 20px;
  margin-bottom: 4px;
}

/* Mobile Tweaks Features */
@media (max-width: 800px) {
  .feature-section {
    padding: 32px 16px 24px;
  }
  .feature-grid-2 {
    margin-top: 12px;
    gap: 10px;
  }
  .feature-box {
    text-align: left;
  }
}

/* ============ Cookie Popup Overlay (fix & mittig, GLOBAL) ============ */
.cookie-overlay {
  display: none;                /* wird per JS auf flex gesetzt */
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

#cookie-banner {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 24px;
  padding: 22px 26px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  animation: fadeUpCookie 0.4s ease;
}

@keyframes fadeUpCookie {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-text {
  font-size: 15px;
  line-height: 1.5;
  color: #111827;
  margin-bottom: 18px;
}

.cookie-text strong {
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-btn {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  opacity: 0.95;
}

.cookie-accept {
  background: #111827;
  color: #ffffff;
}

.cookie-reject {
  background: #e5e7eb;
  color: #111827;
}

/* Erstinfo / Datenschutz / Impressum / Investoren etc. */
#erstinfo h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
}

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.underline { text-decoration: underline; }

#datenschutz ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* Impressum mittig ausrichten */
main.container.section {
  text-align: center;
}

main.container.section p,
main.container.section ul,
main.container.section li {
  text-align: center;
}

/* Farben fixen */
.erstinfo-wrapper,
main.container .section {
  color: #fff !important;
}

.erstinfo-wrapper h1,
.erstinfo-wrapper h2,
.erstinfo-wrapper h3,
.erstinfo-wrapper p,
.erstinfo-wrapper li {
  color: #fff !important;
}

/* ===================== INVESTOREN-SEITE ===================== */
#investoren.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  text-align: center;
}

#investoren h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

#investoren h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

#investoren p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

#investoren .booster {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

#investoren ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0 auto 1rem auto;
  max-width: 800px;
  text-align: left;
}

#investoren li {
  margin-bottom: 0.5rem;
}

/* Logo überall gleich */
.site-header .logo {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  color: #111827;
  display: inline-block;
}

.site-header .logo:hover {
  opacity: 0.8;
}

.section .logo { font-size: 24px !important; }
