:root{
  --bg:#050816;
  --bg2:#0b1020;
  --card:#111827;
  --line:#1f2937;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --accent:#06d6a0;
  --accent2:#118ab2;
  --shadow: 0 18px 45px rgba(0,0,0,.55);
  --r-lg:18px;
  --r-xl:26px;
  --w:1100px;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at top, #111a2b 0, var(--bg) 55%, #02010a 100%);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--w);margin:0 auto;padding:0 18px}

header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5,8,22,.92), rgba(5,8,22,.72), transparent);
  border-bottom:1px solid rgba(148,163,184,.12);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; min-width: 240px;}
.mark{
  width:34px;height:34px;border-radius:999px;
  background: radial-gradient(circle at 30% 20%, #fff 0, var(--accent) 35%, var(--accent2) 100%);
  box-shadow: 0 0 0 2px rgba(6,214,160,.22);
  position:relative;
}
.mark:after{
  content:""; position:absolute; inset:7px 10px 7px 12px;
  border-radius:999px;
  border:2px solid rgba(2,6,23,.65);
  border-top-color: transparent; border-right-color: transparent;
  transform: rotate(-18deg);
}
.brand-title{font-weight:650; letter-spacing:.05em; text-transform:uppercase; font-size:.92rem}
.brand-sub{color:var(--muted); letter-spacing:.18em; text-transform:uppercase; font-size:.68rem}

.navlinks{
  display:flex; gap:16px; align-items:center;
  color:var(--muted); font-size:.92rem;
}
.navlinks a{padding:6px 0; border-bottom:1px solid transparent}
.navlinks a:hover{color:var(--text); border-bottom-color: rgba(148,163,184,.35)}
.navlinks a.active{color:var(--text); border-bottom-color: rgba(6,214,160,.55)}

.right{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  justify-content:flex-end;
}
.lang{
  display:flex; gap:8px; align-items:center;
  border:1px solid rgba(148,163,184,.25);
  border-radius:999px;
  padding:4px;
  background: rgba(15,23,42,.65);
}
.lang button{
  border:0; background:transparent; color:var(--muted);
  padding:6px 10px; border-radius:999px; cursor:pointer;
  font-size:.82rem; letter-spacing:.06em; text-transform:uppercase;
}
.lang button.active{
  background: rgba(6,214,160,.16);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(6,214,160,.25);
}
.pill{
  padding:8px 14px; border-radius:999px; font-size:.85rem;
  border:1px solid rgba(6,214,160,.35);
  background: rgba(6,214,160,.12);
  color: var(--accent);
  font-weight:600;
}

main{padding:26px 0 40px}
section{padding:26px 0}

.kicker{
  color:var(--accent); letter-spacing:.18em; text-transform:uppercase;
  font-size:.78rem; margin-bottom:10px;
}
h1{
  font-size: clamp(2.0rem, 4vw, 2.85rem);
  line-height:1.08; margin-bottom:12px;
}
h1 span{color:var(--accent)}
.sub{
  color:var(--muted); font-size:1rem; max-width: 70ch;
  margin-bottom:14px;
}

.btn{
  border-radius:999px; padding:10px 16px;
  border:1px solid transparent; cursor:pointer;
  display:inline-flex; align-items:center; gap:8px;
  font-size:.92rem;
  transition: transform .08s ease, box-shadow .10s ease, background .12s ease;
  user-select:none;
}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), #1ae9b1);
  color:#02231a; font-weight:700; box-shadow: var(--shadow);
}
.btn.primary:hover{transform:translateY(-1px); box-shadow: 0 22px 55px rgba(6,214,160,.45)}
.btn.secondary{
  background: rgba(15,23,42,.75);
  border-color: rgba(148,163,184,.35);
  color: var(--text);
}
.btn.secondary:hover{background: rgba(31,41,55,.75)}

.sectionhead{margin-bottom:14px}
.sectionk{color:var(--accent); letter-spacing:.18em; text-transform:uppercase; font-size:.75rem; margin-bottom:4px}
h2{font-size:1.5rem; margin-bottom:6px}
.lead{color:var(--muted); max-width: 75ch; font-size:.95rem}

.cards{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; margin-top:16px}
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--r-lg);
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.icon{
  width:28px;height:28px;border-radius:999px;
  background: rgba(6,214,160,.14);
  border:1px solid rgba(6,214,160,.25);
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:8px;
  font-weight:800; color:var(--accent);
  font-size:.85rem;
}
.card h3{font-size:1.05rem; margin-bottom:4px}
.tagline{color:var(--muted); letter-spacing:.16em; text-transform:uppercase; font-size:.74rem; margin-bottom:8px}
.body{color:var(--muted); font-size:.92rem}

.two{
  display:grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  gap:16px; margin-top:16px; align-items:start;
}

.box{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--r-lg);
  padding:14px;
  color:var(--muted);
  font-size:.92rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.code{
  margin-top:10px;
  background:#020617;
  border:1px solid rgba(148,163,184,.3);
  border-radius:12px;
  padding:10px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:.78rem;
  white-space:pre-wrap;
  color:#cbd5e1;
}
.small{font-size:.84rem; color:var(--muted)}
.small strong{color:var(--accent)}

footer{
  border-top:1px solid rgba(148,163,184,.12);
  padding:18px 0 26px;
  color:var(--muted);
  font-size:.82rem;
}
.footflex{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

/* ---- Gallery ---- */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}
.gitem{
  border-radius: var(--r-lg);
  overflow:hidden;
  border:1px solid rgba(148,163,184,.18);
  background: rgba(2,6,23,.35);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  cursor:pointer;
}
.gitem img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.02);
}
.gcap{
  padding:10px 12px;
  color:var(--muted);
  font-size:.86rem;
  border-top:1px solid rgba(148,163,184,.12);
}

.lightbox{
  position:fixed; inset:0; z-index:9999;
  display:none;
  align-items:center; justify-content:center;
  background: rgba(0,0,0,.75);
  padding:18px;
}
.lightbox.open{display:flex}
.lb-card{
  max-width: 980px;
  width: 100%;
  border-radius: var(--r-xl);
  overflow:hidden;
  background: rgba(2,6,23,.92);
  border:1px solid rgba(148,163,184,.22);
  box-shadow: var(--shadow);
}
.lb-img{
  width:100%;
  max-height: 75vh;
  object-fit:contain;
  background:#000;
  display:block;
}
.lb-bar{
  display:flex; justify-content:space-between; align-items:center; gap:10px;
  padding:10px 12px;
  color:var(--muted);
  font-size:.86rem;
}
.lb-btn{
  border:1px solid rgba(148,163,184,.30);
  background: rgba(15,23,42,.65);
  color: var(--text);
  border-radius:999px;
  padding:7px 12px;
  cursor:pointer;
}
.lb-btn:hover{background: rgba(31,41,55,.75)}

@media (max-width: 920px){
  .two{grid-template-columns:1fr}
  .navlinks{display:none}
}
@media (max-width: 900px){
  .gallery{grid-template-columns: 1fr}
  .gitem img{height:240px}
}
@media (max-width: 640px){
  .wrap{padding:0 14px}
  .cards{grid-template-columns:1fr}
}
}
.social {
  display: flex;
  gap: 12px;
  justify-content: center;   /* ← TÄMÄ */
}
.parent {
  text-align: center;
}

