:root{
  --bg:#f7f9fc;            /* sehr helles Grau */
  --fg:#1f2937;            /* dunkles Grau (Text) */
  --muted:#5b6b80;         /* Grau-Blau */
  --line:#d6dde8;          /* Linien */
  --link:#1f4fd8;          /* dezentes Blau */
  --card:#ffffff;          /* Karten / Hero-Hintergrund */
}

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

body{
  margin:0;
  font:16px/1.65 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  color:var(--fg);
}

a{color:var(--link); text-decoration:none}
a:hover{opacity:.85; text-decoration:underline}

.wrap{
  max-width:980px;
  margin:0 auto;
  padding:28px 22px;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.topline, .botline{
  height:1px;
  background:var(--line);
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand .title{font-weight:650; letter-spacing:.3px}
.brand .subtitle{color:var(--muted); font-size:.95rem}

.lang{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:.95rem;
}
.lang a{color:var(--muted)}
.lang .active{color:var(--fg); font-weight:600}

.main{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:34px 0;
}

.card{
  width:100%;
  display:grid;
  gap:22px;
}

.hero{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
}

.hero img{
  width:100%;
  height:auto;
  display:block;
}

.center{
  display:grid;
  gap:14px;
  max-width:680px;
}

.center h1{
  margin:0;
  font-size:2.0rem;
  letter-spacing:.2px;
}
.center p{margin:0; color:var(--muted)}

.links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  padding-top:6px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 14px;
  background:#ffffff;
  color:var(--fg);
}
.pill:hover{
  background:#f0f4fa;
  text-decoration:none;
}

.footer{
  padding:16px 0 6px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:var(--muted);
  font-size:.92rem;
}
.icons{
  display:flex;
  align-items:center;
  gap:12px;
}
.icon{
  width:20px; height:20px;
  display:inline-block;
  color:var(--muted);
}
.icon:hover{color:var(--fg)}
.small-links{display:flex; gap:12px; flex-wrap:wrap}
.small-links a{color:var(--muted)}
