/* xZeytrox — dunkles Theme, weiße Akzente */

:root {
  color-scheme: dark;
  --bg: #0f0e0d;
  --bg-deep: #080706;
  --bg-raised: rgba(255, 255, 255, 0.08);
  --surface: rgba(60, 57, 54, 0.2);
  --surface-glossy: linear-gradient(135deg, rgba(100, 97, 94, 0.15), rgba(60, 57, 54, 0.1));
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f5f3f1;
  --text-soft: rgba(245, 243, 241, 0.6);
  --accent: #ffffff;
  --neon: #ffffff;
  --neon-soft: rgba(255, 255, 255, 0.25);
  --neon-glow: 0 12px 50px rgba(255, 255, 255, 0.15);
  --check-base: #141312;
  --check-size: 40px;
  --check-line: rgba(255, 255, 255, 0.04);
  --check-line-alt: rgba(255, 255, 255, 0.028);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --max: 920px;
  --header-h: 68px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --glossy-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.45);
}



*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  min-height: 150vh;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.mono {
  font-family: var(--font-sans);
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-muted {
  color: var(--text-soft);
}

a {
  color: var(--neon);
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s;
}

a:hover {
  color: #ffffff;
  filter: brightness(1.05);
}

html[data-theme="light"] a:hover {
  color: #000000;
}

/* Hintergrund — weiches animiertes Karo */
.bg-root {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-check--plaid {
  position: absolute;
  inset: -8%;
  background-color: var(--check-base);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent calc(var(--check-size) - 1px),
      var(--check-line) calc(var(--check-size) - 1px),
      var(--check-line) var(--check-size)
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(var(--check-size) - 1px),
      var(--check-line-alt) calc(var(--check-size) - 1px),
      var(--check-line-alt) var(--check-size)
    );
  background-position: 0 0, 0 0;
  animation: plaidDrift 120s linear infinite;
  will-change: background-position;
}

.bg-check--layer2 {
  opacity: 0.42;
  mix-blend-mode: soft-light;
  transform: rotate(2deg) scale(1.06);
}

@keyframes plaidDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: var(--check-size) var(--check-size),
      calc(var(--check-size) * -1) var(--check-size);
  }
}

.bg-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 18% 12%, rgba(255, 255, 255, 0.06), transparent 52%),
    radial-gradient(ellipse 95% 75% at 88% 78%, rgba(255, 255, 255, 0.04), transparent 48%);
  pointer-events: none;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 75% at 50% -5%, rgba(80, 72, 68, 0.2), transparent 42%),
    radial-gradient(ellipse 95% 65% at 50% 105%, rgba(8, 7, 6, 0.62), transparent 55%),
    radial-gradient(ellipse 75% 60% at 50% 45%, transparent 28%, rgba(10, 9, 8, 0.55) 100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .bg-check--plaid {
    animation: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.35rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@supports not (background: color-mix(in srgb, white 50%, black)) {
  .site-header {
    background: rgba(18, 17, 16, 0.88);
  }
  html[data-theme="light"] .site-header {
    background: rgba(240, 235, 232, 0.92);
  }
}

.site-logo {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}

.site-logo:hover {
  color: var(--accent);
  text-shadow: 0 0 24px var(--neon-soft);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
  flex: 1;
  justify-content: center;
}

.nav-desktop a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-soft);
}

.nav-desktop a:hover {
  color: var(--text);
}

.nav-desktop a.is-active {
  color: var(--neon);
  text-shadow: 0 0 18px var(--neon-soft);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.btn-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.btn-theme:hover {
  border-color: var(--neon);
  box-shadow: var(--neon-glow);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.mobile-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 45;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.35rem 1.15rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
  backdrop-filter: blur(12px);
}

.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 0.4rem 0;
}

.mobile-nav a.is-active {
  color: var(--neon);
}

.mobile-nav[hidden] {
  display: none !important;
}

@media (min-width: 900px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Main */
.main {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.35rem 3.5rem;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Hero / Start */
.hero {
  padding-top: clamp(2.5rem, 8vh, 4.5rem);
  padding-bottom: clamp(3rem, 10vh, 6rem);
  max-width: 100%;
}

.hero--with-avatar {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: center;
  min-height: min(92vh, 980px);
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .hero--with-avatar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(2.75rem, 6vw, 5rem);
  }
}

.hero__profile {
  display: flex;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero__profile {
    justify-content: flex-start;
  }
}

/* Avatar-Animation: Puls-Ringe + rotierender Lichtrand */
.hero__avatar-anim {
  position: relative;
  width: min(300px, 58vw);
  height: min(300px, 58vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__avatar-pulse {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
  animation: heroAvatarPulse 3s ease-out infinite;
}

.hero__avatar-pulse--delay {
  animation-delay: 1.5s;
  border-color: rgba(255, 255, 255, 0.22);
  inset: -6px;
}

@keyframes heroAvatarPulse {
  0% {
    transform: scale(0.88);
    opacity: 0.85;
  }
  65% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero__avatar-shine {
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  animation: heroAvatarSpin 10s linear infinite;
  pointer-events: none;
  z-index: 1;
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px) 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #fff calc(100% - 4px) 100%);
}

@keyframes heroAvatarSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero__avatar-ring {
  position: relative;
  z-index: 2;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  max-width: 280px;
  max-height: 280px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.75)
  );
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.hero__avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
}

.hero__copy {
  max-width: 46rem;
}

.hero__kicker {
  font-size: clamp(0.75rem, 1.5vw, 0.82rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 1.15rem;
  font-weight: 500;
}

.hero__title {
  font-size: clamp(2.15rem, 6.5vw, 3.65rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 1.15rem;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 32px var(--neon-soft);
}

.hero__lead {
  font-size: clamp(1.08rem, 2.2vw, 1.25rem);
  color: var(--text-soft);
  margin: 0 0 2rem;
  max-width: 44ch;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .hero__avatar-pulse,
  .hero__avatar-shine {
    animation: none !important;
  }
  .hero__avatar-pulse {
    opacity: 0.35;
    transform: scale(1);
  }
  .hero__avatar-shine {
    opacity: 0.25;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .hero__actions {
    gap: 1rem;
  }
}

html[data-theme="light"] .client-row__badge {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .spec-item__icon {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--neon);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: var(--radius-pill);
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn--solid {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: #f5f3f1;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 4px 18px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
  font-weight: 600;
  backdrop-filter: blur(30px);
}

.btn--solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.btn--solid:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.25), 0 8px 32px rgba(255, 255, 255, 0.08), 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(40px);
}



.btn--line {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(20px);
}}

.btn--line:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.25), var(--neon-glow);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}



/* Blöcke */
.block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-top: clamp(2.75rem, 7vw, 4.25rem);
}

@media (min-width: 720px) {
  .block {
    grid-template-columns: minmax(90px, 140px) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
  }
}

.block__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
  padding-top: 0.35rem;
  border-top: 2px solid color-mix(in srgb, var(--neon) 45%, transparent);
  max-width: 11rem;
  font-weight: 600;
}

.block__title {
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}

.block__title em {
  font-style: normal;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 32px var(--neon-soft);
}

.block__intro {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
}

.card {
  background: var(--surface-glossy, var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.12), 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}



.card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.18), 0 12px 48px rgba(0, 0, 0, 0.3), var(--neon-glow);
  backdrop-filter: blur(50px) saturate(2);
}

/* Kunden */
.client-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .client-rows {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .client-rows {
    grid-template-columns: repeat(3, 1fr);
  }
}

.client-row-item {
  display: block;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  background: var(--surface-glossy, var(--surface));
  position: relative;
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), var(--neon-glow);
  text-decoration: none;
}

.client-card__image-wrapper {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(20px);
}

.client-card:hover .client-card__image-wrapper {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 12px 28px rgba(0, 0, 0, 0.3), var(--neon-glow);
}

.client-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-card__name {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
  color: var(--text);
}

.client-card__meta {
  display: block;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* Programme */
.software-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.software-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  transition: all 0.3s var(--ease);
}

.software-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.25), var(--neon-glow);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(30px);
}

.software-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--neon);
  flex-basis: auto;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(20px);
}

.software-item:hover .software-item__icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 12px 24px rgba(0, 0, 0, 0.3);
}

.software-item__icon-img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(85%) brightness(1.1) contrast(1.15) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s var(--ease);
}

.software-item:hover .software-item__icon-img {
  opacity: 1;
  filter: grayscale(30%) brightness(1.2) contrast(1.25) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.software-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.software-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}

.software-item__value {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.software-item__desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0.1rem;
}

/* PC Specs */
.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  transition: all 0.3s var(--ease);
}

.spec-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.25), var(--neon-glow);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(30px);
}

.spec-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--neon);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(20px);
}

.spec-item:hover .spec-item__icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.spec-item__icon svg {
  width: 26px;
  height: 26px;
}

.spec-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.spec-item__label {
  color: var(--text-soft);
}

.spec-item__value {
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  word-break: break-word;
}

/* Kontakt */
.card--contact {
  padding: 2.5rem 2rem;
  text-align: center;
}

.contact__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  max-width: none;
}

.contact__title em {
  font-style: normal;
  font-weight: 700;
  color: var(--neon);
}

.contact__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: var(--neon);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 8px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px);
}

.contact__email:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.contact__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact__desc {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin: 0;
  max-width: 40ch;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.35rem 2.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
}

.footer__tag {
  flex: 1;
  text-align: center;
}

.footer__top {
  color: var(--text-soft);
  font-weight: 500;
}

.footer__top:hover {
  color: var(--neon);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Scroll Navigation */
.scroll-nav {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 640px) {
  .scroll-nav {
    display: none;
  }
}

.scroll-nav__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.scroll-nav__dot:hover {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.scroll-nav__dot.is-active {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.6);
}
