:root{
  --bg:#050914;
  --bg2:#0a1226;
  --card:rgba(18,28,63,.72);
  --card2:rgba(18,28,63,.55);
  --text:#e9ecff;
  --muted:rgba(233,236,255,.74);
  --line:rgba(255,255,255,.10);
  --cyan:#7cf7ff;
  --violet:#9b7cff;
  --shadow: 0 18px 55px rgba(0,0,0,.38);
  --radius:0px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);

  /* stabiler, einheitlicher Background, bleibt beim Scrollen stehen */
  background:
    radial-gradient(1200px 900px at 25% 10%, rgba(124,247,255,.10), transparent 65%),
    radial-gradient(1200px 900px at 85% 20%, rgba(155,124,255,.09), transparent 68%),
    radial-gradient(900px 700px at 55% 85%, rgba(255,255,255,.03), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;

  line-height:1.55;
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto}

.container{max-width:1100px; margin:0 auto; padding:0 18px}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:18px; top:18px; width:auto; height:auto; padding:10px 12px;
  background:#11183a; border:1px solid var(--line); border-radius:0;
  z-index:9999;
}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,11,22,.70);
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius:0;
}
.header__row{
  display:flex; align-items:center; justify-content:space-between;
  min-height:64px;
}

.brand{display:flex; gap:10px; align-items:center}
.brand__mark{
  width:42px; height:42px; display:grid; place-items:center;
  border-radius:0;
  background: linear-gradient(135deg, rgba(124,247,255,.22), rgba(155,124,255,.22));
  border: 1px solid rgba(255,255,255,.12);
  letter-spacing:.5px;
}
.brand__text{font-weight:700; letter-spacing:.2px}

.nav{
  display:flex; gap:18px; align-items:center;
}
.nav a{
  padding:8px 10px;
  border-radius:0;
}
.nav a.isActive{
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
}

.navToggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.12);
  border-radius:0;
  padding:10px;
}
.navToggle span{
  display:block; width:22px; height:2px; background:rgba(233,236,255,.88);
  margin:5px 0; border-radius:0;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:0;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  text-decoration:none;
  cursor:pointer;
}
.btn:hover{background: rgba(255,255,255,.11); text-decoration:none}
.btn--ghost{
  background: transparent;
  box-shadow:none;
}
.btn--small{
  padding:9px 12px;
  border-radius:0;
  font-size:14px;
}

.hero{padding:42px 0 26px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:22px;
  align-items:start;
}
.hero__copy h1{margin:0 0 14px; font-size:38px; line-height:1.1}
.hero__copy p{margin:0 0 14px; color:var(--muted)}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 12px}

.lead{color:var(--muted); font-size:18px}

.card{
  background: var(--card);
  border:1px solid rgba(255,255,255,.12);
  border-radius:0;
  box-shadow: var(--shadow);
  padding:18px;
}
.h3{margin:0 0 10px; font-size:18px}
.muted{color:var(--muted)}

.checks{
  margin:14px 0 0;
  padding:0 0 0 18px;
  color:var(--muted);
}
.checks li{margin:6px 0}

.search{display:flex; gap:10px; margin:14px 0 12px}
.search input{
  flex:1;
  padding:12px 12px;
  border-radius:0;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
.search input::placeholder{color:rgba(233,236,255,.55)}

.pillRow{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color:var(--text);
  padding:8px 12px;
  border-radius:0;
  cursor:pointer;
}
.pill:hover{background: rgba(255,255,255,.08)}

.notice{
  margin-top:12px;
  padding:12px 12px;
  border-radius:0;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color:rgba(233,236,255,.78);
}

.mapSection{padding:18px 0 58px}

.sectionHead{margin-bottom:14px}
.sectionHead h2{margin:0 0 8px; font-size:26px}
.sectionHead p{margin:0; color:var(--muted)}

.mapFrame{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 25px 60px rgba(0,0,0,.45);
  background: rgba(0,0,0,.18);
  border-radius:0;
}

/* kein extra Glow/Noise in der Box, sonst wirkt es beim Scrollen wie "neu" */
.mapFrame::before{ content:none; }
.mapFrame::after{ content:none; }

.mapUi{
  position:absolute;
  left:14px; right:14px; top:14px;
  display:flex; justify-content:space-between; gap:12px;
  z-index:3;
}
.mapUi__left,.mapUi__right{display:flex; gap:10px; align-items:center}

.badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:0;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color:rgba(233,236,255,.85);
  font-size:13px;
}

#globeCanvas{
  width:100%;
  height: clamp(420px, 55vh, 620px);
  display:block;
  position:relative;
  z-index:2;
  background: transparent !important;
}

.mapInfo{
  position:absolute;
  left:14px; bottom:14px;
  width:min(420px, calc(100% - 28px));
  z-index:4;
  background: rgba(18,28,63,.78);
  border:1px solid rgba(255,255,255,.12);
  border-radius:0;
  box-shadow: 0 16px 45px rgba(0,0,0,.35);
  padding:14px;
}
.mapInfo__title{font-weight:800; margin-bottom:6px}
.mapInfo__text{color:var(--muted); margin-bottom:10px}
.mapInfo__actions{display:flex; gap:10px; flex-wrap:wrap}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:16px;
}

.ctaRow{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  margin-top:16px;
}
.cta{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(18,28,63,.52);
  border-radius:0;
  padding:18px;
}
.cta--img{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:center;
}
.cta__buttons{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

.fakeShot{
  border-radius:0;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  overflow:hidden;
  height:170px;
}
.fakeShot__top{height:30px; background: rgba(255,255,255,.06)}
.fakeShot__body{height:140px; background: linear-gradient(135deg, rgba(124,247,255,.10), rgba(155,124,255,.10))}

.tableWrap{margin-top:18px}
table{
  width:100%;
  border-collapse: collapse;
  border:1px solid rgba(255,255,255,.12);
  border-radius:0;
  overflow:hidden;
  background: rgba(0,0,0,.18);
}
th,td{padding:12px 12px; border-bottom:1px solid rgba(255,255,255,.08); text-align:left}
th{background: rgba(255,255,255,.06)}
tr:last-child td{border-bottom:none}

.code{
  padding:14px;
  border-radius:0;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  overflow:auto;
}

.page{padding:32px 0 56px}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(7,11,22,.72);
  backdrop-filter: blur(10px);
  padding:26px 0;
  border-radius:0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr .9fr;
  gap:14px;
  align-items:start;
}
.footer__brand{font-weight:800; margin-bottom:8px}
.footer__links{display:flex; flex-wrap:wrap; gap:10px}
.footer__powered a{text-decoration:none}
.footer__powered a:hover{text-decoration:underline}

.srOnly{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

@media (max-width: 900px){
  .hero__grid{grid-template-columns:1fr; gap:16px}
  .ctaRow{grid-template-columns:1fr}
  .cta--img{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .navToggle{display:inline-flex}
  .nav{
    position:absolute;
    right:18px; top:64px;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:12px;
    border-radius:0;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(7,11,22,.92);
    box-shadow: 0 18px 55px rgba(0,0,0,.45);
    display:none;
    min-width: 220px;
  }
  .nav.isOpen{display:flex}
}
