/*=============== COOKIE CONSENT (Nr. 31, 33) ===============*/
/*!
  Cookie Consent UI (MIT)
  Component: Uiverse "lazy-rattlesnake-93" by vinodjangid07
  https://uiverse.io/vinodjangid07/lazy-rattlesnake-93
*/

/* Backdrop und Modal */
.cc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  /* etwas dunkler für mehr Kontrast */
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
  z-index: 10000;
  /* über allem */
}

.cc-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.cc-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translateX(-50%) translateY(-50%);
  max-height: min(88vh, 640px);
  overflow: auto;
  background: #ffffff;
  color: #111;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .28);
  padding: 1rem 1.25rem 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 10001;
  font-family: var(--body-font);
  backdrop-filter: saturate(140%) blur(8px);
}

.cc-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-50%);
}

@media (prefers-color-scheme: dark) {
  .cc-modal {
    background: #191A1C;
    border-color: rgba(255, 255, 255, .08);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .6);
  }

  .cc-desc {
    color: #e8e8e8;
  }
}

.cc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .5rem;
}

.cc-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.cc-close {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

.cc-body {
  display: grid;
  gap: .75rem;
  justify-items: center;
  /* Card mittig, Text sichtbar */
  text-align: center;
  /* Beschreibung lesbar */
}

.cc-desc {
  font-size: .95rem;
  line-height: 1.4;
  color: #222;
  /* sicherer Kontrast im Light Mode */
}

.cc-link {
  color: #0a84ff;
  text-decoration: none;
}

.cc-link:hover {
  text-decoration: underline;
}

/* Icon/Brand-Leiste */
.cc-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
}

.cc-brand .cc-badge {
  background: #0a84ff;
  color: #fff;
  border-radius: 6px;
  font-size: .7rem;
  padding: .2rem .4rem;
}

.cc-brand .cc-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  background: rgba(10, 132, 255, .1);
  color: #0a84ff;
  border-radius: 8px;
  font-size: 16px;
}

@media (prefers-color-scheme: dark) {
  .cc-brand .cc-icon {
    background: rgba(130, 199, 255, .12);
    color: #bfe2ff;
  }
}

.cc-cats {
  border-top: 1px solid #eee;
  padding-top: .75rem;
  display: grid;
  gap: .5rem;
}

.cc-cat {
  display: grid;
  gap: .25rem;
  padding: .5rem;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #eee;
}

@media (prefers-color-scheme: dark) {
  .cc-cat {
    border-color: rgba(255, 255, 255, .08);
  }
}

.cc-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.cc-cat-title {
  font-weight: 600;
}

.cc-badge {
  font-size: .75rem;
  padding: .15rem .5rem;
  border-radius: 999px;
  background: #e6f2ff;
  color: #0a84ff;
}

.cc-note {
  font-size: .85rem;
  color: #555;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: flex-end;
  margin-top: .5rem;
}

.cc-btn {
  padding: .6rem .9rem;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  cursor: pointer;
}

.cc-btn.primary {
  background-image: linear-gradient(180deg, #0a84ff, #0874dd);
  color: #fff;
  border-color: #0a84ff;
}

.cc-btn.primary:hover {
  filter: brightness(.98);
}

.cc-btn.danger {
  background: #eee;
}

.cc-manage {
  margin-right: auto;
  color: #0a84ff;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Reopen-Float-Button */
.cc-reopen {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1100;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #0a84ff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
  display: none;
}

.cc-reopen.show {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.cc-reopen i {
  font-style: normal;
}

/* Fokus-States */
.cc-btn:focus-visible,
.cc-close:focus-visible,
.cc-manage:focus-visible,
.cc-reopen:focus-visible {
  outline: 2px solid #0a84ff;
  outline-offset: 2px;
}

/* Slide-in/Fade Anim */
@keyframes cc-zoom-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

.cc-modal.show {
  animation: cc-zoom-in .18s ease-out;
}

/* Body scroll lock */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

/* Uiverse Cookie Card 1:1 */
.cookieCard {
  width: 320px;
  max-width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  border: 1px solid rgba(0, 0, 0, .06);
  margin-inline: auto;
}

#cookieSvg {
  width: 56px;
  height: 56px;
}

#cookieSvg g path {
  fill: #615151;
}

.cookieHeading {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
}

.cookieDescription {
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: #636363;
  line-height: 1.35;
}

.cookieButtons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.acceptButton,
.declineButton {
  all: unset;
  cursor: pointer;
  padding: .55rem .9rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
  user-select: none;
}

.acceptButton {
  background: linear-gradient(180deg, #0a84ff, #0874dd);
  color: #fff;
  border: 1px solid #0a84ff;
  box-shadow: 0 6px 18px rgba(10,132,255, .3);
}

.acceptButton:hover {
  filter: brightness(.98);
}

.declineButton {
  background: #f3f4f6;
  color: #222;
  border: 1px solid #e5e7eb;
}

.declineButton:hover {
  background-color: rgb(167, 41, 41);
  transition-duration: .2s;
}

/* Dark Mode Anpassungen der Card */
@media (prefers-color-scheme: dark) {
  .cookieCard {
    background: #1a1b1d;
    border-color: rgba(255, 255, 255, .1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  }

  #cookieSvg g path {
    fill: #d1caca;
  }

  .cookieHeading {
    color: #f0f0f0;
  }

  .cookieDescription {
    color: #cfcfcf;
  }

  .acceptButton {
    box-shadow: 0 6px 18px rgba(10, 132, 255, .25);
  }

  .declineButton {
    background: #2a2c2f;
    color: #eee;
    border-color: rgba(255, 255, 255, .12);
  }
}

/*=============== HERO BACKGROUND ===============*/
.hero-bg {
  position: relative;
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  /* Vollbild auch auf PC */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg__img {
  /* Neu: füllt Container ohne Streckung */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* volle Breite/Höhe, ohne Verzerrung */
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  transform: none !important;
  /* fix: bleibt statisch */
  z-index: 0;
}

/* Overlay für das Hintergrundbild */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .35) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Hero-Textbox */
.hero-content {
  margin-left: -6vw;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  max-width: 90vw;
  position: relative;
  z-index: 1;
}

/* Hover-Box entfernen */
.hero-content:hover {
  transform: none;
  box-shadow: none;
}

.hero-name {
  font-size: clamp(1.8rem, 4vw, 3rem);
  display: inline-block;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  opacity: .98;
  display: inline-flex;
  align-items: baseline;
  line-height: 1.2;
}

.rotating-words {
  position: relative;
  display: inline-block;
  --rw-height: 1.1em;
  height: var(--rw-height);
  line-height: var(--rw-height);
  overflow: hidden;
  vertical-align: baseline;
  min-width: 8ch;
  color: #21cf11;
  will-change: transform;
}

.rotating-words span {
  position: absolute;
  left: 3.5%;
  top: 3.8px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .35s ease, transform .45s ease;
  color: #21cf11;
  font-weight: 600;
  white-space: nowrap;
  line-height: var(--rw-height);
}

.rotating-words span.show {
  opacity: 1;
  transform: translateY(0%);
  position: absolute;
}

.rotating-words span.leave {
  opacity: 0;
  transform: translateY(-100%);
}

/* Mobile: etwas mehr Höhe, um Render-Unterschiede (Safari) auszugleichen */
@media (max-width: 480px) {
  .rotating-words {
    --rw-height: 1.5em;
    min-width: 9ch;
  }
}

/*=============== GLOBAL ===============*/
html {
  scroll-behavior: smooth;
}

/*=============== Back-to-Top (Nr. 26) ===============*/
#backToTop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(10, 132, 255, .95);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 1100;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  #backToTop {
    transition: none;
  }
}

/*=============== Leichter Footer ===============*/
.footer {
  background: rgba(255, 255, 255, 0.8);
  color: #222;
  border-top: 1px solid #e8e8e8;
  padding: 1rem 1.25rem;
  font-size: .9rem;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: #0a84ff;
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

/* Cookie Popup (Uiverse) – Klassen bestehen bereits */
/* ...existing code... */

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Dark Mode Overrides */
:root[data-theme="dark"] {
  --body-color: #0f1113;
  --black-color: #0f1113;
  --black-color-light: #13161a;
  --black-color-lighten: #171a1f;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Aktiver Nav-Link */
.nav__link--active {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}


/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== ABOUT PAGE STYLES ===============*/
/* About-Page Sektionen */
.about {
  background: transparent;
  color: inherit;
}
.about .thq-section-max-width {
  display: grid;
  gap: 24px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 1rem;
  border-radius: 12px;
}
:root[data-theme="dark"] .about-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.about h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-bottom: .75rem;
}
.skills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .5rem 1rem;
}
.skills li::before {
  content: "• ";
  color: #21cf11;
}
.timeline {
  list-style: none;
  display: grid;
  gap: .5rem;
}
.timeline li {
  display: grid;
  grid-template-columns: 8ch 1fr;
  gap: .75rem;
  align-items: baseline;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }

  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover>.dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 4em;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2a2a2a;
  transition: 0.4s;
  border-radius: 30px;
  overflow: hidden;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.2em;
  width: 1.2em;
  border-radius: 20px;
  left: 0.5em;
  bottom: 0.5em;
  transition: 0.4s;
  transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
  box-shadow: inset 8px -4px 0px 0px #fff;
}

.switch input:checked+.slider {
  background-color: #00a6ff;
}

.switch input:checked+.slider:before {
  transform: translateX(1.8em);
  box-shadow: inset 15px -4px 0px 15px #ffcf48;
}

.star {
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  width: 5px;
  transition: all 0.4s;
  height: 5px;
}

.star_1 {
  left: 2.5em;
  top: 0.5em;
}

.star_2 {
  left: 2.2em;
  top: 1.2em;
}

.star_3 {
  left: 3em;
  top: 0.9em;
}

.switch input:checked~.slider .star {
  opacity: 0;
}

.cloud {
  width: 3.5em;
  position: absolute;
  bottom: -1.4em;
  left: -1.1em;
  opacity: 0;
  transition: all 0.4s;
}

.switch input:checked~.slider .cloud {
  opacity: 1;
}

/* FAB für Theme-Switch unten rechts (stacked über A2HS/BackToTop */
.theme-switch-fab {
  position: fixed;
  right: 1rem;
  bottom: 7.5rem;
  z-index: 1101;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
  border-radius: 999px;
}

@media (max-width: 600px) {
  .theme-switch-fab {
    right: .75rem;
    bottom: 6.25rem;
    /* mehr Abstand zum A2HS/BackToTop */
    transform: scale(.92);
  }
}

.hs90-fab {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  z-index: 1101;
}

.hs90-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.hs90-label {
  width: 64px;
  height: 32px;
  background: #2a2a2a;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
  transition: background-color .25s ease, box-shadow .25s ease;
}

.hs90-icon {
  color: #fff;
  opacity: .8;
  transition: opacity .2s ease;
}

.hs90-ball {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
  transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Zustand: checked = Light (Sun sichtbar) */
.hs90-checkbox:checked+.hs90-label {
  background: #00a6ff;
}

.hs90-checkbox:checked+.hs90-label .hs90-ball {
  transform: translateX(32px);
}

.hs90-checkbox:checked+.hs90-label .hs90-sun {
  opacity: 1;
}

.hs90-checkbox:checked+.hs90-label .hs90-moon {
  opacity: 0;
}

/* Zustand: unchecked = Dark (Moon sichtbar) */
.hs90-checkbox:not(:checked)+.hs90-label .hs90-sun {
  opacity: 0;
}

.hs90-checkbox:not(:checked)+.hs90-label .hs90-moon {
  opacity: 1;
}

@media (max-width: 600px) {
  .hs90-fab {
    right: .75rem;
    bottom: 6.25rem;
    transform: scale(.92);
  }
}

/* Uiverse: ordinary-dodo-95 (in eigene Klassen od95-*) */
.od95-hero {
  display: grid;
  place-items: center;
  padding-top: calc(var(--header-height) + 2rem);
}
.od95-card {
  position: relative;
  width: min(720px, 92vw);
  padding: 2rem 2.25rem;
  border-radius: 16px;
  background: #0f1113;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}
:root[data-theme="light"] .od95-card { background: #111827; }
.od95-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg at 50% 50%, #0a84ff, #6ee7b7, #f472b6, #0a84ff);
  filter: blur(14px);
  opacity: .6;
  z-index: -1;
  border-radius: inherit;
}
.od95-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: .2px;
}
.od95-sub {
  margin-top: .35rem;
  color: #b9bcc1;
}
.od95-cta {
  margin-top: 1rem;
  display: inline-flex;
  gap: .5rem;
}
.od95-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .9rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  transition: background .18s cubic-bezier(.4,0,.2,1), transform .18s cubic-bezier(.4,0,.2,1), box-shadow .18s;
  will-change: transform, box-shadow;
}
.od95-btn:hover,
.od95-btn:focus-visible {
  background: rgba(10,132,255,0.92);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(10,132,255,0.13);
}
.od95-btn:active {
  transform: translateY(0.5px) scale(0.98);
  box-shadow: 0 2px 8px rgba(10,132,255,0.09);
}
@media (prefers-reduced-motion: reduce) {
  .od95-btn,
  .od95-btn:hover,
  .od95-btn:focus-visible,
  .od95-btn:active {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* MagicUI Arc Timeline (statisch, eigene Klassen arc-tl-*) */
.arc-tl {
  --arc-color: #0a84ff;
  --arc-muted: rgba(255,255,255,.12);
  margin-top: 1rem;
}
.arc-tl h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-bottom: 1rem;
}
.arc-tl-wrap {
  position: relative;
  width: min(980px, 92vw);
  margin-inline: auto;
  padding: 1.5rem 0 0.5rem;
}
.arc-tl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.arc-tl-item {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: .9rem 1rem;
  color: #e5e7eb;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
:root[data-theme="light"] .arc-tl-item {
  background: #ffffff;
  border-color: rgba(0,0,0,.06);
  color: #111827;
}
.arc-tl-item h3 {
  font-size: 1rem;
  margin-bottom: .25rem;
}
.arc-tl-item .kicker {
  font-size: .8rem;
  opacity: .75;
  margin-bottom: .25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.arc-tl .kicker::before {
  content: "";
  inline-size: .5rem;
  block-size: .5rem;
  border-radius: 999px;
  background: var(--arc-color, #0a84ff);
  opacity: .85;
}
.arc-tl-arcs {
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  pointer-events: none;
  z-index: -1;
}
.arc-tl-arcs::before,
.arc-tl-arcs::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: min(980px, 92vw);
  height: 220px;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  border: 2px dashed var(--arc-muted);
}
.arc-tl-arcs::after {
  width: min(820px, 80vw);
  height: 180px;
  top: 40px;
  border-style: solid;
  border-color: var(--arc-color);
  opacity: .35;
}
@media (max-width: 760px) {
  .arc-tl-grid { grid-template-columns: 1fr; }
  .arc-tl-arcs::before,
  .arc-tl-arcs::after { display: none; }
}

/* LQIP / Blur-up für Hero-Image */
.hero-bg__img.lqip {
  filter: blur(18px) saturate(.85);
  transform: scale(1.03);
  transition: filter .6s ease, transform .6s ease, opacity .4s ease;
  opacity: .95;
}

.hero-bg__img {
  transition: opacity .4s ease;
}

/* Entferne blur visuell nach loaded (class removed by JS) */
.hero-bg__img:not(.lqip) {
  filter: none;
  transform: none;
  opacity: 1;
}

/* Micro-Interaktionen für od95-btn */
.od95-btn {
  transition: background .18s cubic-bezier(.4,0,.2,1), transform .18s cubic-bezier(.4,0,.2,1), box-shadow .18s;
  will-change: transform, box-shadow;
}
.od95-btn:hover,
.od95-btn:focus-visible {
  background: rgba(10,132,255,0.92);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(10,132,255,0.13);
}
.od95-btn:active {
  transform: translateY(0.5px) scale(0.98);
  box-shadow: 0 2px 8px rgba(10,132,255,0.09);
}
@media (prefers-reduced-motion: reduce) {
  .od95-btn,
  .od95-btn:hover,
  .od95-btn:focus-visible,
  .od95-btn:active {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Micro-Interaktionen für Footer-Links */
.footer37-social-links1 a {
  transition: color .18s, transform .18s, box-shadow .18s;
}
.footer37-social-links1 a:hover,
.footer37-social-links1 a:focus-visible {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 18px rgba(10,132,255,0.13);
}
.footer37-social-links1 a:active {
  transform: translateY(0.5px) scale(0.98);
  box-shadow: 0 2px 8px rgba(10,132,255,0.09);
}
@media (prefers-reduced-motion: reduce) {
  .footer37-social-links1 a,
  .footer37-social-links1 a:hover,
  .footer37-social-links1 a:focus-visible,
  .footer37-social-links1 a:active {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Tooltips für Social-Icons (30) */
.thq-tooltip {
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%) scale(.95);
  background: #222;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s .22s, transform .18s .22s;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  visibility: hidden;
}
.footer37-social-links1 a:focus .thq-tooltip,
.footer37-social-links1 a:hover .thq-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  visibility: visible;
  transition-delay: .22s;
}
@media (prefers-reduced-motion: reduce) {
  .thq-tooltip,
  .footer37-social-links1 a:focus .thq-tooltip,
  .footer37-social-links1 a:hover .thq-tooltip {
    transition: none !important;
  }
}

/* Tooltip-Container: für Positionierung */
.footer37-social-links1 {
  position: relative;
}
.footer37-social-links1 a {
  position: relative;
  outline: none;
}

/* Arc Timeline – Verbesserungen */
.arc-tl-item {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.arc-tl-item:hover,
.arc-tl-item:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  border-color: rgba(10,132,255,.35);
}
.arc-tl-item:focus-within {
  outline: 2px solid #0a84ff;
  outline-offset: 2px;
}

.arc-tl .kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.arc-tl .kicker::before {
  content: "";
  inline-size: .5rem;
  block-size: .5rem;
  border-radius: 999px;
  background: var(--arc-color, #0a84ff);
  opacity: .85;
}

/* Light/Dark Feinheiten */
:root[data-theme="dark"] .arc-tl-item:hover,
:root[data-theme="dark"] .arc-tl-item:focus-within {
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

@media (prefers-reduced-motion: reduce) {
  .arc-tl-item,
  .arc-tl-item:hover,
  .arc-tl-item:focus-within {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}