*{box-sizing:border-box}
:root{
  --bg:#101d2c;
  --bg2:#17283b;
  --text:#eaf6ff;
  --muted:#9eb7ca;
  --blue:#25b7ff;
  --blue2:#0f8bd3;
  --green:#42d56f;
  --card:rgba(255,255,255,.92);
  --dark-card:rgba(16,29,44,.72);
  --line:rgba(165,213,245,.2);
  --shadow:0 30px 90px rgba(0,0,0,.35);
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 62% 12%,rgba(255,255,255,.32),transparent 10%),
    radial-gradient(circle at 88% 32%,rgba(37,183,255,.34),transparent 22%),
    linear-gradient(180deg,#15263a 0%,#0f1d2d 0 62%,#dcecf5 72%,#f8fbff 100%);
  color:var(--text);
  overflow-x:hidden;
}
.page-glow{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 74% 20%,rgba(37,183,255,.24),transparent 18%),
    radial-gradient(circle at 42% 24%,rgba(255,255,255,.12),transparent 22%),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(180deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:auto,auto,42px 42px,42px 42px;
  opacity:.55;
  z-index:-1;
}
.site-header{
  width:min(1220px,calc(100% - 40px));
  margin:0 auto;
  padding:26px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
}
.brand img{
  width:210px;
  height:auto;
  filter:drop-shadow(0 12px 30px rgba(37,183,255,.3));
}
.nav{
  display:flex;
  gap:10px;
  align-items:center;
}
.nav a{
  color:#cfeaff;
  text-decoration:none;
  font-weight:800;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  text-shadow:0 1px 10px rgba(0,0,0,.3);
}
.nav a:hover{
  border-color:rgba(125,211,252,.35);
  background:rgba(255,255,255,.08);
}
.hero{
  width:min(1220px,calc(100% - 40px));
  min-height:690px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.94fr 1.06fr;
  align-items:center;
  gap:28px;
  padding:56px 0 92px;
}
.pill{
  display:inline-flex;
  color:#bdeaff;
  background:rgba(14,165,233,.14);
  border:1px solid rgba(125,211,252,.32);
  padding:9px 13px;
  border-radius:999px;
  font-weight:900;
  font-size:.88rem;
  box-shadow:0 14px 40px rgba(14,165,233,.12);
}
h1{
  margin:24px 0 8px;
  font-size:clamp(3.8rem,8vw,8rem);
  line-height:.86;
  letter-spacing:-.08em;
  color:#132744;
  text-shadow:
    0 1px 0 rgba(255,255,255,.12),
    0 0 44px rgba(162,218,255,.45);
}
.claim{
  font-size:clamp(1.8rem,3.2vw,3.1rem);
  line-height:1.05;
  letter-spacing:-.055em;
  color:#d7efff;
  text-shadow:0 10px 50px rgba(0,0,0,.35);
  margin:0 0 20px;
  font-weight:900;
}
.intro{
  color:#d3e7f5;
  font-size:1.17rem;
  line-height:1.7;
  max-width:620px;
  text-shadow:0 8px 30px rgba(0,0,0,.4);
}
.hero-bullets{
  display:grid;
  gap:10px;
  margin:26px 0 30px;
}
.hero-bullets span{
  display:flex;
  align-items:center;
  gap:10px;
  color:#d9f3ff;
  font-weight:800;
}
.hero-bullets span::before{
  content:"";
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  box-shadow:0 0 22px rgba(37,183,255,.75);
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:15px;
  text-decoration:none;
  font-weight:950;
}
.btn.primary{
  color:white;
  background:linear-gradient(135deg,var(--blue),#0577bd);
  box-shadow:0 18px 45px rgba(37,183,255,.26);
}
.btn.ghost{
  color:#dff5ff;
  border:1px solid rgba(186,230,253,.35);
  background:rgba(255,255,255,.08);
}
.hero-visual img{
  width:100%;
  height:auto;
  display:block;
  filter:drop-shadow(0 40px 80px rgba(0,0,0,.35));
}
.intro-section,
.modules,
.roadmap,
.changelog,
.contact{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto;
}
.intro-section{
  color:#16304a;
  text-align:center;
  padding:82px 0 58px;
  background:rgba(248,251,255,.92);
  border:1px solid rgba(148,194,220,.38);
  border-radius:34px;
  box-shadow:0 24px 70px rgba(15,52,80,.10);
  margin-top:20px;
}
.intro-section h2,
.section-title h2,
.contact h2{
  margin:0 0 18px;
  font-size:clamp(2.2rem,4.6vw,4.4rem);
  line-height:.96;
  letter-spacing:-.06em;
  color:#0b2a44;
}
.intro-section p{
  max-width:850px;
  margin:0 auto 18px;
  color:#33556f;
  line-height:1.75;
  font-size:1.1rem;
}
.modules{
  padding:70px 0 90px;
}
.section-title{
  text-align:center;
  margin-bottom:34px;
  color:#17314b;
  background:rgba(248,251,255,.72);
  border:1px solid rgba(148,194,220,.25);
  border-radius:26px;
  padding:26px 18px;
  box-shadow:0 18px 52px rgba(15,52,80,.08);
}
.section-title span,
.mini-label{
  display:inline-flex;
  color:#0378bc;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
  margin-bottom:12px;
}
.module-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.module-card{
  background:rgba(255,255,255,.94);
  border:1px solid rgba(148,194,220,.45);
  border-radius:22px;
  min-height:248px;
  padding:28px 24px;
  text-align:center;
  box-shadow:0 20px 55px rgba(15,52,80,.1);
  transition:.2s ease;
}
.module-card:hover{
  transform:translateY(-5px);
  box-shadow:0 30px 70px rgba(15,52,80,.16);
}
.module-card img{
  width:78px;
  height:78px;
  display:block;
  margin:0 auto 18px;
}
.module-card h3{
  color:#08233e;
  font-size:1.38rem;
  margin:0 0 10px;
}
.module-card p{
  color:#49677d;
  line-height:1.55;
  margin:0;
}
.muted-card{
  opacity:.82;
}
.roadmap,
.changelog,
.contact{
  padding:82px 0;
  color:#16304a;
}
.roadmap-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.road-item{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(148,194,220,.45);
  border-radius:22px;
  padding:24px;
  box-shadow:0 18px 48px rgba(15,52,80,.08);
}
.road-item.current{
  border-color:rgba(34,197,94,.55);
  box-shadow:0 24px 62px rgba(34,197,94,.13);
}
.road-item strong{
  color:#0588cc;
}
.road-item h3{
  color:#08233e;
  margin:10px 0;
}
.road-item p{
  color:#49677d;
  line-height:1.6;
}
.release-list{
  display:grid;
  gap:14px;
}
.release{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:20px;
  align-items:start;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(148,194,220,.45);
  border-radius:22px;
  padding:22px;
}
.release.active{
  border-color:rgba(37,183,255,.58);
  box-shadow:0 24px 58px rgba(37,183,255,.12);
}
.release-version{
  color:#0378bc;
  font-weight:950;
  font-size:1.4rem;
}
.release h3{
  margin:0 0 8px;
  color:#08233e;
}
.release p{
  margin:0;
  color:#49677d;
  line-height:1.65;
}
.contact{
  display:grid;
  grid-template-columns:1fr .82fr;
  gap:30px;
  align-items:start;
}
.contact p{
  color:#49677d;
  line-height:1.75;
  font-size:1.08rem;
}
.contact-card{
  background:linear-gradient(145deg,#10263d,#071827);
  color:#eaf6ff;
  border:1px solid rgba(125,211,252,.24);
  border-radius:26px;
  padding:30px;
  box-shadow:var(--shadow);
}
.contact-card h3{
  margin:0 0 12px;
  font-size:1.7rem;
}
.contact-card p{
  color:#c7e3f5;
}
.contact-card a{
  display:block;
  color:#67d8ff;
  font-weight:950;
  font-size:1.2rem;
  text-decoration:none;
  margin:12px 0 18px;
}
.contact-card small{
  display:block;
  color:#97b7ca;
  line-height:1.5;
}
.site-footer{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto;
  padding:30px 0 42px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  color:#557187;
  border-top:1px solid rgba(148,194,220,.35);
}
@media(max-width:980px){
  .site-header{align-items:flex-start;flex-direction:column}
  .nav{flex-wrap:wrap}
  .hero{grid-template-columns:1fr;min-height:auto;padding-top:30px}
  h1{color:#dff4ff}
  .module-grid{grid-template-columns:repeat(2,1fr)}
  .roadmap-grid{grid-template-columns:repeat(2,1fr)}
  .contact{grid-template-columns:1fr}
}
@media(max-width:640px){
  .site-header,.hero,.intro-section,.modules,.roadmap,.changelog,.contact,.site-footer{width:min(100% - 24px,1120px)}
  .brand img{width:180px}
  .nav a{padding:8px 9px;font-size:.9rem}
  .module-grid,.roadmap-grid{grid-template-columns:1fr}
  .release{grid-template-columns:1fr}
  .hero{padding-bottom:56px}
}


/* v4 contrast fix */
#was-ist-shiny-control,
#module,
#roadmap,
#changelog,
#kontakt{
  position:relative;
  z-index:2;
}

#module .section-title span,
#roadmap .section-title span,
#changelog .section-title span{
  color:#0284c7;
}

#module .section-title h2,
#roadmap .section-title h2,
#changelog .section-title h2{
  text-shadow:none;
}

#module .section-title,
#roadmap .section-title,
#changelog .section-title{
  backdrop-filter:blur(8px);
}

@media(max-width:640px){
  .intro-section{
    border-radius:24px;
    padding-left:18px;
    padding-right:18px;
  }
}


/* v5 transition fix */
body{
  background:
    radial-gradient(circle at 62% 12%,rgba(255,255,255,.32),transparent 10%),
    radial-gradient(circle at 88% 32%,rgba(37,183,255,.34),transparent 22%),
    linear-gradient(180deg,#15263a 0%,#0f1d2d 62%,#dcecf5 74%,#f8fbff 100%) !important;
}

.modules{
  padding-bottom:150px;
}

.roadmap{
  margin-top:0;
  padding-top:90px;
}

#module .section-title{
  background:rgba(9,25,42,.56);
  border-color:rgba(125,211,252,.22);
  color:#eaf6ff;
  box-shadow:0 24px 70px rgba(0,0,0,.18);
}

#module .section-title h2{
  color:#eaf6ff;
  text-shadow:0 18px 60px rgba(37,183,255,.24);
}

#module .section-title span{
  color:#38bdf8;
}

.module-card{
  position:relative;
  z-index:3;
}

.roadmap .section-title,
.changelog .section-title{
  background:rgba(248,251,255,.86);
}

@media(max-width:980px){
  body{
    background:
      radial-gradient(circle at 62% 10%,rgba(255,255,255,.24),transparent 10%),
      radial-gradient(circle at 88% 26%,rgba(37,183,255,.28),transparent 22%),
      linear-gradient(180deg,#15263a 0%,#0f1d2d 58%,#dcecf5 72%,#f8fbff 100%) !important;
  }
}


/* v6 legal pages */
.site-footer a{
  color:inherit;
  text-decoration:none;
  font-weight:800;
}
.site-footer a:hover{
  color:#0284c7;
}
.legal-page{
  width:min(980px,calc(100% - 40px));
  margin:40px auto 80px;
  background:rgba(248,251,255,.96);
  border:1px solid rgba(148,194,220,.42);
  border-radius:30px;
  padding:42px;
  color:#14304a;
  box-shadow:0 28px 80px rgba(15,52,80,.16);
}
.legal-page h1{
  color:#0b2a44;
  font-size:clamp(2.4rem,5vw,4.8rem);
  line-height:.95;
  letter-spacing:-.06em;
  margin:0 0 22px;
  text-shadow:none;
}
.legal-page h2{
  color:#0b2a44;
  margin:34px 0 12px;
  font-size:1.55rem;
}
.legal-page p,
.legal-page li{
  color:#395a73;
  line-height:1.7;
  font-size:1.02rem;
}
.legal-page a{
  color:#0284c7;
  font-weight:850;
}
.legal-box{
  background:#eef8ff;
  border:1px solid #bae6fd;
  border-radius:20px;
  padding:18px;
  margin:20px 0;
}
.placeholder{
  display:inline-block;
  background:#fff7ed;
  color:#9a3412;
  border:1px solid #fed7aa;
  border-radius:8px;
  padding:2px 6px;
  font-weight:900;
}
.legal-back{
  width:min(980px,calc(100% - 40px));
  margin:0 auto;
  padding-top:24px;
}
.legal-back a{
  color:#dff5ff;
  text-decoration:none;
  font-weight:900;
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(186,230,253,.28);
}
@media(max-width:640px){
  .legal-page{
    width:min(100% - 24px,980px);
    padding:26px 20px;
    border-radius:22px;
  }
}
