@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("assets/fonts/material-symbols-outlined.woff2") format("woff2");
}
:root {
  --navy: #071825;
  --navy-2: #0d2735;
  --cyan: #31d4df;
  --cyan-soft: #ccf4f5;
  --paper: #f4f1ea;
  --ink: #10222c;
  --muted: #5d6a70;
  --line: rgba(16, 34, 44, 0.16);
  --white: #fff;
  --radius: 22px;
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-style: normal;
  font-size: 1.15em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 108px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  color: #fff;
}
.brand img,
.footer-brand img {
  width: 185px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}
.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 42px;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav a {
  opacity: 0.78;
  transition: 0.25s;
}
.desktop-nav a:hover {
  opacity: 1;
  color: var(--cyan);
}
.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 13px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 22px;
  align-items: center;
  transition: 0.25s;
}
.header-cta:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 0;
}
.hero {
  height: min(920px, 100vh);
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 22, 35, 0.98) 0%,
      rgba(4, 22, 35, 0.76) 38%,
      rgba(4, 22, 35, 0.18) 75%
    ),
    url("assets/hero-meeting.webp") center/cover no-repeat;
  transform: scale(1.01);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 13, 21, 0.25),
    transparent 35%,
    rgba(3, 13, 21, 0.35)
  );
  pointer-events: none;
}
.hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 8vw, 128px);
  top: 50%;
  transform: translateY(-46%);
  width: min(760px, 70vw);
}
.eyebrow,
.section-label {
  font-family: Manrope, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 11px;
}
.eyebrow span {
  width: 25px;
  height: 2px;
  background: var(--cyan);
}
.hero h1 {
  font-family: Manrope, sans-serif;
  font-size: clamp(60px, 7.2vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  margin: 30px 0 28px;
  font-weight: 600;
}
.hero h1 em,
.display-title em,
.contact h2 em {
  font-style: normal;
  color: var(--cyan);
}
.hero-copy {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 42px;
}
@media (min-width: 701px) {
  .hero-content {
    top: 48%;
  }
  .hero-content.reveal {
    transform: translateY(calc(-50% + 25px));
  }
  .hero-content.reveal.visible {
    transform: translateY(-50%);
  }
}
.button {
  padding: 17px 22px;
  border-radius: 100px;
  font-weight: 600;
  display: inline-flex;
  gap: 30px;
  align-items: center;
}
.button-primary {
  background: var(--cyan);
  color: var(--navy);
}
.text-link {
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 0;
}
.text-link span {
  margin-left: 14px;
  color: var(--cyan);
}
.hero-proof {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 7vw, 110px);
  bottom: 78px;
  border-left: 2px solid var(--cyan);
  padding-left: 18px;
  display: flex;
  gap: 20px;
}
.hero-proof strong {
  font-family: Manrope;
  font-size: 20px;
}
.hero-proof span {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
}
.scroll-note {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 34px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}
.scroll-note span {
  color: var(--cyan);
  margin-top: 12px;
}
.section {
  padding: 120px clamp(24px, 8vw, 128px);
}
.section-label {
  color: #657278;
}
.section-label span {
  color: #98a2a6;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 8vw;
  margin: 35px 0 78px;
}
.display-title {
  font-family: Manrope, sans-serif;
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0;
  font-weight: 600;
}
.display-title em {
  color: #00aebb;
}
.intro-copy {
  padding-top: 13px;
  max-width: 470px;
}
.intro-copy p,
.promise-content > p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 36px;
}
.inline-link {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
  font-weight: 700;
  font-size: 14px;
}
.inline-link span {
  color: #00aebb;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card {
  min-height: 410px;
  padding: 28px 27px 26px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.35s;
}
.service-card:first-child {
  border-left: 0;
}
.service-card:hover {
  background: #fff;
  transform: translateY(-7px);
  box-shadow: 0 18px 60px rgba(9, 31, 43, 0.08);
}
.service-card-featured {
  background: var(--cyan);
  border-color: transparent;
}
.service-number {
  font-family: Manrope;
  font-size: 11px;
  color: #829095;
}
.service-icon {
  margin: 56px 0 30px;
  height: 44px;
  display: flex;
  align-items: center;
}
.service-icon .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-size: 44px;
  font-weight: 300;
  color: var(--ink);
}
.service-card h3 {
  font-family: Manrope;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.service-card > a {
  margin-top: auto;
  align-self: flex-end;
  border: 1px solid var(--line);
  border-radius: 100%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.promise {
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.promise-photo {
  height: 660px;
  position: relative;
}
.promise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}
.photo-badge {
  position: absolute;
  right: -55px;
  bottom: 42px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  transform: rotate(-7deg);
}
.photo-badge strong {
  font-family: Manrope;
  font-size: 22px;
  line-height: 1.05;
}
.photo-badge span {
  font-size: 11px;
  line-height: 1.4;
  margin-top: 11px;
}
.promise .section-label {
  color: rgba(255, 255, 255, 0.55);
}
.promise .display-title {
  margin: 30px 0 34px;
}
.promise-content > p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 570px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 34px;
  margin-top: 55px;
}
.facts div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.facts strong {
  font-family: Manrope;
  font-size: 34px;
  color: var(--cyan);
}
.facts span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 65px;
}
.news-head .display-title {
  margin-top: 28px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.news-card {
  height: 560px;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: 0.35s;
}
.news-card:hover {
  transform: translateY(-8px);
}
.news-card-dark {
  background: #102734;
  color: white;
}
.news-card-cyan {
  background: var(--cyan);
  color: var(--navy);
}
.news-card-light {
  background: #dedbd2;
}
.tag {
  align-self: flex-start;
  border: 1px solid currentColor;
  border-radius: 100px;
  padding: 7px 11px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.news-card > div:last-of-type {
  margin-top: auto;
}
.news-card time {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  opacity: 0.55;
}
.news-card h3 {
  font-family: Manrope;
  font-size: 29px;
  letter-spacing: -0.035em;
  margin: 8px 0;
}
.news-card p {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.67;
  max-width: 290px;
}
.card-arrow {
  position: absolute;
  right: 26px;
  bottom: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.abstract-panel {
  height: 230px;
  margin: 40px -28px 0;
  position: relative;
  background: linear-gradient(135deg, #203e4e, #081922);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: perspective(500px) rotateY(-12deg);
}
.abstract-panel i {
  position: absolute;
  display: block;
  border: 1px solid rgba(49, 212, 223, 0.55);
  border-radius: 50%;
}
.abstract-panel i:nth-child(1) {
  width: 145px;
  height: 145px;
  left: 38px;
  top: 34px;
}
.abstract-panel i:nth-child(2) {
  width: 85px;
  height: 85px;
  left: 85px;
  top: 64px;
}
.abstract-panel i:nth-child(3) {
  width: 18px;
  height: 18px;
  right: 45px;
  top: 35px;
  background: var(--cyan);
}
.abstract-panel b {
  font-family: Manrope;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  right: 12px;
  bottom: -20px;
}
.event-mark {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope;
  font-weight: 800;
  letter-spacing: -0.08em;
}
.event-mark span {
  font-size: 56px;
  line-height: 0.74;
}
.event-mark strong {
  font-size: 130px;
  line-height: 1;
  color: rgba(7, 24, 37, 0.14);
}
.location-art {
  height: 240px;
  margin: 25px -28px 0;
  position: relative;
  overflow: hidden;
}
.location-art span {
  position: absolute;
  width: 75%;
  height: 160%;
  border: 2px solid rgba(16, 34, 44, 0.14);
  transform: rotate(48deg);
  left: -13%;
  top: -50%;
}
.location-art span:nth-child(2) {
  left: 35%;
  top: -30%;
}
.location-art i {
  position: absolute;
  font-style: normal;
  font-size: 80px;
  right: 70px;
  top: 70px;
  color: #00aebb;
}
.partners {
  padding-top: 30px;
}
.partner-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-row span {
  height: 115px;
  display: grid;
  place-items: center;
  font-family: Manrope;
  font-weight: 800;
  color: #748087;
  border-left: 1px solid var(--line);
  font-size: 17px;
}
.partner-row span:first-child {
  border: 0;
}
.contact {
  background: var(--navy-2);
  color: white;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.contact-copy {
  position: relative;
  z-index: 2;
}
.section-label.light {
  color: rgba(255, 255, 255, 0.55);
}
.contact h2 {
  font-family: Manrope;
  font-size: clamp(55px, 6.3vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 28px 0;
}
.contact p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  max-width: 580px;
}
.round-cta {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
  flex-shrink: 0;
}
.round-cta:hover {
  transform: scale(1.06) rotate(3deg);
}
.round-cta > span {
  font-family: Manrope;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.round-cta .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-size: 26px;
  font-weight: 400;
}
.round-cta b {
  font-size: 22px;
  margin-top: 18px;
}
.contact-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  right: 8%;
  top: -45%;
  background: radial-gradient(circle, var(--cyan), rgba(49, 212, 223, 0) 68%);
  opacity: 0.18;
  filter: blur(16px);
}
footer {
  background: #04111a;
  color: white;
  padding: 80px clamp(24px, 8vw, 128px) 30px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 70px;
}
.footer-main h4 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 20px;
}
.footer-main div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-main a,
.footer-main p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.67);
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom > span:nth-child(2) {
  display: flex;
  gap: 25px;
}
.to-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: white;
}
.mobile-menu {
  position: fixed;
  z-index: 15;
  inset: 0;
  background: var(--navy);
  color: white;
  padding: 130px 28px 50px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: Manrope;
  font-size: 38px;
  transform: translateY(-100%);
  transition: 0.45s;
}
.mobile-menu.open {
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .service-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .promise {
    grid-template-columns: 1fr;
  }
  .promise-photo {
    height: 540px;
  }
  .photo-badge {
    right: 30px;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-card:last-child {
    grid-column: 1/-1;
  }
  .partner-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .partner-row span:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .partner-row span:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 700px) {
  .site-header {
    height: 82px;
    padding: 0 20px;
  }
  .brand img {
    width: 150px;
  }
  .hero {
    min-height: 740px;
    height: 100svh;
  }
  .hero-media {
    background-position: 62% center;
  }
  .hero-content {
    left: 22px;
    right: 22px;
    width: auto;
    top: 49%;
    transform: translateY(-45%);
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-copy {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }
  .hero-proof,
  .scroll-note {
    display: none;
  }
  .section {
    padding: 82px 22px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    margin-bottom: 55px;
    gap: 30px;
  }
  .display-title {
    font-size: 43px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 360px;
  }
  .service-card:first-child {
    border-top: 0;
  }
  .promise {
    gap: 55px;
  }
  .promise-photo {
    height: 430px;
  }
  .photo-badge {
    width: 155px;
    height: 155px;
    right: 10px;
    bottom: 15px;
    padding: 25px;
  }
  .photo-badge strong {
    font-size: 17px;
  }
  .facts {
    gap: 12px;
  }
  .facts strong {
    font-size: 27px;
  }
  .news-head {
    display: block;
  }
  .news-head .inline-link {
    margin-top: 25px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card:last-child {
    grid-column: auto;
  }
  .news-card {
    height: 500px;
  }
  .partner-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-row span:nth-child(odd) {
    border-left: 0;
  }
  .partner-row span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 55px;
  }
  .contact h2 {
    font-size: 49px;
  }
  .round-cta {
    width: 170px;
    height: 170px;
    align-self: flex-end;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    align-items: flex-start;
    gap: 22px;
    flex-wrap: wrap;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
  }
}
.product-art {
  height: 245px;
  margin: 22px -18px 0;
  display: grid;
  place-items: center;
}
.product-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-art-panel {
  margin-top: 18px;
}
.product-art-panel img {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}
.product-art-sennheiser {
  position: relative;
  margin-top: 18px;
  background: radial-gradient(
    circle,
    rgba(49, 212, 223, 0.17),
    transparent 66%
  );
}
.product-art-sennheiser:before {
  content: "ALL-IN-ONE";
  position: absolute;
  font:
    700 42px Manrope,
    sans-serif;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.045);
  white-space: nowrap;
}
.product-art-sennheiser img {
  position: relative;
  width: 116%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}
.product-art-soundlift {
  position: relative;
  height: 270px;
  margin: 10px -28px 0;
  overflow: visible;
}
.product-art-soundlift img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 382px;
  height: 270px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: translate3d(-50%, -50%, 0);
  filter: drop-shadow(0 14px 20px rgba(16, 34, 44, 0.13));
}
.partners.section {
  padding-left: 0;
  padding-right: 0;
}
.partner-head {
  padding: 0 clamp(24px, 8vw, 128px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.partner-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: #6e7b80;
  border-radius: 100px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font:
    600 10px Manrope,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.25s;
}
.partner-toggle:hover {
  border-color: #879398;
  color: var(--ink);
}
.partner-toggle span {
  font-size: 11px;
  color: #00aebb;
}
.partner-marquee {
  margin-top: 46px;
  overflow: hidden;
  scrollbar-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.partner-marquee::-webkit-scrollbar {
  display: none;
}
.partner-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  max-width: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  animation: partner-scroll var(--partner-duration, 93s) linear infinite;
}
.partner-set {
  display: flex;
  flex: none;
}
.partner-logo {
  width: clamp(190px, 17vw, 255px);
  height: 132px;
  padding: 36px 42px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  flex: none;
}
.partner-logo img {
  width: 100%;
  height: 100%;
  max-width: 165px;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) brightness(0.68);
  opacity: 0.62;
  transition:
    opacity 0.25s,
    filter 0.25s;
}
.partner-logo-jabra img {
  transform: scale(2.05);
}
.partner-logo:hover img {
  opacity: 0.88;
  filter: grayscale(1) saturate(0) brightness(0.55);
}
.partner-marquee.is-paused .partner-track {
  animation-play-state: paused;
}
@keyframes partner-scroll {
  to {
    transform: translate3d(var(--partner-shift, -50%), 0, 0);
  }
}
@-webkit-keyframes partner-scroll {
  to {
    -webkit-transform: translate3d(var(--partner-shift, -50%), 0, 0);
    transform: translate3d(var(--partner-shift, -50%), 0, 0);
  }
}
@media (max-width: 700px) {
  .partner-head {
    align-items: flex-start;
  }
  .partner-toggle {
    padding: 8px 11px;
  }
  .partner-logo {
    width: 175px;
    height: 106px;
    padding: 27px 30px;
  }
  .partner-logo img {
    max-width: 120px;
    max-height: 42px;
  }
  .partner-logo-jabra img {
    transform: scale(1.85);
  }
  .partner-marquee {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent,
      #000 4%,
      #000 96%,
      transparent
    );
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 4%,
      #000 96%,
      transparent
    );
  }
}
.partner-logo img {
  filter: grayscale(1) saturate(0);
  opacity: 0.56;
  mix-blend-mode: multiply;
}
.partner-logo:hover img {
  filter: grayscale(1) saturate(0);
  opacity: 0.84;
}
.partner-logo-jabra img {
  transform: scale(2.45);
}
.partner-logo-word,
.partner-logo-bambulab {
  display: flex;
  gap: 10px;
}
.partner-logo-word img,
.partner-logo-bambulab img {
  width: 35px;
  height: 35px;
  flex: none;
}
.partner-logo-word b,
.partner-logo-bambulab b {
  font:
    700 19px Manrope,
    sans-serif;
  white-space: nowrap;
  color: #707b80;
}
.partner-logo-easescreen img {
  max-width: 176px;
  max-height: 48px;
}
.partner-logo-sennheiser img {
  width: 31px;
  height: 31px;
}
.partner-logo-fohhn img {
  width: 32px;
  height: 32px;
}
.partner-logo-lenovo img {
  transform: scale(1.72);
}
.partner-logo-dell img {
  transform: scale(1.12);
}
.partner-logo-purelink img {
  transform: scale(1.12);
}
.partner-logo-atlona img {
  max-width: 178px;
  max-height: 47px;
}
.partner-logo-hp img,
.partner-logo-lg img {
  max-width: 64px;
}
.partner-set[aria-hidden="true"] .partner-logo-word b,
.partner-set[aria-hidden="true"] .partner-logo-bambulab b {
  color: #707b80;
}
@media (max-width: 700px) {
  .partner-logo-jabra img {
    transform: scale(2.15);
  }
  .partner-logo-word,
  .partner-logo-bambulab {
    gap: 8px;
  }
  .partner-logo-word img,
  .partner-logo-bambulab img {
    width: 29px;
    height: 29px;
  }
  .partner-logo-word b,
  .partner-logo-bambulab b {
    font-size: 16px;
  }
  .partner-logo-easescreen img {
    max-width: 132px;
    max-height: 38px;
  }
  .partner-logo-sennheiser img,
  .partner-logo-fohhn img {
    width: 26px;
    height: 26px;
  }
  .partner-logo-lenovo img {
    transform: scale(1.55);
  }
  .partner-logo-hp img,
  .partner-logo-lg img {
    max-width: 52px;
  }
}
.partner-logo-omada img,
.partner-logo-purelink img {
  filter: grayscale(1) brightness(0.48);
  opacity: 0.7;
}
.partner-logo-omada:hover img,
.partner-logo-purelink:hover img {
  filter: grayscale(1) brightness(0.38);
  opacity: 0.9;
}
.partner-logo-vogels img {
  transform: scale(1.16);
}
.partner-logo-smf img {
  max-width: 150px;
  max-height: 56px;
}
.partner-logo-conen b {
  font-size: 19px;
  letter-spacing: -0.035em;
}
.partner-logo-conen b span {
  font-weight: 500;
}
.partner-logo-heinekingmedia img {
  max-width: 178px;
}
.partner-logo-biamp img {
  max-width: 148px;
  max-height: 48px;
}
.partner-logo-ninjaone img {
  max-width: 166px;
  max-height: 54px;
}
.partner-logo-microsoft img {
  width: 29px;
  height: 29px;
}
.partner-logo-microsoft b {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.page-visual-fade-left {
  background: transparent;
  box-shadow: none;
  border-radius: 0 26px 26px 0;
}
.page-visual-fade-left img {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 0.22) 10%,
    #000 34%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 0.22) 10%,
    #000 34%
  );
  border-radius: 0 26px 26px 0;
}

/* Consent-Dialog und einwilligungsabhängiger Spamschutz */
.consent-banner {
  position: fixed;
  z-index: 1000;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 36px);
  left: clamp(16px, 3vw, 42px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(7, 24, 37, 0.97);
  color: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
.consent-banner[hidden],
.consent-backdrop[hidden] {
  display: none;
}
.consent-banner-copy {
  max-width: 700px;
}
.consent-banner-copy strong {
  font-family: Manrope, sans-serif;
  font-size: 20px;
}
.consent-banner-copy p {
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}
.consent-banner-copy a,
.captcha-field a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-actions,
.consent-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.consent-actions button,
.consent-dialog-actions button,
.captcha-consent-panel button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
}
.consent-actions .is-primary,
.consent-dialog-actions .is-primary,
.consent-dialog-actions button:first-child,
.captcha-consent-panel button {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--navy);
}
.consent-backdrop {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 13, 20, 0.76);
  backdrop-filter: blur(8px);
}
.consent-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}
.consent-dialog h2 {
  margin: 8px 0 12px;
  font-family: Manrope, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.05;
}
.consent-dialog > p {
  color: var(--muted);
  line-height: 1.65;
}
.consent-kicker {
  color: #087b85;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.consent-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
}
.consent-option {
  margin: 12px 0;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.consent-option div {
  display: grid;
  gap: 4px;
}
.consent-option small {
  color: var(--muted);
  line-height: 1.45;
}
.consent-option input {
  width: 22px;
  height: 22px;
  accent-color: #087b85;
  flex: 0 0 auto;
}
.consent-dialog-actions {
  margin-top: 24px;
  justify-content: flex-end;
}
.consent-dialog-actions button {
  border-color: rgba(16, 34, 44, 0.22);
  color: var(--ink);
}
.consent-settings-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  opacity: 0.75;
}
.consent-settings-link:hover {
  opacity: 1;
  color: var(--cyan);
}
.consent-open {
  overflow: hidden;
}
.captcha-field {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(16, 34, 44, 0.15);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.58);
}
.captcha-field > small {
  color: var(--muted);
  line-height: 1.5;
}
.captcha-consent-panel {
  display: grid;
  justify-items: start;
  gap: 8px;
}
.captcha-consent-panel[hidden] {
  display: none;
}
.captcha-consent-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.captcha-consent-panel button {
  margin-top: 4px;
}
#recaptcha-container {
  min-height: 78px;
}
#recaptcha-container[hidden] {
  display: none;
}

@media (max-width: 780px) {
  .consent-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }
  .consent-actions button {
    flex: 1 1 auto;
  }
  .consent-dialog-actions {
    flex-direction: column;
  }
  .consent-dialog-actions button {
    width: 100%;
  }
}
