  /* =========================================
   Basisvariablen
   ========================================= */
:root {
  --bg: #1A1F2B;
  --fg: #E0E0E0;
  --muted: #6b7280;
  --brand: #00D4FF;
  --skill: #0ea5e9;
  --bar: #FF7F32;
  --brand-2: #FF71CE;
  --maxw: 72rem;
  --space: clamp(1rem, 2vw, 2rem);
}
/* =========================================
   Reset & Basistypografie
   ========================================= */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font: 19px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
  color: var(--fg);
  background: var(--bg);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--fg);
  text-decoration: none;
}
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
/* =========================================
   Layout-Container
   ========================================= */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--space);
}
/* =========================================
   Skip-Link (Accessibility)
   ========================================= */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip:focus {
  left: var(--space);
  top: var(--space);
  background: #fff;
  padding: 0.25rem 0.5rem;
  box-shadow: 0 0 0 2px var(--brand);
}
/* =========================================
   Header & Navigation
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, var(--bg), #0B0C10);
  border-bottom: 1px solid var(--bg), ;
  z-index: 100;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem var(--space);
}
.brand {
  font-weight: 700;
}
.navlist {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* =========================================
   Hero-Section
   ========================================= */
.hero {
  color: #00008B;
  background: linear-gradient(100deg, var(--brand-2) 30%, var(--bar) 60%);
  padding-block: clamp(2.5rem, 8vw, 5rem);
}
.hero-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}
.portrait {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}
.hero-text .btn {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background: var(--bg);
  color: var(--fg);
  border-radius: 0.5rem;
  font-weight: 600;
}
/* =========================================
   Allgemeine Abschnittsgestaltung
   ========================================= */
.section {
  padding-block: clamp(2rem, 6vw, 3.5rem);
}
/* =========================================
   Footer
   ========================================= */
.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 0;
}
/* =========================================
   Responsive (ab 768px)
   ========================================= */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 128px 1fr;
  }
}
/* =========================================
   Druckansicht
   ========================================= */
@media print {
  .site-header,
  .site-footer,
  .btn {
    display: none;
  }
  a {
    color: inherit;
    text-decoration: underline;
  }
}