/* ========================================
   EOWA — Deep Space Design System
   Vier Elemente · Kosmische Ästhetik
   ======================================== */

/* ---- Variablen ---- */
:root {
  --bg-void: #050510;
  --bg-deep: #0a0a1a;
  --bg-mid: #12122a;
  --bg-surface: #1a1a2e;
  --bg-elevated: #222244;

  /* Elemente */
  --water: #4fc3f7;
  --water-deep: #0288d1;
  --water-glow: rgba(79, 195, 247, 0.25);
  --fire: #ff6d00;
  --fire-warm: #ffd54f;
  --fire-glow: rgba(255, 109, 0, 0.25);
  --earth: #69f0ae;
  --earth-deep: #2e7d32;
  --earth-glow: rgba(105, 240, 174, 0.25);
  --air: #b388ff;
  --air-soft: #e0e0e0;
  --air-glow: rgba(179, 136, 255, 0.25);

  --text: #e8e8f0;
  --text-dim: #8888aa;
  --text-bright: #ffffff;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.12);

  --font-display: 'Exo 2', 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Rajdhani', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;

  --max-width: 72rem;
  --content-width: 52rem;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-void);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

/* ========================================
   NAVIGATION
   ======================================== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(5, 5, 16, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--water), var(--air));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-bright);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--water), var(--air));
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dim);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a::after { display: none; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #0e0e2a 0%, var(--bg-void) 70%);
}

/* Sternenhimmel — reines CSS */
.starfield {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
}

.stars-small {
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 55% 15%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 85% 40%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 20% 90%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 45% 50%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 92% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 5% 55%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 65% 35%, rgba(255,255,255,0.4), transparent);
  background-size: 300px 300px;
  animation: drift 120s linear infinite;
}

.stars-medium {
  background-image:
    radial-gradient(1.5px 1.5px at 25% 35%, rgba(79,195,247,0.5), transparent),
    radial-gradient(1.5px 1.5px at 60% 70%, rgba(179,136,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 80% 25%, rgba(255,213,79,0.4), transparent),
    radial-gradient(1.5px 1.5px at 40% 85%, rgba(105,240,174,0.4), transparent),
    radial-gradient(1.5px 1.5px at 15% 60%, rgba(255,255,255,0.5), transparent);
  background-size: 400px 400px;
  animation: drift 180s linear infinite reverse;
}

.stars-large {
  background-image:
    radial-gradient(2px 2px at 50% 50%, rgba(79,195,247,0.7), transparent),
    radial-gradient(2.5px 2.5px at 20% 30%, rgba(255,213,79,0.5), transparent),
    radial-gradient(2px 2px at 75% 75%, rgba(179,136,255,0.5), transparent);
  background-size: 500px 500px;
  animation: twinkle 4s ease-in-out infinite alternate, drift 240s linear infinite;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-300px, -200px); }
}

@keyframes twinkle {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}

.hero-pre {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dim);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--water) 0%, var(--air) 40%, var(--fire-warm) 70%, var(--fire) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  line-height: 1;
  margin-bottom: 0.3rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-divider {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  padding: 0.8rem 2rem;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  animation: fadeInUp 1s ease 1s both;
}

.hero-cta:hover {
  border-color: var(--water);
  box-shadow: 0 0 20px var(--water-glow), inset 0 0 20px rgba(79,195,247,0.05);
  color: var(--text-bright);
}

.cta-arrow {
  font-size: 1.2rem;
  animation: float 2s ease-in-out infinite;
}

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

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

/* ---- Element-Punkte (wiederverwendbar) ---- */
.element-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.element-water { background: var(--water); box-shadow: 0 0 8px var(--water-glow); }
.element-fire { background: var(--fire); box-shadow: 0 0 8px var(--fire-glow); }
.element-earth { background: var(--earth); box-shadow: 0 0 8px var(--earth-glow); }
.element-air { background: var(--air); box-shadow: 0 0 8px var(--air-glow); }

/* ========================================
   SECTIONS — Allgemein
   ======================================== */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--text-bright);
}

.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--water), var(--earth));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 38rem;
  margin: 0 auto 3rem;
}

/* ========================================
   VISION
   ======================================== */
.section-vision {
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 50%, var(--bg-void) 100%);
}

.vision-text {
  max-width: 40rem;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.vision-text p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}

.vision-text strong {
  color: var(--text-bright);
}

/* ========================================
   VIER ELEMENTE
   ======================================== */
.section-elements {
  background: var(--bg-deep);
}

.elements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.element-card {
  flex: 0 1 280px;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.element-card:hover {
  transform: translateY(-4px);
}

.element-card-water:hover { border-color: var(--water); box-shadow: 0 8px 32px var(--water-glow); }
.element-card-fire:hover  { border-color: var(--fire);  box-shadow: 0 8px 32px var(--fire-glow);  }
.element-card-earth:hover { border-color: var(--earth); box-shadow: 0 8px 32px var(--earth-glow); }
.element-card-air:hover   { border-color: var(--air);   box-shadow: 0 8px 32px var(--air-glow);   }

.element-symbol {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
}

.element-svg {
  width: 100%;
  height: 100%;
}

.element-card-water .element-svg { color: var(--water); }
.element-card-fire .element-svg  { color: var(--fire);  }
.element-card-earth .element-svg { color: var(--earth); }
.element-card-air .element-svg   { color: var(--air);   }

.element-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.element-card-water h3 { color: var(--water); }
.element-card-fire h3  { color: var(--fire);  }
.element-card-earth h3 { color: var(--earth); }
.element-card-air h3   { color: var(--air);   }

.element-role {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.element-desc {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}

.element-desc strong {
  color: var(--text-bright);
}

/* ========================================
   WELTKARTE
   ======================================== */
.section-map {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-void) 100%);
  padding-bottom: 4rem;
}

.section-map .section-inner {
  max-width: var(--max-width);
}

.map-container {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(79, 195, 247, 0.05);
}

#world-map {
  display: block;
  width: 100%;
  height: auto;
}

.map-connection {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
  stroke-dasharray: 6 6;
  transition: stroke 0.4s, stroke-width 0.3s, stroke-dasharray 0.3s;
}

.map-connection.active {
  stroke: rgba(79, 195, 247, 0.4);
  stroke-width: 1.5;
  stroke-dasharray: none;
}

.map-node { cursor: pointer; }

.map-glow {
  opacity: 0;
  transition: opacity 0.4s;
}

.map-node:hover .map-glow,
.map-node.active .map-glow {
  opacity: 1;
}

.map-dot {
  transition: r 0.3s;
}

.map-node:hover .map-dot {
  r: 14;
}

.map-label {
  font-family: var(--font-display);
  fill: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  text-anchor: middle;
  pointer-events: none;
  transition: fill 0.3s;
}

.map-node:hover .map-label {
  fill: var(--text-bright);
}

.map-info {
  max-width: var(--max-width);
  margin: 1rem auto 0;
  padding: 1.2rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  color: var(--text);
  font-size: 0.95rem;
}

/* ========================================
   KONTINENT-OVERLAY
   ======================================== */
.continent-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 5, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
  animation: overlayIn 0.3s ease;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.continent-overlay-inner {
  max-width: 48rem;
  width: 100%;
  margin-top: 3rem;
  position: relative;
}

.close-button {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--text-dim);
  transition: color 0.2s, border-color 0.2s;
  z-index: 2001;
}

.close-button:hover {
  color: var(--text-bright);
  border-color: var(--water);
}

.continent-hero {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  border-radius: 16px;
}

.continent-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.continent-hero .theme {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.continent-description {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.continent-guardian {
  padding: 1.8rem;
  background: var(--bg-surface);
  border-radius: 14px;
  margin-bottom: 2.5rem;
}

.continent-guardian-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.continent-guardian h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.continent-guardian .domain {
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 0.3rem;
}

.continent-projects {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.continent-projects li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}

.continent-neighbors {
  margin-top: 2rem;
}

.continent-neighbors h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-bright);
}

.neighbor-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.neighbor-link {
  font-family: var(--font-heading);
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.neighbor-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* ========================================
   HÜTER DER ERDE
   ======================================== */
.section-guardians {
  background: var(--bg-void);
}

.section-guardians .section-inner {
  max-width: var(--max-width);
}

.section-guardians .section-subtitle strong {
  color: var(--text-bright);
}

.guardian-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.guardian-card {
  flex: 0 1 320px;
  padding: 1.8rem;
  border-radius: 14px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  cursor: default;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.guardian-card:hover {
  transform: translateY(-3px);
}

.guardian-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guardian-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}

.guardian-card:hover .guardian-icon {
  box-shadow: 0 0 20px var(--card-glow);
}

.guardian-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.guardian-origin {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.guardian-role-line {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.guardian-project-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.guardian-project-list li {
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guardian-project-list li .bullet {
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ---- Unity-Karte (8. Karte: Die Verbindung) ---- */
.guardian-card-unity {
  background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-surface) 100%);
  border: 1px solid rgba(179, 136, 255, 0.15);
}

.guardian-icon-unity {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex-wrap: wrap;
  background: rgba(179, 136, 255, 0.08);
  border: 2px solid rgba(179, 136, 255, 0.4);
  flex-shrink: 0;
  padding: 6px;
}

.guardian-icon-unity .element-dot {
  width: 8px;
  height: 8px;
}

.unity-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--water), var(--air), var(--fire-warm));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.unity-role-line {
  color: var(--text-dim) !important;
  font-style: italic;
}

.unity-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

/* ========================================
   MANIFEST
   ======================================== */
.section-manifest {
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 30%, var(--bg-deep) 70%, var(--bg-void) 100%);
}

.manifest-content {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manifest-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  padding: 2rem 0;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.manifest-quote::before,
.manifest-quote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--water), transparent);
}

.manifest-quote::before { margin-bottom: 1.5rem; }
.manifest-quote::after { margin-top: 1.5rem; }

.manifest-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.manifest-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.manifest-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, var(--water), var(--air));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
  padding-top: 0.2rem;
}

.manifest-point h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.manifest-point p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
}

.manifest-point em {
  font-style: italic;
  color: var(--text-bright);
}

/* ========================================
   WIEDERGEBURT / ABSCHLUSS
   ======================================== */
.section-rebirth {
  background: radial-gradient(ellipse at 50% 80%, #0e0e2a 0%, var(--bg-void) 70%);
  padding: 8rem 2rem;
}

.rebirth-content {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.rebirth-elements {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.rebirth-elements .element-dot {
  width: 12px;
  height: 12px;
}

.rebirth-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.rebirth-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--water-deep), var(--air));
  color: var(--text-bright);
  transition: transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--water-glow);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: var(--bg-void);
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--water), var(--air));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.footer-elements {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ========================================
   SCROLL REVEAL (via JS)
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Utility ---- */
.hidden {
  display: none !important;
}
