@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/Inter-latin-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/Inter-latin-italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --black: #050505;
  --dark: #000000;
  --neon: #40FF00;
  --light-gray: #e8e8e8;
  --text-gray: #4d4d4d;
  --text-muted: #565656;
  --max-width: 1100px;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  /*cursor: url('assets/cursor.svg') 12 12, auto;*/
}

html {
  height: 100%;
  overflow-x: clip;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
  margin: 0;
  background-color: #ffffff;
  color: #000;
  height: 100%;
  min-height: 100vh;
}

/* Text selection */
::selection {
  background-color: #40FF00;
  color: #000;
}

::-moz-selection {
  background-color: #40FF00;
  color: #000;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-x: clip; 
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.hero__play-btn {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.hero__play-btn--visible {
  opacity: 0.75;
  pointer-events: auto;
}

.hero__play-btn--visible:hover {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.hero__play-btn:focus-visible {
  outline: 2px solid #40FF00;
  outline-offset: 2px;
}

.hero__play-icon--pause {
  display: none;
}

.hero__play-btn.hero__play-btn--paused .hero__play-icon--play {
  display: none;
}

.hero__play-btn.hero__play-btn--paused .hero__play-icon--pause {
  display: block;
}

.hero__volume {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__volume-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.hero__volume-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero__volume-btn:focus-visible {
  outline: 2px solid #40FF00;
  outline-offset: 2px;
}

.hero__volume-btn--muted .hero__volume-icon--on {
  display: none;
}

.hero__volume-btn--on .hero__volume-icon--muted {
  display: none;
}

.hero__volume-range {
  width: 100px;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.hero__volume-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: transform 0.15s;
  opacity: 0.8;
}

.hero__volume-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.hero__volume-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  animation: scrollBounce 1.9s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__scroll-indicator img {
  display: block;
  width: 24px;
  height: auto;
}

@keyframes scrollBounce {
  0% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
  100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
}

.hero__scroll-indicator svg {
  stroke: #01F813;
}

.logo-video {
  width: 100vw;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-video__video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  background: #000000;
}

.team {
  width: 100%;
  max-width: 100vw;
  background: var(--mid-gray);
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(5rem, 10vw, 8rem);
  padding-top: 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* Navigation – startet oben, von Anfang an sichtbar */
.nav--top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.nav__bar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 48.5px;
  background: var(--dark);
}

.team__sticky-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team__bar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 48.5px;
  background: var(--dark);
}

.team__header {
  display: flex;
  justify-content: center;
}

.team__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  bottom: 0.8px;
}

.team__badge-img {
  display: block;
  height: 49px;
  width: auto;
  object-fit: contain;
}

.team__badge-text {
  position: absolute;
  font-family: "Inter", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 20pt;
  pointer-events: none;
}

/* What we do – Section mit weißem Sticky-Header */
.whatwedo {
  width: 100vw;
  background: #000000;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(5rem, 10vw, 8rem);
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatwedo__sticky-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatwedo__bar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 48.5px;
  background: #ffffff;
}

.whatwedo__header {
  display: flex;
  justify-content: center;
}

.whatwedo__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  bottom: 0.8px;
}

.whatwedo__badge-img {
  display: block;
  height: 49px;
  width: auto;
  object-fit: contain;
}

.whatwedo__badge-text {
  position: absolute;
  font-family: "Inter", sans-serif;
  color: #121212;
  font-weight: 700;
  font-size: 20pt;
  pointer-events: none;
}

.whatwedo__content {
  width: 850px;
  margin-top: 80px;
  min-height: 200px;
}

/* What we do – Tagline (wie Team, Schriftfarbe weiß) */
.whatwedo__tagline-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.whatwedo__tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 100;
  font-size: 36pt;
  color: #fff;
}

.whatwedo__tagline::before,
.whatwedo__tagline::after {
  content: "";
  flex: 1;
  min-width: 1rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.whatwedo__tagline-wrap .whatwedo__tagline::before {
  transform: translateY(18px) translateX(-100%);
}

.whatwedo__tagline-wrap.animate .whatwedo__tagline::before {
  transform: translateY(18px) translateX(0);
}

.whatwedo__tagline-wrap .whatwedo__tagline::after {
  transform: translateY(-12px) translateX(100%);
}

.whatwedo__tagline-wrap.animate .whatwedo__tagline::after {
  transform: translateY(-12px) translateX(0);
}

.whatwedo__tagline span {
  flex: 0 0 auto;
}

/* What we do – Zwei Textblöcke, 80px Abstand, Content-Breite */
.whatwedo__text-row {
  display: grid;
  gap: 80px;
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  box-sizing: border-box;
  padding-bottom: 8rem;
  padding-top:4rem;
}

.whatwedo__text {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #A6A6A6;
}

.whatwedo__text--left {
  text-align: left;
}

.whatwedo__text--right {
  text-align: right;
}

.whatwedo__logo {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.whatwedo__logo img {
  max-width: 80vw;
  height: auto;
  display: block;
}

/* How we scale – Section mit --dark Sticky-Header, gleiches Content-Layout wie whatwedo */
.howwescale {
  width: 100vw;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(5rem, 10vw, 8rem);
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.howwescale__sticky-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.howwescale__bar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 48.5px;
  background: var(--dark);
}

.howwescale__header {
  display: flex;
  justify-content: center;
}

.howwescale__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  bottom: 0.8px;
}

.howwescale__badge-img {
  display: block;
  height: 49px;
  width: auto;
  object-fit: contain;
}

.howwescale__badge-text {
  position: absolute;
  font-family: "Inter", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 20pt;
  pointer-events: none;
}

.howwescale__content {
  width: 850px;
  margin-top: 80px;
  min-height: 200px;
}

.howwescale__tagline-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.howwescale__tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 100;
  font-size: 36pt;
  color: #2D2D2D;
}

.howwescale__tagline::before,
.howwescale__tagline::after {
  content: "";
  flex: 1;
  min-width: 1rem;
  height: 1px;
  background: #A6A6A6;
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.howwescale__tagline-wrap .howwescale__tagline::before {
  transform: translateY(18px) translateX(-100%);
}

.howwescale__tagline-wrap.animate .howwescale__tagline::before {
  transform: translateY(18px) translateX(0);
}

.howwescale__tagline-wrap .howwescale__tagline::after {
  transform: translateY(-12px) translateX(100%);
}

.howwescale__tagline-wrap.animate .howwescale__tagline::after {
  transform: translateY(-12px) translateX(0);
}

.howwescale__tagline span {
  flex: 0 0 auto;
}

.howwescale__text-row {
  display: grid;
  gap: 80px;
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  box-sizing: border-box;
  padding: 0 1.5rem;
}

.howwescale__text {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #2D2D2D;
}

.howwescale__text--left {
  text-align: center;
}

.howwescale__text--right {
  text-align: center;
}

.howwescale__dots {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.howwescale__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2D2D2D;
}

.howwescale__logo {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.howwescale__logo img {
  max-width: 80vw;
  height: auto;
  display: block;
  opacity: 0.4;
}

.team__content {
  width: 100%;
  min-width: 850px;
  max-width: min(38vw, 100%);
  margin: 0 auto;
  margin-top: 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 80px;

}

/* Full-bleed: Linien bis zum Bildschirmrand, Tagline zentriert */
.team__tagline-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.team__tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 100;
  font-size: 36pt;
  color: var(--dark);
}

.team__tagline::before,
.team__tagline::after {
  content: "";
  flex: 1;
  min-width: 1rem;
  height: 1px;
  background: #C3C1C1;
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Linke Linie: startet links außerhalb, fährt ein; Y-Versatz 18px */
.team__tagline-wrap .team__tagline::before {
  transform: translateY(18px) translateX(-100%);
}

.team__tagline-wrap.animate .team__tagline::before {
  transform: translateY(18px) translateX(0);
}

/* Rechte Linie: startet rechts außerhalb, fährt ein; Y-Versatz -12px */
.team__tagline-wrap .team__tagline::after {
  transform: translateY(-12px) translateX(100%);
}

.team__tagline-wrap.animate .team__tagline::after {
  transform: translateY(-12px) translateX(0);
}

.team__tagline span {
  flex: 0 0 auto;
}

.team__intro {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #4D4D4D;
  text-align: right;
  margin: 0 0 0 auto;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.clients__header {
  display: flex;
  justify-content: center;
  width: 80%;
}

.clients__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  bottom: 0.8px;
}

.clients__badge-img {
  display: block;
  height: 49px;
  width: auto;
  object-fit: contain;
}

.clients__badge-text {
  position: absolute;
  font-family: "Inter", sans-serif;
  color: var(--dark);
  font-weight: 700;
  font-size: 20pt;
  pointer-events: none;
}

.team__grid {
  padding-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-items: center;
  box-sizing: border-box;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 401px;
  min-width: 0;
}

.team-card__image {
  position: relative;
  width: 100%;
  max-width: 401px;
  height: 0;
  padding-bottom: calc(462 / 401 * 100%);
  min-width: 0;
  flex-shrink: 0;
  overflow: hidden;
  background: #000;
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card__image img,
.team-card__image video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card__mark-reverse {
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.team-card__mark-reverse.is-playing {
  opacity: 1;
  visibility: visible;
}

.team-card__matthias-reverse {
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.team-card__matthias-reverse.is-playing {
  opacity: 1;
  visibility: visible;
}

.team-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.team-card__name {
  position: relative;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-size: 15pt;
  color: var(--dark);
  margin-bottom: 0.25rem;
  z-index: 1;
}

.team-card__mail {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: underline;
}

.clients {
  padding-bottom: 10rem;
  padding-top: 0rem;
  width: 100%;
  background: #F5F6F7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients__grid {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: var(--max-width);
}

.clients__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clients__image img {
  width: 50%;
  height: auto;
  display: block;
}

/* Clients-Grid: von unten nach oben einblenden, erste Reihe dann zweite Reihe */
.clients__grid .clients__image {
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.clients__grid .clients__image.scroll-effect-up {
  transform: translateY(50px);
}
.clients__grid .clients__image.scroll-effect-up.animate {
  transform: translateY(0);
}
/* Erste Reihe (1–6): zuerst */
.clients__grid .clients__image:nth-child(1) { transition-delay: 0s; }
.clients__grid .clients__image:nth-child(2) { transition-delay: 0.1s; }
.clients__grid .clients__image:nth-child(3) { transition-delay: 0.2s; }
.clients__grid .clients__image:nth-child(4) { transition-delay: 0.3s; }
.clients__grid .clients__image:nth-child(5) { transition-delay: 0.4s; }
.clients__grid .clients__image:nth-child(6) { transition-delay: 0.5s; }
/* Zweite Reihe (7–12): danach */
.clients__grid .clients__image:nth-child(7) { transition-delay: 0.75s; }
.clients__grid .clients__image:nth-child(8) { transition-delay: 0.85s; }
.clients__grid .clients__image:nth-child(9) { transition-delay: 0.95s; }
.clients__grid .clients__image:nth-child(10) { transition-delay: 1.05s; }
.clients__grid .clients__image:nth-child(11) { transition-delay: 1.15s; }
.clients__grid .clients__image:nth-child(12) { transition-delay: 1.25s; }

.footer {
  position: relative;
  width: 100%;
  height: clamp(160px, 20vw, 251px);
  background: var(--dark);
  color: #fff;
}

.footer__note {
  max-width: var(--max-width);
  margin: 0 auto;
  margin-top: 1rem;
  text-align: start;
  padding-left: 11rem;
}

.footer__note-text {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  opacity: 0.85;
  font-style: italic;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 3rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12rem;
  font-size: 0.9rem;
}

.footer__col-title {
  font-family: "Inter", sans-serif;
  font-size: 20pt;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

  .mail-icon {
    height: 0.5em;
    width: auto;
    vertical-align: middle;
  }

  .mapPin-icon {
    height: 0.75em;
    width: auto;
    vertical-align: middle;
  }

.footer__col-title--strong {
  font-size: 35pt;
}

.footer__col-text {
  margin: 0;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  color: #909090;
}

.footer__link {
  font-family: "Inter", sans-serif;
  font-size: 12pt;
  font-style: italic;
  color: #909090;
  text-decoration: underline;
}

.footer__coords-outer {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.footer__coords-arrow {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0.35em;
  color: #909090;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.footer__coords-outer:hover .footer__coords-arrow {
  opacity: 1;
  visibility: visible;
}

.footer__coords-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.footer__coords-text {
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.footer__coords-text--dup {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  color: white;
}

.footer__coords-wrapper:hover .footer__coords-text:not(.footer__coords-text--dup) {
  transform: translateX(100%);
}

.footer__coords-wrapper:hover .footer__coords-text--dup {
  transform: translateX(0);
}

.footer__circle {
  position: absolute;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: left;
  top: -138px;
  margin-left: 15rem;
}

.footer__circle-title {
  font-weight: 700;
  font-size: 1.2rem;

  color: #000;
}

.footer__circle-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  margin-bottom: 2rem;
}

.footer__circle-link {
  display: block;
  font-style: italic;
  text-decoration: none;
  color: var(--black);
  font-size: 1rem;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 1600px) {
  .footer__circle {
    margin-left: 7rem;
  }
}

@media (max-width: 1500px) {


  .footer__circle {
    margin-left: 3.75rem;
  }
}

@media (max-width: 1300px) {
    .footer__circle {
      margin-left: 1rem;
    }
    .footer{
      height: 400px;

    }
    .footer__inner {
      margin-top: 5rem;
      justify-content: center;
    }

    .footer__note {
      max-width: var(--max-width);
      margin: 0 auto;
      margin-top: 1rem;
      text-align: end;
      padding-right:5rem;
    }
  }

@media (max-width: 900px) {

  .clients__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .clients__image img {
    width: 40%;
    height: auto;
  }

  .footer{
    background-color: var(--dark);
    height: 500px;
  }
  
  .team__content {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .team__tagline,
  .whatwedo__tagline,
  .howwescale__tagline {
    font-size:24pt;
  }

  .team__grid {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .team-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .team-card__image {
    max-width: 100%;
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    gap: 3rem;
    padding-left: 23rem;
    margin-top: 0rem;
  }

  .footer__col {
    max-width: 260px;
    align-items: flex-start;
  }

  .footer__circle {
    margin-left: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100dvh;
    min-height: 100dvh;
  }
}
  @supports not (height: 100dvh) {
    .hero {
      height: 100vh;
      min-height: 100vh;
    }
  }

  .whatwedo__content,
  .howwescale__content {
    width: 100%;
    max-width: 100%;
    margin-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }


  .team__intro {
    font-size: 18px;
    line-height: 1.4;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
  }

  .whatwedo__text,
  .howwescale__text {
    font-size: 18px;
  }

  .whatwedo__logo,
  .howwescale__logo {
    margin-top: 3rem;
  }

  .whatwedo__logo img,
  .howwescale__logo img {
    max-width: 90vw;
  }

  .team__tagline-wrap,
  .whatwedo__tagline-wrap,
  .howwescale__tagline-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
  }


@media (max-width: 640px) {
  .footer__inner {
    margin-left: -3rem;
  }
  .team {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3rem;
  }

  .team__content {
    max-width: 100%;
    min-width: 0;
    margin-top: 2rem;
    gap: 2rem;
  }

  .team__grid {
    gap: 2rem;
    padding-top: 2rem;
    justify-items: center;
  }

  .team-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .team-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team__intro {
    font-size: 17px;
    text-align: center;
  }

  .hero__volume {
    top: 1rem;
    right: 1rem;
  }

  .hero__volume-range {
    width: 70px;
  }

  .hero__scroll-indicator {
    bottom: 3rem;
  }

  .hero__play-btn {
    bottom: 50%;
  }

  .team__tagline,
  .whatwedo__tagline,
  .howwescale__tagline {
    font-size: 20pt;
    gap: 0.6rem;
  }
}

@media (max-width: 600px) {
  .footer__circle {
    top: -106px;
    height: 11rem;
    width: 11rem;
    left: 24px;
    margin-left: 20;
  }

  .footer__circle-inner {
    width: 170px;
    height: 170px;
  }

  .footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3.5rem 1.5rem 3rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin-left: 2.5rem;
  }

  .footer__note {
    padding-left: 4rem;
    padding-top: 5rem;
  }

  .footer__note-text {
    width: max-content;
  }

  .footer {
    height: 600px;
  }
}

@media (max-width: 480px) {
  .team__badge-img {
    height: 42px;
  }

  .team__badge-text {
    font-size: 1.25rem;
  }

  .whatwedo__badge-img {
    height: 42px;
  }

  .whatwedo__badge-text {
    font-size: 1.25rem;
  }

  .howwescale__badge-img {
    height: 42px;
  }

  .howwescale__badge-text {
    font-size: 1.25rem;
  }

  .clients__badge-img {
    height: 42px;
  }

  .clients__badge-text {
    font-size: 1.25rem;
  }

  .team__content {
    margin-top: 3rem;
    gap: 3rem;
  }

  .team__grid {
    grid-template-columns: 2fr;
    padding-top: 1.5rem;
    gap: 1.5rem;
  }

  .team-card__image {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero__play-btn {
    bottom: 50%;
  }

  .whatwedo__content,
  .howwescale__content {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .howwescale__text-row {
    gap: 4rem;
    margin-bottom: 4rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .whatwedo__text-row {
    gap: 4rem;
    margin-bottom: 4rem;
    padding-top: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .whatwedo__text,
  .howwescale__text {
    font-size: 16px;
  }

  .whatwedo__logo,
  .howwescale__logo {
    margin-top: 2rem;
  }

  .team__intro {
    font-size: 16px;
    line-height: 1.45;
    padding: 0;
  }

  .clients {
    padding-bottom: 3rem;
  }

  .clients__grid {
    gap: 1rem;
    padding: 2rem 0.75rem;
  }

  .clients__image img {
    width: 70%;
  }

  .footer {
    height: auto;
    min-height: clamp(140px, 35vw, 200px);
  }

  .footer__circle {
    top: -116px;
    transform: translateX(0);
    margin-left: 2rem;
    width: 12rem;
    height: 12rem;
  }

  .footer__inner {
    padding: 3rem 0rem 9rem;
    gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    margin-left: 4rem;
  }
  .footer__note {
    padding-top: 7rem;
    padding-left: 4rem;
  }

  .clients {
    padding-bottom: 12rem;
  }

  .clients__grid {
    padding-top: 4rem;
  }

  .footer__col {
    align-items: flex-start;
  }

  .hero__scroll-indicator {
    bottom: 2rem;
  }

  .team-card__image {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding-bottom: 0;
    aspect-ratio: 401 / 462;
  }

  .team__tagline-wrap,
  .whatwedo__tagline-wrap,
  .howwescale__tagline-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .team__tagline,
  .whatwedo__tagline,
  .howwescale__tagline {
    font-size: 18pt;
    line-height: 1.35;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .team__tagline span,
  .whatwedo__tagline span,
  .howwescale__tagline span {
    flex: 1 1 100%;
    text-align: center;
    order: -1;
  }

  .team__tagline::before,
  .team__tagline::after,
  .whatwedo__tagline::before,
  .whatwedo__tagline::after,
  .howwescale__tagline::before,
  .howwescale__tagline::after {
    display: none;
  }

  .footer__col-title {
    font-family: "Inter", sans-serif;
    font-size: 15pt;
    font-weight: 600;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
    .mail-icon {
      height: 0.5em;
      width: auto;
      vertical-align: middle;
    }
  
    .mapPin-icon {
      height: 0.75em;
      width: auto;
      vertical-align: middle;
    }
  
  .footer__col-title--strong {
    font-size: 25pt;
  }
  
  .footer__col-text {
    margin: 0;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
    color: #909090;
  }
  
  .footer__link {
    font-family: "Inter", sans-serif;
    font-size: 12pt;
    font-style: italic;
    color: #909090;
    text-decoration: underline;
  }
  
  .footer__coords-outer {
    display: inline-flex;
    align-items: center;
    position: relative;
  }
}

@media (max-width:420px) {
  .footer__note {
    padding-left: 4rem;
  }
}

/* Scroll-Animationen – weiche Kurve, sanftes Ausrollen am Ende */
.scroll-animate {
  opacity: 0;
  transform: translateY(100px);
  transition:
    opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Wort-für-Wort-Einblendung: team__intro, whatwedo__text, howwescale__text */
.team__intro.scroll-animate {
  opacity: 1;
  transform: none;
}
.team__intro .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.team__intro.scroll-animate.animate .word {
  opacity: 1;
  transform: translateY(0);
}

.whatwedo__text-row.scroll-animate {
  opacity: 1;
  transform: none;
}
.whatwedo__text-row .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.whatwedo__text-row.scroll-animate.animate .word {
  opacity: 1;
  transform: translateY(0);
}

.howwescale__text-row.scroll-animate {
  opacity: 1;
  transform: none;
}
.howwescale__text-row .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.howwescale__text-row.scroll-animate.animate .word {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-delay-1 {
  transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
  transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
  transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
  transition-delay: 0.4s;
}

.scroll-animate-delay-5 {
  transition-delay: 0.5s;
}

/* Scroll-Effekt-Varianten */
.scroll-effect-scale {
  transform: translateY(0) scale(0.88);
}

.scroll-effect-scale.animate {
  transform: translateY(0) scale(1);
}

.scroll-effect-reveal-left {
  transform: translateX(-80px);
}

.scroll-effect-reveal-left.animate {
  transform: translateX(0);
}

.scroll-effect-reveal-right {
  transform: translateX(80px);
}

.scroll-effect-reveal-right.animate {
  transform: translateX(0);
}

.scroll-effect-rotate {
  transform: perspective(800px) rotateY(-14deg);
}

.scroll-effect-rotate.animate {
  transform: perspective(800px) rotateY(0);
}

/* Green Circle: vom linken Bildschirmrand ins Sichtfeld einfahren */
.scroll-effect-from-left-edge {
  transform: translateX(-100vw);
}

.scroll-effect-from-left-edge.animate {
  transform: translateX(-50%);
}

.scroll-effect-zoom {
  transform: scale(1.15);
}

.scroll-effect-zoom.animate {
  transform: scale(1);
}

.scroll-effect-up {
  transform: translateY(60px);
}

.scroll-effect-up.animate {
  transform: translateY(0);
}

.scroll-effect-flip {
  transform: perspective(600px) rotateX(18deg);
}

.scroll-effect-flip.animate {
  transform: perspective(600px) rotateX(0);
}

/* Matthias-Wolf-Karte: Bild fährt vom linken Bildschirmrand ein */
.team-card--matthias .team-card__image--from-left {
  transform: translateX(-100vw);
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card--matthias.scroll-animate.animate .team-card__image--from-left {
  transform: translateX(0);
}

/* Mark-Laqua-Karte: Bild fährt vom rechten Bildschirmrand ein */
.team-card--mark .team-card__image--from-right {
  transform: translateX(100vw);
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card--mark.scroll-animate.animate .team-card__image--from-right {
  transform: translateX(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .team__intro .word,
  .whatwedo__text-row .word,
  .howwescale__text-row .word {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-animate,
  .scroll-effect-scale,
  .scroll-effect-reveal-left,
  .scroll-effect-reveal-right,
  .scroll-effect-rotate,
  .scroll-effect-zoom,
  .scroll-effect-up,
  .scroll-effect-flip {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-effect-scale.animate,
  .scroll-effect-reveal-left.animate,
  .scroll-effect-reveal-right.animate,
  .scroll-effect-rotate.animate,
  .scroll-effect-zoom.animate,
  .scroll-effect-up.animate,
  .scroll-effect-flip.animate {
    transform: none;
  }

  .team-card--matthias .team-card__image--from-left,
  .team-card--mark .team-card__image--from-right {
    transform: none;
    transition: none;
  }

  .clients__grid .clients__image {
    transition: none;
    transition-delay: 0;
  }

  .team-card__image:hover {
    box-shadow: none;
  }

  .team-card__image:hover img {
    transform: none;
  }

  .team-card--mark .team-card__image video,
  .team-card--matthias .team-card__image video {
    transition: none;
  }

  .team__tagline-wrap .team__tagline::before {
    transform: translateY(18px);
    transition: none;
  }

  .team__tagline-wrap .team__tagline::after {
    transform: translateY(-12px);
    transition: none;
  }
}

/* Imprint page */
.imprint-header {
  width: 100%;
  max-width: var(--max-width);
  padding: 2rem 1.5rem 0;
  margin: 0 auto;
}

.imprint-header__logo {
  display: inline-block;
}

.imprint-header__logo img {
  display: block;
  height: 2rem;
  width: auto;
}

.imprint {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  padding: 3rem 1.5rem 4rem;
  margin: 0 auto;
}

.imprint__title {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--black);
}

.imprint__intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.imprint__block {
  margin-bottom: 1.5rem;
}

.imprint__heading {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--black);
}

.imprint__text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text-gray);
}

.imprint__note {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 2rem 0 0;
  max-width: 42rem;
}

.imprint__link {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.imprint__link:hover {
  color: var(--neon);
}

.imprint__title--lang {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.imprint__back {
  margin: 3rem 0 3rem;
}

.imprint__link--back {
  text-decoration: none;
  font-weight: 700;
}

.footer--imprint .footer__inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

