:root {
  --bg: #0b1020;
  --ink: #e6e9f2;
  --accent: #2b6ef5;
  --accent-2: #1b4ed6;
}

/* ===== Reset / Globals ===== */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;          /* ✅ verhindert blauen Balken rechts */
  background: radial-gradient(1200px 800px at 10% 10%, #18224a 0%, #0b1020 55%);
  color: var(--ink);
  font-family: sans-serif;
  text-align: center;
}

/* ===== Seite / Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;         /* alles mittig */
  justify-content: flex-start; /* etwas Luft oben */
  gap: 20px;
  padding-top: 20px;
}

/* Globus in eigenem Block */
.hero-globe {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsiver Globus-Container */
.globe-container {
  width: min(90vw, 600px);     /* ✅ auf kleinen Screens nie breiter als Viewport */
  height: min(90vw, 600px);
  margin: 0 auto;
}

/* SVG füllt den Container */
.globe-container svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
  overflow: visible;
}

/* ===== Globus-Styles ===== */
.outline {
  stroke: var(--ink);
  stroke-width: 2;
  fill: none;
}

.continent {
  stroke: var(--ink);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.7;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 4s ease forwards;
}

/* feine Gitterlinien, keine „dicke Kante“ */
.graticule {
  fill: none;
  stroke: rgba(230, 233, 242, 0.22);
  stroke-width: 0.5px;
  shape-rendering: geometricPrecision;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

/* ===== Typografie ===== */
h1 {
  font-size: 2.5rem;
  margin: 0.2em 0;
}

p {
  margin-bottom: 1.5em;
  color: #93a4c8;
}

/* ===== Buttons ===== */
.btn {
  padding: 12px 20px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  min-width: 120px;
}

.hero-buttons {
  display: flex;
  flex-direction: row;         /* ✅ nebeneinander */
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;             /* falls sehr wenig Platz, weicher Umbruch */
  margin-top: 12px;
}

/* Mobil-Feinschliff */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .btn {
    padding: 10px 14px;
    font-size: 14px;
    min-width: 100px;
  }
}