:root{
  --bg: #0b0f14;
  --bg2: #0f1620;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.12);
  --accent: #39d98a; /* Kolibri-ish green (adjust later) */
  --accent2: #2bb3ff;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --radius: 18px;
  --max: 1080px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(57,217,138,0.18), transparent 55%),
              radial-gradient(900px 500px at 90% 10%, rgba(43,179,255,0.12), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  font-family:var(--font);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset: 4px; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.skip-link{
  position:absolute;
  left:-999px; top:auto;
  width:1px; height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:20px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background: rgba(0,0,0,0.7);
  border:1px solid var(--border);
  border-radius: 10px;
  z-index: 9999;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,0.55);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand__mark{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.05);
}
.brand__mark .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(57,217,138,0.12);
}
.brand__text{ font-size: 15px; }

/* Nav */
.nav{
  position: relative;
  flex: 1;            /* NEU: nimmt den verfügbaren Platz ein */
  display: flex;      /* NEU: damit Menü + Language sauber in einer Linie sind */
  align-items: center;
  justify-content: flex-end;  /* Menü nach rechts schieben */
  gap: 16px;
}
.nav__toggleLines{
  display:block;
  width:18px;height:2px;
  background: var(--text);
  position:relative;
}
.nav__toggleLines::before,
.nav__toggleLines::after{
  content:"";
  position:absolute; left:0;
  width:18px;height:2px;
  background: var(--text);
}
.nav__toggleLines::before{ top:-6px; }
.nav__toggleLines::after{ top:6px; }

.nav__menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap:16px;
  margin:0;
  padding:0;
}
.nav__menu a{
  color: var(--muted);
  font-size: 14px;
}
.nav__menu a:hover{ color: var(--text); text-decoration:none; }

@media (max-width: 860px){
  .nav__toggle{ display:inline-flex; align-items:center; }
  .nav__menu{
    position:absolute;
    right:0;
    top:52px;
    width: min(320px, calc(100vw - 24px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px;
    border-radius: 14px;
    background: rgba(11,15,20,0.92);
    border:1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav__menu.open{ display:flex; }
  .nav__menu li a{
    display:block;
    padding:12px 10px;
    border-radius: 12px;
  }
  .nav__menu li a:hover{
    background: rgba(255,255,255,0.06);
  }
}

.lang{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left: auto;   /* statt 14px */
}
.lang__link{
  color: var(--muted2);
  font-size: 13px;
  text-decoration: none;
}
.lang__link:hover{ color: var(--text); text-decoration:none; }
.lang__link--active{
  color: var(--text);
  font-weight: 700;
}
.lang__sep{ color: rgba(255,255,255,0.35); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(57,217,138,0.35);
  background: linear-gradient(135deg, rgba(57,217,138,0.20), rgba(43,179,255,0.10));
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  text-decoration:none;
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn--ghost{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.btn--small{
  padding: 10px 12px;
  border-radius: 12px;
}

/* Hero */
.hero{
  padding: 44px 0 28px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items:center;
}
.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  margin: 0 0 10px;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}
.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin: 4px 0 10px;
}
.fineprint{
  margin: 0;
  color: var(--muted2);
  font-size: 13px;
}

.hero__media{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  overflow:hidden;

  /* NEW: portrait-card behaviour */
  aspect-ratio: 3 / 4;
  max-height: 440px;
}

.hero__bullets{
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.hero__bullets li{ margin: 8px 0; }

.hero__photo{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 12%;
}

@media (max-width: 860px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero{ padding-top: 40px; }

  .hero__media{
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }
  .hero__photo{
    object-position: 50% 6%;
  }
}

/* Sections */
.section{
  padding: 56px 0;
}
.section--alt{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section h2{
  margin:0 0 12px;
  font-size: 24px;
  letter-spacing: -0.2px;
}
.textWide{
  max-width: 72ch;
  color: var(--muted);
  margin: 0 0 18px;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,0.04);
}
.card h3{
  margin:0 0 8px;
  font-size: 16px;
}
.card p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px){
  .cards{ grid-template-columns: 1fr; }
}

/* Bullets */
.bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 10px 0; }

/* Story */
.story{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.story__block{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,0.03);
}
.story__block h3{ margin:0 0 8px; font-size: 16px; }
.story__block p{ margin:0; color: var(--muted); font-size: 14px; }

@media (max-width: 860px){
  .story{ grid-template-columns: 1fr; }
}

/* Founders */
.founders{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}
.founderCard{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,0.04);
}
.founderCard__avatar{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(57,217,138,0.22), rgba(43,179,255,0.14));
  border: 1px solid rgba(255,255,255,0.10);
}
.founderCard h3{ margin:0 0 8px; font-size: 16px; }
.founderCard p{ margin:0; color: var(--muted); font-size: 14px; }

@media (max-width: 860px){
  .founders{ grid-template-columns: 1fr; }
}

.note{
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
}
.note p{ margin:0; color: var(--muted); font-size: 14px; }

/* CTA Card */
.ctaCard{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  border: 1px solid rgba(57,217,138,0.22);
  border-radius: calc(var(--radius) + 4px);
  padding: 18px;
  background: linear-gradient(135deg, rgba(57,217,138,0.12), rgba(43,179,255,0.06));
  box-shadow: var(--shadow);
}
.ctaCard h3{ margin:0 0 6px; }
.ctaCard p{ margin:0; color: var(--muted); font-size: 14px; }
.ctaCard__actions{ display:flex; flex-wrap:wrap; gap: 10px; }

@media (max-width: 860px){
  .ctaCard{ flex-direction:column; align-items:flex-start; }
}

/* Footer */
.footer{
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  color: var(--muted2);
  font-size: 13px;
}
.footer__links{
  display:flex;
  gap: 10px;
  align-items:center;
}
.footer__links a{ color: var(--muted2); }
.footer__links a:hover{ color: var(--text); text-decoration:none; }

@media (max-width: 860px){
  .footer__inner{ flex-direction:column; align-items:flex-start; }
}
/* =========================
   Language switch – mobile
   ========================= */
@media (max-width: 860px){
  .nav{
    justify-content: flex-end;
  }

  .lang{
    margin-left: 12px; /* neben Burger, nicht zentriert */
  }
}
