:root {
  color-scheme: dark;
  --_font-default: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --_font-accent: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
button, input, textarea, select {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mxd-loader {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mxd-loader__images {
  border-radius: 50%;
  overflow: hidden;
}
.mxd-loader__images img {
  border-radius: 50%;
}

:root {

  --base--light: #FAF7F6;
  --base-rgb--light: 250, 247, 246;
  --base-tint--light: #FFFFFF;
  --base-tint-rgb--light: 255, 255, 255;
  --base-bright--light: #FFFFFF;
  --base-bright-rgb--light: 255, 255, 255;
  --accent--light: #161616;
  --highlight--light: #4a4a4a;
  --base-opp--light: #161616;
  --base-opp-rgb--light: 22, 22, 22;
  --t-bright--light: #161616;
  --t-medium--light: #4a4a4a;
  --t-muted--light: #7a7a7a;
  --t-muted-extra--light: #d6d3d1;
  --t-opp-bright--light: #FFFFFF;
  --t-opp-medium--light: #b5b5b5;
  --t-opp-muted--light: #2a2a2a;

  --base--dark: #161616;
  --base-rgb--dark: 22, 22, 22;
  --base-tint--dark: #1d1d1d;
  --base-tint-rgb--dark: 29, 29, 29;
  --base-bright--dark: #0e0e0e;
  --base-bright-rgb--dark: 14, 14, 14;
  --accent--dark: #FAF7F6;
  --highlight--dark: #c8c4c2;
  --base-opp--dark: #FAF7F6;
  --base-opp-rgb--dark: 250, 247, 246;
  --t-bright--dark: #FAF7F6;
  --t-medium--dark: #b5b1ad;
  --t-muted--dark: #828282;
  --t-muted-extra--dark: #2c2c2c;
  --t-opp-bright--dark: #161616;
  --t-opp-medium--dark: #4a4a4a;
  --t-opp-muted--dark: #d6d3d1;
}

#mxd-cursor,
.mxd-cursor,
.mxd-trail-transparent-wrapper,
.mxd-trail-transparent-content,
.mxd-trail-transparent-image,
.cursor-trail-transparent .mxd-trail-transparent-wrapper {
  display: none !important;
}

body,
a,
button,
.btn {
  cursor: auto;
}
a, button, .btn, .mxd-menu__hamburger, [role="button"] { cursor: pointer; }

.mxd-logo,
.menu-logo {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}
.mxd-logo .mxd-logo__image,
.menu-logo .menu-logo__image {
  height: 28px;
  width: auto;
  display: inline-block;
  transition: filter .25s ease;
}
.mxd-logo .mxd-logo__text,
.menu-logo .menu-logo__text { display: none; }

[color-scheme="dark"] .mxd-logo__image {
  filter: invert(1) brightness(1.06);
}
[color-scheme="light"] .mxd-logo__image {
  filter: none;
}
.menu-logo__image { filter: none !important; }

.mxd-header {
  padding-top: 3rem;
}

.mxd-header__controls {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .mxd-header__controls {
    gap: 1.6rem;
  }
}

#header .mxd-color-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem !important;
  height: 4.6rem !important;
  min-width: 4.6rem;
  padding: 0 !important;
  line-height: 1 !important;
  border: none;
  outline: 0;
  border-radius: 50%;
  background-color: transparent;

  color: var(--t-bright--light);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
[color-scheme="dark"] #header .mxd-color-switcher {
  color: #ffffff;
}
#header .mxd-color-switcher::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
  transform: translate(-50%, -50%) scale(1);
  transition: background-color var(--_animspeed-medium) var(--_animbezier),
    transform var(--_animspeed-medium) var(--_animbezier);
  z-index: 0;
}
#header .mxd-color-switcher i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  font-size: 2rem;
  line-height: 1;
  overflow: hidden;
  transform: scale(1);
  transition: transform var(--_animspeed-medium) var(--_animbezier);
  color: inherit;
}
#header .mxd-color-switcher i::before {
  color: inherit;
}
@media (hover: hover) {
  #header .mxd-color-switcher:hover::before {
    background-color: rgba(22, 22, 22, 0.08);
    transform: translate(-50%, -50%) scale(1.04);
  }
  #header .mxd-color-switcher:hover i {
    transform: scale(0.92);
  }
  [color-scheme="dark"] #header .mxd-color-switcher:hover::before {
    background-color: rgba(255, 255, 255, 0.14);
  }
}
@media only screen and (min-width: 768px) {
  #header .mxd-color-switcher {
    width: 5rem !important;
    height: 5rem !important;
    min-width: 5rem;
  }
  #header .mxd-color-switcher i {
    font-size: 2.65rem;
  }
}

.btn-mobile-icon {
  width: 4.6rem;
  height: 4.6rem;
  padding: 0;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-mobile-icon i {
  font-size: 2rem;
}
.btn-mobile-icon .btn-caption {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .btn-mobile-icon {
    width: auto;
    height: 5rem;
    padding: 0 2rem;
    border-radius: 2.5rem;
  }
  .btn-mobile-icon i {
    font-size: 2.4rem;
  }
  .btn-mobile-icon .btn-caption {
    display: inline-flex !important;
  }
}
.mxd-header .btn-default-outline.btn-mobile-icon {
  gap: 0.8rem;

  color: var(--t-bright--light) !important;
  border-color: rgba(22, 22, 22, 0.78) !important;
}
[color-scheme="dark"] .mxd-header .btn-default-outline.btn-mobile-icon {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.88) !important;
}
.mxd-header .btn-default-outline.btn-mobile-icon i {
  background-color: transparent !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.mxd-header .btn-default-outline.btn-mobile-icon i::before {
  color: inherit;
}
@media (hover: hover) {
  .mxd-header .btn-default-outline.btn-mobile-icon:hover {
    background-color: rgba(22, 22, 22, 0.06);
    border-color: #161616 !important;
    color: #161616 !important;
  }
  [color-scheme="dark"] .mxd-header .btn-default-outline.btn-mobile-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff !important;
    color: #fff !important;
  }
}

.mxd-menu__contain {
  mix-blend-mode: normal;
}
.mxd-menu__hamburger {
  width: 4.6rem !important;
  height: 4.6rem !important;
  gap: 0.7rem !important;
  padding: 0;
  overflow: visible !important;
}
.mxd-menu__hamburger .hamburger__base {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 3.8rem;
  background-color: rgba(22, 22, 22, 0.92);
}
[color-scheme="dark"] .mxd-menu__hamburger .hamburger__base {
  background-color: rgba(255, 255, 255, 0.14);
}
.mxd-menu__hamburger.active .hamburger__base {
  background-color: rgba(22, 22, 22, 0.92);
}
.mxd-menu__hamburger .hamburger__line {
  width: 50% !important;
  height: 0.3rem !important;
  border-radius: 0.3rem;

  background-color: #ffffff !important;
  z-index: 2;
}
[color-scheme="dark"] .mxd-menu__hamburger .hamburger__line {

  background-color: #ffffff !important;
}
@media only screen and (min-width: 768px) {
  .mxd-menu__hamburger {
    width: 5rem !important;
    height: 5rem !important;
  }
}

.mxd-showcase-clip__image {
  border-radius: 50%;
}
.mxd-showcase-clip__image img {
  border-radius: 50%;
}

.mxd-showcase-clip__image.rip-frosted {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  contain: paint;
}
.mxd-showcase-clip__image.rip-frosted .rip-frosted__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.15);
  filter: blur(20px);
  border-radius: 0;
  pointer-events: none;
  z-index: 0;
}
.mxd-showcase-clip__image.rip-frosted .rip-frosted__mark {
  position: relative;
  z-index: 1;
  width: 26%;
  height: auto;
  display: block;
  border-radius: 0;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.40));
}
@media (min-width: 1200px) {
  .mxd-showcase-clip__image.rip-frosted .rip-frosted__mark {
    width: 24%;
  }
}

/* Mobile: showcase-clip image kleiner (~35%) – Desktop bleibt unverändert */
@media (max-width: 991.98px) {
  .mxd-showcase-clip__image.rip-frosted {
    width: 65%;
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
  }
}

.mxd-about-team .mxd-about-team__img {
  overflow: hidden;
  border-radius: 1.25rem;
}
.mxd-about-team .mxd-about-team__img img {
  border-radius: 1.25rem;
}
@media (min-width: 768px) {
  .mxd-about-team .mxd-about-team__img,
  .mxd-about-team .mxd-about-team__img img {
    border-radius: 1.75rem;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.mxd-hero-05 .mxd-hero-05__headline h1 {
  font-size: clamp(2.8rem, 9vw, 7.5rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
  color: #ffffff !important;
  mix-blend-mode: normal !important;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.22);
}
.mxd-hero-05 .mxd-hero-05__headline h1 small {
  font-size: clamp(2.8rem, 9vw, 7.5rem) !important;
  letter-spacing: -0.025em !important;
  display: block;
  color: #ffffff !important;
}

.mxd-hero-05 .mxd-hero-05__top {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.mxd-section.mxd-hero-special {
  background-color: #000000 !important;
}

.mxd-hero-05 .rip-hero-headline {
  position: relative;
  isolation: isolate;
}
.mxd-hero-05 .rip-hero-headline .rip-hero-wobble {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 0;
  width: clamp(28rem, 52vw, 62rem);
  height: clamp(28rem, 48vw, 58rem);
  opacity: 0.24;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 999rem;
  pointer-events: none;
  filter: saturate(1.08) contrast(1.08);
  -webkit-mask-image: radial-gradient(circle, #000 58%, rgba(0, 0, 0, 0.55) 72%, transparent 100%);
          mask-image: radial-gradient(circle, #000 58%, rgba(0, 0, 0, 0.55) 72%, transparent 100%);
}
.mxd-hero-05 .rip-hero-headline .rip-hero-wobble video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mxd-hero-05 .rip-hero-headline > :not(.rip-hero-wobble) {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .mxd-hero-05 .rip-hero-headline .rip-hero-wobble {
    top: 43%;
    width: clamp(24rem, 86vw, 38rem);
    height: clamp(24rem, 86vw, 38rem);
    opacity: 0.2;
  }
}

.blur-container {
  z-index: 50 !important;
}

@media only screen and (max-width: 1199px) {
  .mxd-hero-05 .mxd-hero-05__wrap {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 3rem;
    padding-top: 9rem !important;
    padding-bottom: 3rem !important;
  }
  .mxd-hero-05 .mxd-hero-05__top {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mxd-hero-05 .mxd-hero-05__bottom {
    width: 100%;
    position: static !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 auto;
  }
  .mxd-hero-05 .mxd-hero-05__dataline {
    width: 100%;
    gap: 1.4rem;
  }
  .mxd-hero-05 .hero-05-dataline__caption {
    position: static !important;
    transform: none !important;
    height: auto !important;
    margin: 0 !important;
    font-size: 1.6rem !important;
    line-height: 1.35 !important;
    letter-spacing: -0.01em !important;
    color: rgba(255, 255, 255, 0.78) !important;
    max-width: 36rem;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .mxd-section.mxd-hero-special {
    height: auto !important;
    min-height: 75svh !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .mxd-section.mxd-hero-special {
    height: auto !important;
    min-height: 85svh !important;
  }
}

@media only screen and (max-width: 767px) {
  .mxd-section.mxd-hero-special:not(.cursor-trail-transparent) {
    height: auto !important;
    min-height: 72svh !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .mxd-section.mxd-hero-special:not(.cursor-trail-transparent) {
    height: auto !important;
    min-height: 78svh !important;
  }
}

@media only screen and (min-width: 1200px) {
  .mxd-section.mxd-hero-special:not(.cursor-trail-transparent) {
    height: 78svh !important;
    min-height: 78svh !important;
  }
}

/* Kontaktseite: kompakter Hero + weniger Abstand zu Kontaktzeilen */
.mxd-section.mxd-hero-special.rip-hero-contact:not(.cursor-trail-transparent) {
  height: auto !important;
  min-height: 0 !important;
}

@media only screen and (max-width: 1199px) {
  .mxd-section.mxd-hero-special.rip-hero-contact .mxd-hero-05 .mxd-hero-05__wrap {
    justify-content: flex-start !important;
    gap: 1rem !important;
    padding-top: clamp(4.75rem, 11vw, 6.25rem) !important;
    padding-bottom: 0.5rem !important;
  }
  .mxd-section.mxd-hero-special.rip-hero-contact .mxd-hero-05 .mxd-hero-05__top {
    flex: 0 0 auto !important;
    align-items: flex-start !important;
  }
}

@media only screen and (min-width: 1200px) {
  .mxd-section.mxd-hero-special.rip-hero-contact .mxd-hero-05 {
    height: auto !important;
  }
  .mxd-section.mxd-hero-special.rip-hero-contact .mxd-hero-05 .mxd-hero-05__wrap {
    height: auto !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: clamp(7rem, 8vw, 9rem) !important;
    padding-bottom: 1rem !important;
    box-sizing: border-box;
  }
}

.mxd-section.mxd-hero-special.rip-hero-contact .mxd-hero-05 .rip-hero-mark {
  height: clamp(3.5rem, 8.5vw, 6.5rem);
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .mxd-section.mxd-hero-special.rip-hero-contact .mxd-hero-05 .rip-hero-mark {
    margin-bottom: 1.25rem;
  }
}

.mxd-section.mxd-hero-special.rip-hero-contact .rip-apple-statement--in-hero .rip-apple-statement__title {
  margin-bottom: 1.35rem !important;
}
.mxd-section.mxd-hero-special.rip-hero-contact .rip-apple-statement--in-hero .rip-apple-statement__actions {
  margin-top: 1.35rem !important;
}

@media (max-width: 600px) {
  .mxd-section.mxd-hero-special.rip-hero-contact .rip-apple-statement--in-hero .rip-apple-statement__title {
    margin-bottom: 1rem !important;
  }
  .mxd-section.mxd-hero-special.rip-hero-contact .rip-apple-statement--in-hero .rip-apple-statement__actions {
    margin-top: 1.15rem !important;
  }
}

/* Kontakt: nach Hero nur noch moderater Abstand (statt padding-top-subtitle) */
.mxd-section.rip-kontakt-section {
  padding-top: clamp(1.25rem, 3.5vw, 2.75rem) !important;
}
@media only screen and (min-width: 992px) {
  .mxd-section.rip-kontakt-section {
    padding-top: clamp(1.75rem, 2.8vw, 3.25rem) !important;
  }
}

/* Frühzugang-State-Seiten (z. B. zugang-danke, bestaetigen): pageAppearance() blendet
   alle .loading-fade global erst nach ~1s ein – ohne Klasse am Badge wirkt es „versetzt“.
   Badge + Texte gleich sichtbar; Badge fest zentriert. */
.rip-state-hero .loading-fade {
  opacity: 1 !important;
}

.rip-state-hero__badge {
  align-self: center;
  flex-shrink: 0;
  transform-origin: center center;
}

.mxd-hero-05 .rip-hero-mark {
  display: block;
  margin: 0 auto 2rem;
  height: clamp(5rem, 11vw, 11rem);
  width: auto;
  color: #ffffff;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.18));
  transform-origin: center center;
  animation:
    rip-hero-mark-in 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) both,
    rip-hero-mark-float 7s ease-in-out 1.4s infinite;
  will-change: transform, opacity;
}
@media only screen and (min-width: 768px) {
  .mxd-hero-05 .rip-hero-mark {
    margin-bottom: 2.5rem;
  }
}

@keyframes rip-hero-mark-in {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(12px);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0)) blur(6px);
  }
  60% {
    opacity: 1;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.18)) blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.18)) blur(0);
  }
}

@keyframes rip-hero-mark-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.015); }
}

@media (prefers-reduced-motion: reduce) {
  .mxd-hero-05 .rip-hero-mark {
    animation: none;
  }
}

.mxd-hero-05 .rip-hero-sub {
  margin: 1.25rem auto 0;
  max-width: 96rem;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: -0.02em;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.20);
}
@media only screen and (min-width: 768px) {
  .mxd-hero-05 .rip-hero-sub {
    margin-top: 1.75rem;
  }
}

.mxd-hero-05 .rip-hero-sub.loading-split .line {

  padding-bottom: .12em;

  will-change: transform, opacity;
}

.mxd-hero-05 .rip-hero-sub.loading-split {
  animation: rip-hero-sub-rise .9s cubic-bezier(.2,.7,.2,1) .25s both;
}

@keyframes rip-hero-sub-rise {
  from { opacity: 0; transform: translateY(.4rem); filter: blur(2px); }
  to   { opacity: 1; transform: translateY(0);     filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .mxd-hero-05 .rip-hero-sub.loading-split {
    animation: none;
  }
}

.mxd-hero-05 .rip-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin: 2rem auto 0;
}
@media only screen and (min-width: 768px) {
  .mxd-hero-05 .rip-hero-cta {
    gap: 1rem;
    margin-top: 2.5rem;
  }
}

.mxd-hero-05 .rip-hero-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  height: 4.75rem;
  padding: 0 2.5rem;
  border-radius: 999px;
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
  will-change: transform;
}
@media only screen and (min-width: 768px) {
  .mxd-hero-05 .rip-hero-cta .btn {
    height: 5.5rem;
    padding: 0 3rem;
    font-size: 1.375rem;
    gap: 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-hero-05 .rip-hero-cta .btn {
    height: 6rem;
    padding: 0 3.5rem;
    font-size: 1.5rem;
  }
}
.mxd-hero-05 .rip-hero-cta .btn .btn-caption {
  display: inline-block;
}
.mxd-hero-05 .rip-hero-cta .btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}
@media only screen and (min-width: 768px) {
  .mxd-hero-05 .rip-hero-cta .btn i {
    width: 1.15rem;
    height: 1.15rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-hero-05 .rip-hero-cta .btn i {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.mxd-hero-05 .rip-hero-cta .btn i svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: transform .25s ease;
}
.mxd-hero-05 .rip-hero-cta .btn:hover {
  transform: translateY(-1px);
}
.mxd-hero-05 .rip-hero-cta .btn:hover i svg {
  transform: rotate(45deg);
}

.mxd-hero-05 .rip-hero-cta__primary {
  background-color: #ffffff;
  color: #0a0a0a;
  border: 1px solid #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.mxd-hero-05 .rip-hero-cta__primary:hover {
  background-color: rgba(255, 255, 255, 0.92);
  color: #000000;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.mxd-hero-05 .rip-hero-cta__ghost {
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.mxd-hero-05 .rip-hero-cta__ghost:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .mxd-hero-05 .rip-hero-cta .btn,
  .mxd-hero-05 .rip-hero-cta .btn i svg {
    transition: none;
  }
  .mxd-hero-05 .rip-hero-cta .btn:hover {
    transform: none;
  }
}

.mxd-hero-05 .rip-hero-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 2.75rem auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  font-family: var(--_font-default);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);

  opacity: 0;
  animation: rip-hero-availability-rise .9s cubic-bezier(.2,.7,.2,1) .55s forwards;
}

.mxd-hero-05 .rip-hero-availability__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.7);
  animation: rip-hero-availability-pulse 2.4s ease-out infinite;
  flex: 0 0 auto;
}

.mxd-hero-05 .rip-hero-availability__text {
  white-space: nowrap;
}

@media only screen and (min-width: 768px) {
  .mxd-hero-05 .rip-hero-availability {
    margin-top: 3.25rem;
    font-size: 1.25rem;
    gap: 0.7rem;
  }
  .mxd-hero-05 .rip-hero-availability__dot {
    width: 0.6rem;
    height: 0.6rem;
  }
}

@keyframes rip-hero-availability-rise {
  from { opacity: 0; transform: translateY(.4rem); filter: blur(2px); }
  to   { opacity: 1; transform: translateY(0);     filter: blur(0); }
}

@keyframes rip-hero-availability-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(110, 231, 183, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(110, 231, 183, 0);    }
  100% { box-shadow: 0 0 0 0   rgba(110, 231, 183, 0);    }
}

@media (prefers-reduced-motion: reduce) {
  .mxd-hero-05 .rip-hero-availability {
    animation: none;
    opacity: 1;
  }
  .mxd-hero-05 .rip-hero-availability__dot {
    animation: none;
  }
}

.btn.rip-pill-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  height: 4.75rem;
  padding: 0 2.5rem;
  border-radius: 999px;
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
  will-change: transform;
}
@media only screen and (min-width: 768px) {
  .btn.rip-pill-cta {
    height: 5.5rem;
    padding: 0 3rem;
    font-size: 1.375rem;
    gap: 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn.rip-pill-cta {
    height: 6rem;
    padding: 0 3.5rem;
    font-size: 1.5rem;
  }
}
.btn.rip-pill-cta .btn-caption {
  display: inline-block;
}
.btn.rip-pill-cta i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}
@media only screen and (min-width: 768px) {
  .btn.rip-pill-cta i {
    width: 1.15rem;
    height: 1.15rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn.rip-pill-cta i {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.btn.rip-pill-cta i svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: transform .25s ease;
}
.btn.rip-pill-cta:hover {
  transform: translateY(-1px);
}
.btn.rip-pill-cta:hover i svg {
  transform: rotate(45deg);
}

.btn.rip-pill-cta.rip-pill-cta--primary {
  background-color: var(--base-opp);
  color: var(--t-opp-bright);
  border: 1px solid var(--base-opp);
  box-shadow: 0 6px 24px rgba(var(--base-opp-rgb), 0.22);
}
.btn.rip-pill-cta.rip-pill-cta--primary:hover {
  background-color: var(--base-opp);
  color: var(--t-opp-bright);
  box-shadow: 0 10px 32px rgba(var(--base-opp-rgb), 0.32);
  filter: brightness(1.04);
}

.btn.rip-pill-cta.rip-pill-cta--ghost {
  background-color: transparent;
  color: var(--t-bright);
  border: 1px solid rgba(var(--base-opp-rgb), 0.45);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.btn.rip-pill-cta.rip-pill-cta--ghost:hover {
  background-color: rgba(var(--base-opp-rgb), 0.06);
  border-color: rgba(var(--base-opp-rgb), 0.85);
  color: var(--t-bright);
}

@media (prefers-reduced-motion: reduce) {
  .btn.rip-pill-cta,
  .btn.rip-pill-cta i svg {
    transition: none;
  }
  .btn.rip-pill-cta:hover {
    transform: none;
  }
}

.mxd-section-title.rip-title-spaced .mxd-section-title__descr {
  margin-top: 1.75rem;
}
@media only screen and (min-width: 768px) {
  .mxd-section-title.rip-title-spaced .mxd-section-title__descr {
    margin-top: 2.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-section-title.rip-title-spaced .mxd-section-title__descr {
    margin-top: 3rem;
  }
}

#manifest {
  padding-bottom: 5rem;
}
@media only screen and (min-width: 768px) {
  #manifest {
    padding-bottom: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  #manifest {
    padding-bottom: 10rem;
  }
}

.mxd-stack-services .services-card__image,
.mxd-stack-services .services-card__image img,
.mxd-stack-services .services-card__cover {
  border-radius: 1.25rem;
}
.mxd-stack-services .services-card__image {
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .mxd-stack-services .services-card__image,
  .mxd-stack-services .services-card__image img,
  .mxd-stack-services .services-card__cover {
    border-radius: 1.75rem;
  }
}

.mxd-footer__fw-mark .fw-mark__content {
  font-size: 27cqw;
  line-height: 1;
}
.mxd-footer__fw-mark .fw-mark__content span {
  letter-spacing: -0.8cqw;
  line-height: 1;
}

.mxd-stack-services .services-card__wrapper,
.mxd-stack-services .services-card__content,
.mxd-stack-services .services-card__info {
  min-width: 0;
}

.services-card__partners.services-card__tags,
.services-card__partners {
  --_partners-gap: 3rem;
  --_partners-duration: 45s;
  display: block;
  gap: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .services-card__partners.services-card__tags,
  .services-card__partners {
    --_partners-gap: 3.5rem;
    margin-top: 1.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .services-card__partners.services-card__tags,
  .services-card__partners {
    margin-bottom: 0;
  }
}

.partners-marquee {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 12%,
    #000 88%,
    transparent 100%
  );
          mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

.partners-marquee__track {
  display: flex;
  align-items: center;
  gap: var(--_partners-gap);
  width: max-content;
  animation: partners-scroll var(--_partners-duration) linear infinite;
  will-change: transform;
}
.partners-marquee:hover .partners-marquee__track {
  animation-play-state: paused;
}

.partners-marquee__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 2.25rem;
  padding: 0 0.25rem;
  font-family: var(--_font-default);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--t-medium);
  opacity: 0.75;
  transition: opacity var(--_animspeed-medium) var(--_animbezier),
              color var(--_animspeed-medium) var(--_animbezier);
}
.partners-marquee__logo:hover {
  opacity: 1;
  color: var(--t-bright);
}
.partners-marquee__logo img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 2.25rem;
  object-fit: contain;
}
@media only screen and (min-width: 768px) {
  .partners-marquee__logo {
    height: 2.5rem;
    font-size: 1.15rem;
  }
  .partners-marquee__logo img {
    max-height: 2.5rem;
  }
}

@keyframes partners-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee__track {
    animation: none;
  }
}

.mxd-cpb-list__image {
  overflow: hidden;
  border-radius: 1.25rem;
}
.mxd-cpb-list__image img {
  border-radius: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .mxd-cpb-list__image,
  .mxd-cpb-list__image img {
    border-radius: 1.75rem;
  }
}

.mxd-testimonials-card__quote.rip-quote-mark {
  width: auto;
  height: 4.4rem;
  display: inline-flex;
  align-items: center;
  color: var(--t-muted);
  opacity: 0.85;
  transition: opacity var(--_animspeed-medium) var(--_animbezier),
              transform var(--_animspeed-medium) var(--_animbezier);
}
.mxd-testimonials-card__quote.rip-quote-mark svg {
  width: auto;
  height: 100%;
  fill: currentColor;
}
.mxd-testimonials-card.slider-card:hover .rip-quote-mark {
  opacity: 1;
  transform: translateY(-2px);
}
@media only screen and (min-width: 768px) {
  .mxd-testimonials-card__quote.rip-quote-mark {
    height: 5.6rem;
  }
}

.rip-fa-card {
  position: relative;
  max-width: 78rem;
  margin: 0 auto;
  padding: 4rem 2.4rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--t-bright);
}

@media only screen and (min-width: 768px) {
  .rip-fa-card {
    padding: 5.6rem 4.8rem;
    border-radius: 2.4rem;
  }
}

@media only screen and (min-width: 1200px) {
  .rip-fa-card {
    padding: 6.4rem 6.4rem;
  }
}

.rip-fa-card__head {
  margin-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.rip-fa-card__head .meta-tag {
  align-self: flex-start;
}

.rip-fa-card__lead {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--t-medium);
  max-width: 52rem;
}

@media only screen and (min-width: 768px) {
  .rip-fa-card__lead {
    font-size: 2rem;
  }
}

.rip-fa-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media only screen and (min-width: 768px) {
  .rip-fa-form {
    gap: 2.4rem;
  }
}

.rip-fa-form__row {
  width: 100%;
}

.rip-fa-form__row--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media only screen and (min-width: 768px) {
  .rip-fa-form__row--split {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }
}

.rip-fa-field {
  position: relative;
  display: block;
  width: 100%;
}

.rip-fa-field__label {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
  font-family: var(--_font-accent);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-medium);
}

.rip-fa-field__label em {
  font-style: normal;
  color: var(--t-bright);
}

.rip-fa-field__hint {
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--t-muted);
}

.rip-fa-form input[type="text"],
.rip-fa-form input[type="email"],
.rip-fa-form input[type="tel"] {
  height: 4.8rem;
  line-height: 4.8rem;
  font-size: 1.7rem;
  padding: 0.6rem 0.2rem;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--t-bright);
  transition: border-color var(--_animspeed-medium) var(--_animbezier);
}

.rip-fa-form input::placeholder {
  color: var(--t-muted);
  opacity: 1;
}

.rip-fa-form input:hover {
  border-bottom-color: rgba(255, 255, 255, 0.32);
}

.rip-fa-form input:focus {
  outline: 0;
  border-bottom-color: var(--t-bright);
}

.rip-fa-form input:focus:required:invalid {
  color: var(--t-bright);
}

.rip-fa-form input:required:valid {
  color: var(--t-bright);
}

.rip-fa-form__row--consent {
  margin-top: 0.8rem;
}

.rip-fa-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem 1.4rem;
  align-items: start;
  cursor: pointer;
}

.rip-fa-consent input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.rip-fa-consent__box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-top: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0.5rem;
  background: transparent;
  transition:
    border-color var(--_animspeed-medium) var(--_animbezier),
    background-color var(--_animspeed-medium) var(--_animbezier);
  flex-shrink: 0;
}

.rip-fa-consent__box svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: var(--base-opp);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity var(--_animspeed-medium) var(--_animbezier),
    transform var(--_animspeed-medium) var(--_animbezier);
}

.rip-fa-consent input[type="checkbox"]:checked + .rip-fa-consent__box {
  background-color: #ffffff;
  border-color: #ffffff;
}

.rip-fa-consent input[type="checkbox"]:checked + .rip-fa-consent__box svg {
  opacity: 1;
  transform: scale(1);
}

.rip-fa-consent input[type="checkbox"]:focus-visible + .rip-fa-consent__box {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 3px;
}

.rip-fa-consent__text {
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--t-medium);
}

.rip-fa-consent__text a {
  color: var(--t-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  transition: text-decoration-color var(--_animspeed-medium) var(--_animbezier);
}

.rip-fa-consent__text a:hover {
  text-decoration-color: var(--t-bright);
}

.rip-fa-consent__note {
  display: block;
  margin-top: 0.6rem;
  color: var(--t-muted);
  font-size: 1.3rem;
}

.rip-fa-form__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

@media only screen and (min-width: 768px) {
  .rip-fa-form__actions {
    flex-direction: row;
    align-items: center;
    gap: 2.4rem;
  }
}

.rip-fa-submit {
  align-self: flex-start;
}

.rip-fa-form__hint {
  margin: 0;
  font-family: var(--_font-accent);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-muted);
}

.rip-fa-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  animation: rip-fa-success-in 0.6s var(--_animbezier) both;
}

.rip-fa-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: #ffffff;
  color: var(--base-opp);
}

.rip-fa-success__icon svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rip-fa-success__title {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--t-bright);
}

.rip-fa-success__text {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.55;
  color: var(--t-medium);
  max-width: 56rem;
}

.rip-fa-success__text a {
  color: var(--t-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.rip-fa-success__text a:hover {
  text-decoration-color: var(--t-bright);
}

.rip-fa-success__actions {
  margin-top: 0.8rem;
}

@keyframes rip-fa-success-in {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.rip-icon,
i .rip-icon,
.btn i .rip-icon,
.mxd-accordion__arrow .rip-icon {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.mxd-hero-05 .rip-hero-cta .btn:hover i svg.rip-icon-arrow,
.btn.rip-pill-cta:hover i svg.rip-icon-arrow {
  transform: translate(2px, -2px) !important;
}

.mxd-hero-05 .rip-hero-availability.rip-hero-availability--bare {
  margin-top: 3rem;
  gap: 0;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}

@media only screen and (min-width: 768px) {
  .mxd-hero-05 .rip-hero-availability.rip-hero-availability--bare {
    margin-top: 3.5rem;
    font-size: 1.7rem;
  }
}

@media only screen and (min-width: 1200px) {
  .mxd-hero-05 .rip-hero-availability.rip-hero-availability--bare {
    margin-top: 4rem;
    font-size: 1.95rem;
  }
}

.rip-section--black {
  background-color: #0d0c0c !important;
}

.rip-section--black .manifest {
  color: var(--t-opp-bright);
}
.rip-section--black .manifest span {
  color: var(--t-opp-medium);
}

.rip-section--black .t-bold,
.rip-section--black .t-bold *,
.rip-section--black .t-bold a {
  color: #ffffff !important;
}

.rip-section--black .tag.meta-tag {
  color: var(--t-opp-medium);
}
.rip-section--black .tag.meta-tag::before,
.rip-section--black .tag.meta-tag::after {
  color: inherit;
}

.mxd-showcase-clip__image.rip-frosted {

  animation: rip-frosted-ripple 6.4s cubic-bezier(.22, .68, .2, 1) infinite;
}

@keyframes rip-frosted-ripple {
  0% {
    box-shadow:
      0 0 0 0   rgba(255, 255, 255, 0.30),
      0 0 0 0   rgba(255, 255, 255, 0);
  }
  35% {
    box-shadow:
      0 0 0 22px rgba(255, 255, 255, 0),
      0 0 0 0    rgba(255, 255, 255, 0.18);
  }
  70% {
    box-shadow:
      0 0 0 28px rgba(255, 255, 255, 0),
      0 0 0 28px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow:
      0 0 0 28px rgba(255, 255, 255, 0),
      0 0 0 28px rgba(255, 255, 255, 0);
  }
}

.mxd-showcase-clip__sticky .mxd-showcase-clip__item:nth-child(2)
  .mxd-showcase-clip__image.rip-frosted {
  animation-delay: 2.1s;
}
.mxd-showcase-clip__sticky .mxd-showcase-clip__item:nth-child(3)
  .mxd-showcase-clip__image.rip-frosted {
  animation-delay: 4.2s;
}

@media (prefers-reduced-motion: reduce) {
  .mxd-showcase-clip__image.rip-frosted {
    animation: none;
  }
}

.rip-apple-statement {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;

  padding-block: clamp(9rem, 16vh, 18rem);
  padding-inline: clamp(2rem, 5vw, 4rem);
  text-align: center;
  box-sizing: border-box;
}

.rip-apple-statement__eyebrow {
  margin: 0 0 1.8rem 0;
  font-family: var(--_font-default);
  font-size: clamp(1.4rem, 1.05vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgb(245, 245, 247);
}

.rip-apple-statement__title {

  margin: 0 0 2.8rem 0;
  padding-bottom: 0.12em;
  font-family: var(--_font-default);
  font-size: clamp(3rem, 5.2vw, 6.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: rgb(245, 245, 247);
  background-image: linear-gradient(90deg,
                      rgb(228, 246, 240)  0%,
                      rgb(157, 207, 202) 31%,
                      rgb(107, 149, 172) 68%,
                      rgb( 69, 101, 125) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

.rip-apple-statement__subtitle {

  margin: -1rem 0 2.4rem 0;
  font-family: var(--_font-default);
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #f5f5f7;
}

.rip-apple-statement__body {
  margin: 0 auto;
  max-width: 780px;
  font-family: var(--_font-default);
  font-size: clamp(1.55rem, 1.25vw, 1.85rem);
  font-weight: 400;
  line-height: 1.55;
  color: #86868b;
}

.rip-apple-statement__body strong {
  font-weight: 600;
  color: #ffffff;
}

.rip-apple-statement__actions {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .rip-apple-statement__title {
    font-size: clamp(2.6rem, 6.5vw, 5rem);
  }
}

@media (max-width: 1024px) {
  .rip-apple-statement__subtitle {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
  }
}

@media (max-width: 600px) {
  .rip-apple-statement {
    padding-block: 8rem;
    padding-inline: 2rem;
  }
  .rip-apple-statement__eyebrow {
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
  }
  .rip-apple-statement__title {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
    margin-bottom: 1.6rem;
  }

  .rip-apple-statement__title br {
    display: none;
  }
  .rip-apple-statement__subtitle {
    font-size: clamp(1.7rem, 5.5vw, 2.2rem);
    margin: -0.4rem 0 1.8rem 0;
  }
  .rip-apple-statement__subtitle br {
    display: none;
  }
  .rip-apple-statement__body {
    font-size: 1.5rem;
  }
  .rip-apple-statement__actions {
    margin-top: 2rem;
  }
}

.rip-apple-statement--in-hero {
  padding-block: 1.2rem 0;
  padding-inline: 2rem;
}
.rip-apple-statement--in-hero .rip-apple-statement__eyebrow {
  margin-bottom: 1.2rem;
}
.rip-apple-statement--in-hero .rip-apple-statement__title {
  font-size: clamp(2.8rem, 4.6vw, 5.6rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 2rem;
  text-shadow: none !important;
}
.rip-apple-statement--in-hero .rip-apple-statement__body {
  font-size: clamp(1.5rem, 1.15vw, 1.75rem);
}
.rip-apple-statement--in-hero .rip-apple-statement__actions {
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .rip-apple-statement--in-hero .rip-apple-statement__title {
    font-size: clamp(2.4rem, 6vw, 4.2rem) !important;
  }
}

@media (max-width: 600px) {
  .rip-apple-statement--in-hero {
    padding-block: 0.8rem 0;
  }
  .rip-apple-statement--in-hero .rip-apple-statement__title {
    font-size: clamp(2rem, 7.5vw, 3rem) !important;
    margin-bottom: 1.4rem;
  }
  .rip-apple-statement--in-hero .rip-apple-statement__body {
    font-size: 1.45rem;
  }
}

.rip-legal {
  max-width: 72ch;
  margin-inline: auto;
  color: var(--t-bright);
  font-size: 1.7rem;
  line-height: 1.7;
}

.rip-legal__block {
  padding-block: 2.4rem;
  border-top: 1px solid rgba(var(--base-opp-rgb), 0.10);
}
.rip-legal__block:first-child {
  border-top: 0;
  padding-top: 0;
}
.rip-legal__block:last-child {
  padding-bottom: 0;
}

.rip-legal__title {
  margin: 0 0 1.2rem;
  font-family: var(--_font-default);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-bright);
  opacity: 0.55;
}

.rip-legal p {
  margin: 0 0 1.2rem;
  font-size: inherit;
  line-height: inherit;
  color: var(--t-bright);
}
.rip-legal p:last-child {
  margin-bottom: 0;
}

.rip-legal strong {
  font-weight: 600;
}

.rip-legal a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: text-decoration-color .2s ease, color .2s ease;
}
.rip-legal a:hover {
  text-decoration-color: currentColor;
}

@media (max-width: 768px) {
  .rip-legal {
    font-size: 1.55rem;
    line-height: 1.65;
  }
  .rip-legal__block {
    padding-block: 2rem;
  }
  .rip-legal__title {
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
  }
}

/* Kontakt: Panel – mobil großzügiger für Lesbarkeit & Touch */

.rip-contact-panel {
  width: 100%;
  max-width: min(42rem, 100%);
  margin-inline: auto;
  border-radius: clamp(20px, 4vw, 26px);
  border: 1px solid rgba(var(--base-opp-rgb), 0.1);
  background-color: rgba(var(--base-opp-rgb), 0.028);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .rip-contact-panel {
    max-width: 44rem;
  }
}

.rip-contact-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rip-contact-panel__list > li + li {
  border-top: 1px solid rgba(var(--base-opp-rgb), 0.08);
}

.rip-contact-row {
  display: flex;
  align-items: center;
  gap: 1.125rem 1.25rem;
  padding: 1.45rem 1.35rem 1.5rem;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .rip-contact-row {
    padding: 1.5rem 1.65rem 1.55rem;
    gap: 1.25rem 1.5rem;
  }
}

.rip-contact-row__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  align-self: flex-start;
  margin-top: 0.15rem;
  border-radius: 50%;
  background-color: rgba(var(--base-opp-rgb), 0.055);
  color: var(--t-medium);
  transition: background-color .22s ease, color .22s ease;
}
@media only screen and (min-width: 768px) {
  .rip-contact-row__icon {
    align-self: center;
    margin-top: 0;
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .rip-contact-row__icon {
    width: 3.25rem;
    height: 3.25rem;
  }
}

.rip-contact-row__icon .ph {
  font-size: 1.45rem;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .rip-contact-row__icon .ph {
    font-size: 1.5rem;
  }
}

.rip-contact-row__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.rip-contact-row__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-muted);
}
@media only screen and (min-width: 768px) {
  .rip-contact-row__label {
    font-size: 0.84375rem;
  }
}

.rip-contact-row__value {
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--t-bright);
  word-break: break-word;
}
@media only screen and (min-width: 768px) {
  .rip-contact-row__value {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 1200px) {
  .rip-contact-row__value {
    font-size: 1.4375rem;
  }
}

.rip-contact-row__hint {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--t-medium);
}
@media only screen and (min-width: 768px) {
  .rip-contact-row__hint {
    font-size: 1.03125rem;
  }
}

.rip-contact-row__address {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--t-medium);
}
@media only screen and (min-width: 768px) {
  .rip-contact-row__address {
    font-size: 1.03125rem;
  }
}

.rip-contact-row__arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  align-self: center;
  color: var(--t-muted);
  transition: color .22s ease, transform .22s ease;
}

.rip-contact-row__arrow svg {
  width: 1.1875rem;
  height: 1.1875rem;
}

a.rip-contact-row--interactive {
  transition: background-color .22s ease;
}

a.rip-contact-row--interactive:hover {
  background-color: rgba(var(--base-opp-rgb), 0.055);
}

a.rip-contact-row--interactive:hover .rip-contact-row__icon {
  background-color: rgba(var(--accent--light), 0.12);
  color: var(--accent--light);
}

a.rip-contact-row--interactive:hover .rip-contact-row__arrow {
  color: var(--t-bright);
  transform: translate(2px, -2px);
}

.rip-contact-row--static .rip-contact-row__icon {
  color: var(--t-medium);
}

@media (prefers-reduced-motion: reduce) {
  a.rip-contact-row--interactive,
  .rip-contact-row__icon,
  .rip-contact-row__arrow {
    transition: none;
  }
  a.rip-contact-row--interactive:hover .rip-contact-row__arrow {
    transform: none;
  }
}

/* =========================================================================
   Index / Startseite – Apple-style Hero, Manifest, About, Frosted Steps,
   Stack-Service-Cards. Vorher inline in index.php (extra_css) gepflegt.
   ========================================================================= */

.rip-apple-hero {
  position: relative;
  width: 100%;
  min-height: 75vh;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10rem clamp(5rem, 10vw, 17.5rem) 3.5rem;
  box-sizing: border-box;
  overflow: hidden;
}

.rip-apple-hero__stage {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32vh;
  position: relative;
}
.rip-apple-hero__image {
  display: block;
  width: 100%;
  max-width: 64rem;
  height: auto;
  object-fit: contain;

  -webkit-mask-image: linear-gradient(180deg,
                        #000 0%, #000 78%, transparent 100%);
          mask-image: linear-gradient(180deg,
                        #000 0%, #000 78%, transparent 100%);
  pointer-events: none;
  user-select: none;
}

.rip-apple-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 2rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1800px;
  margin-inline: auto;
}
.rip-apple-hero__content {
  flex: 1 1 auto;
  max-width: 70rem;
}

.rip-apple-hero__eyebrow {
  margin: 0 0 0.4rem 0;
  font-family: var(--_font-default);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #f5f5f7;
  opacity: 0.85;
}

.rip-apple-hero__title {
  margin: 0 0 0.6rem 0;
  font-family: var(--_font-default);
  font-size: clamp(3.2rem, 6.2vw, 7.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: rgb(245, 245, 247);
  background-image: linear-gradient(90deg,
                      rgb(228, 246, 240) 0%,
                      rgb(157, 207, 202) 31%,
                      rgb(107, 149, 172) 68%,
                      rgb( 69, 101, 125) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

.rip-apple-hero__sub {
  margin: 0;
  font-family: var(--_font-default);
  font-size: clamp(1.5rem, 1.4vw, 1.9rem);
  font-weight: 500;
  color: #d2d2d7;
  line-height: 1.45;
}

.rip-apple-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  flex: 0 0 auto;
}
.rip-apple-hero__hint {
  margin: 0;
  font-family: var(--_font-default);
  font-size: clamp(1.5rem, 1.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.45;
  color: #d2d2d7;
  white-space: nowrap;
}

.rip-apple-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  height: 4.4rem;
  padding: 0 2rem;
  background: #fff;
  color: #0a0a0a;
  border: 1px solid #fff;
  border-radius: 999px;
  font-family: var(--_font-default);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}
.rip-apple-cta:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}
.rip-apple-cta i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}
.rip-apple-cta i svg {
  width: 100%;
  height: 100%;
  transition: transform .25s ease;
}
.rip-apple-cta:hover i svg.rip-icon-arrow {
  transform: translate(2px, -2px);
}

/* Promo-Banner (Ende mehrerer Seiten): gleicher Pill-Button wie Hero */
.rip-promo-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  width: 100%;
}
.rip-promo-cta-stack > .opposite {
  max-width: 100%;
}
.rip-promo-cta-stack__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .rip-apple-hero {
    min-height: 62vh;
    padding: 9rem 4rem 3rem;
  }
  .rip-apple-hero__stage {
    min-height: 24vh;
  }
  .rip-apple-hero__image {
    max-width: 52rem;
  }
  .rip-apple-hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
  }
  .rip-apple-hero__content {
    max-width: none;
    width: 100%;
    text-align: left;
  }
  .rip-apple-hero__actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    gap: 1.4rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .rip-apple-hero {
    min-height: auto;
    padding: 8rem 2rem 2.5rem;
  }
  .rip-apple-hero__stage {
    min-height: 18vh;
  }
  .rip-apple-hero__image {
    max-width: 36rem;
  }
  .rip-apple-hero__bottom {
    align-items: center;
    text-align: center;
  }
  .rip-apple-hero__content {
    text-align: center;
  }
  .rip-apple-hero__eyebrow {
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
  }
  .rip-apple-hero__title {
    font-size: clamp(2.8rem, 9vw, 4.4rem);
    margin-bottom: 0.8rem;
  }
  .rip-apple-hero__sub {
    font-size: 1.55rem;
  }
  .rip-apple-hero__actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
  }
  .rip-apple-hero__hint {
    font-size: 1.45rem;
  }
  .rip-apple-cta {
    width: 100%;
    max-width: 32rem;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rip-apple-hero .loading-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}

.rip-section--black .mxd-section-manifest__text.manifest-text-m {
  margin-inline: auto;
}

.rip-apple-manifest {
  text-align: center;
  max-width: 1200px;
  margin-inline: auto;
  padding: 2rem 2rem 1rem;
}
.rip-apple-manifest__title {
  margin: 0 auto 2rem auto;
  max-width: 90rem;
  font-family: var(--_font-default);

  font-size: clamp(2.8rem, 5vw, 6rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #f5f5f7;
}
.rip-apple-manifest__sub {
  margin: 0 auto;
  max-width: 64rem;
  font-family: var(--_font-default);
  font-size: clamp(1.6rem, 1.3vw, 1.9rem);
  font-weight: 400;
  line-height: 1.55;
  color: #86868b;
}

@media (max-width: 1024px) {
  .rip-apple-manifest {
    padding: 1.5rem 2rem 0.5rem;
  }
  .rip-apple-manifest__title {
    margin-bottom: 1.6rem;
  }
}
@media (max-width: 600px) {
  .rip-apple-manifest {
    padding: 1rem 1.5rem 0;
  }
  .rip-apple-manifest__title {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }
  .rip-apple-manifest__sub {
    font-size: 1.55rem;
    line-height: 1.5;
  }
}

.rip-apple-about__title {
  margin: 0 0 1.6rem 0;
  font-family: var(--_font-default);
  font-size: clamp(2.4rem, 3vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: rgb(245, 245, 247);
  background-image: linear-gradient(90deg,
                      rgb(228, 246, 240) 0%,
                      rgb(157, 207, 202) 31%,
                      rgb(107, 149, 172) 68%,
                      rgb( 69, 101, 125) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

.rip-apple-about__body {
  margin: 0;
  font-family: var(--_font-default);
  font-size: clamp(1.55rem, 1.25vw, 1.85rem);
  font-weight: 400;
  line-height: 1.55;
  color: #86868b;
}

.rip-apple-about__body strong {
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 600px) {
  .rip-apple-about__title {
    font-size: clamp(2rem, 7vw, 3rem);
    margin-bottom: 1.2rem;
  }
  .rip-apple-about__body {
    font-size: 1.55rem;
  }
}

.rip-frosted__steps {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.8rem;
  z-index: 2;
  pointer-events: none;
}

.rip-frosted__dot {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1.75px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  transition:
    background-color .35s cubic-bezier(.22,.7,.2,1),
    border-color .35s cubic-bezier(.22,.7,.2,1),
    transform .35s cubic-bezier(.22,.7,.2,1);
}

.rip-frosted__dot--filled {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);

  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.40);
}

.rip-frosted__steps::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg,
                rgba(255, 255, 255, 0.30),
                rgba(255, 255, 255, 0.18));
  z-index: -1;
}

@media (max-width: 600px) {
  .rip-frosted__steps {
    gap: 1.4rem;
    bottom: 18%;
  }
  .rip-frosted__dot {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.rip-card--apple .services-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.6rem, 0.9vw, 1.2rem);
}

.rip-card--apple .services-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.rip-card--apple .services-card__tags.rip-card-apple__eyebrow-wrap {
  display: block;
  margin: 0;
  padding: 0;
  max-width: none;
  min-width: 0;
  gap: 0;
}

.rip-card-apple__eyebrow {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-family: var(--_font-default);
  font-size: clamp(1.3rem, 1vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgb(245, 245, 247);
  background: none;
  border: none;
}

.rip-card--apple .services-card__title p * {
  display: contents !important;
  background: none !important;
  -webkit-text-fill-color: inherit !important;
}

.rip-card--apple .services-card__title p {
  margin: 0;
  padding-bottom: 0.18em;
  font-family: var(--_font-default);
  font-size: clamp(3.2rem, 5.2vw, 6.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: rgb(245, 245, 247);
  background-image: linear-gradient(90deg,
                      rgb(228, 246, 240)  0%,
                      rgb(157, 207, 202) 31%,
                      rgb(107, 149, 172) 68%,
                      rgb( 69, 101, 125) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.mxd-stack-services .services-card__title .line-mask,
.mxd-stack-services .services-card__title .line,
.mxd-stack-services .services-card__descr .line-mask,
.mxd-stack-services .services-card__descr .line {
  display: contents !important;
}

.mxd-stack-services .line-mask,
.mxd-stack-services .line {
  transform: none !important;
  overflow: visible !important;
  clip-path: none !important;
}

.rip-card--apple .services-card__descr div[aria-hidden="true"] {
  word-spacing: 0.02em;
}

.rip-card--apple .services-card__descr.t-bold.t-large,
.rip-card--apple .services-card__descr {
  margin: 0;
  font-family: var(--_font-default);
  font-size: clamp(1.75rem, 1.45vw, 2.15rem);
  font-weight: 400;
  line-height: 1.55;
  color: #86868b;
  max-width: 60ch;
}

.rip-card--apple .services-card__descr strong,
.rip-card--apple .services-card__descr.t-bold.t-large strong {
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .rip-card--apple .services-card__content {
    gap: 0.9rem;
  }
  .rip-card--apple .services-card__title p {
    font-size: clamp(2.6rem, 6.5vw, 4.6rem);
    padding-bottom: 0.15em;
  }
  .rip-card--apple .services-card__descr.t-bold.t-large,
  .rip-card--apple .services-card__descr {
    font-size: clamp(1.65rem, 2vw, 1.95rem);
    max-width: 60ch;
  }
}

@media (max-width: 600px) {
  .rip-card--apple .services-card__content {
    justify-content: flex-start;
    gap: 0.8rem;
  }
  .rip-card--apple .services-card__info {
    gap: 0.8rem;
  }
  .rip-card-apple__eyebrow {
    font-size: 1.3rem;
  }
  .rip-card--apple .services-card__title p {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
    padding-bottom: 0.12em;
  }
  .rip-card--apple .services-card__descr.t-bold.t-large,
  .rip-card--apple .services-card__descr {
    font-size: 1.65rem;
    line-height: 1.5;
    max-width: none;
  }

  .rip-card--apple .services-card__image,
  .mxd-stack-services .rip-card--apple .services-card__image {
    margin-top: 1.75rem;
  }

  .rip-card--apple .services-card__title p,
  .rip-card--apple .services-card__title p * {
    background-attachment: scroll;
    background-size: 100% 100%;
  }
}

/* Roadmap / Process-Points: zentriert in der Mobile-Ansicht */
@media (max-width: 767px) {
  .rip-roadmap-section .mxd-section-title__title {
    text-align: center;
  }
  .rip-roadmap-section .mxd-section-title__data.top-controls,
  .rip-roadmap-section .mxd-section-title__controls.justify-end {
    justify-content: center;
  }

  .rip-roadmap-section .mxd-process-points__item {
    text-align: center;
  }
  .rip-roadmap-section .mxd-process-points__title {
    justify-content: center;
  }
  .rip-roadmap-section .mxd-process-points__time {
    display: flex;
    justify-content: center;
  }
}

html,
body {
  background-color: #000000 !important;
}

/* Top-Blur-Bar (Apple-Style Frosted Navigation).
   Spiegelt das untere .blur-container Konzept oben, jedoch CSS-only und
   ohne JS-Trigger. Nur Desktop (>= 768px) – auf Mobile ausgeblendet, damit
   der iOS-Chrome-Toolbar-Bug nicht greift. */
.rip-top-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
  z-index: 10;
  display: none;
}
.rip-top-blur__layer {
  position: absolute;
  inset: 0;
}
.rip-top-blur__layer--1 {
  -webkit-backdrop-filter: blur(0.5px);
          backdrop-filter: blur(0.5px);
  -webkit-mask-image: linear-gradient(to top,
    rgba(0,0,0,0) 0%, #000 35%, #000 60%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to top,
    rgba(0,0,0,0) 0%, #000 35%, #000 60%, rgba(0,0,0,0) 100%);
}
.rip-top-blur__layer--2 {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(to top,
    rgba(0,0,0,0) 20%, #000 55%, #000 80%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to top,
    rgba(0,0,0,0) 20%, #000 55%, #000 80%, rgba(0,0,0,0) 100%);
}
.rip-top-blur__layer--3 {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to top,
    rgba(0,0,0,0) 50%, #000 80%, #000 100%);
          mask-image: linear-gradient(to top,
    rgba(0,0,0,0) 50%, #000 80%, #000 100%);
}
.rip-top-blur__layer--4 {
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(to top,
    rgba(0,0,0,0) 75%, #000 100%);
          mask-image: linear-gradient(to top,
    rgba(0,0,0,0) 75%, #000 100%);
}

/* .rip-top-blur deaktiviert – nur unterer Blur aktiv */

/* Blur-Effekte auf Mobilgeräten deaktivieren (Performance & Kompatibilität).
   .blur-container ist position:fixed;bottom:0 – das ruckelt in iOS Chrome,
   sobald die untere URL-Bar ein-/ausgeblendet wird. Auf Desktop bleibt alles. */
@media (max-width: 767px) {
  .blur-container {
    display: none !important;
  }

  #header .mxd-color-switcher,
  .btn-mobile-icon,
  .rip-hero-cta__ghost,
  .btn.rip-pill-cta.rip-pill-cta--ghost,
  .rip-fa-card,
  .rip-contact-panel {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .mxd-showcase-clip__image.rip-frosted .rip-frosted__bg {
    filter: none;
    transform: scale(1);
  }
}

/* ---- Language Switcher ---------------------------------------- */

.rip-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.rip-lang-switcher__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

a.rip-lang-switcher__item {
  opacity: 0.45;
}

a.rip-lang-switcher__item:hover {
  opacity: 1;
  transform: scale(1.1);
}

span.rip-lang-switcher__item.is-active {
  opacity: 1;
  cursor: default;
}

.menu-contact__item .rip-lang-switcher {
  padding: 0.4rem 0;
}

.mxd-footer__data-item .rip-lang-switcher {
  font-size: 1.6rem;
}

/* ---- Video Embed ---------------------------------------- */

.rip-video-section {
  padding-top: 8rem;
  padding-bottom: 0;
}

.rip-video-section + #manifest.padding-top-manifest-m {
  padding-top: 6rem;
}

@media (max-width: 767px) {
  .rip-video-section {
    padding-top: 5rem;
  }

  .rip-video-section + #manifest.padding-top-manifest-m {
    padding-top: 4rem;
  }
}

.rip-video-embed {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
}

.rip-video-embed__ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.rip-video-embed__ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 767px) {
  .rip-video-embed {
    border-radius: 10px;
  }
}

/* =========================================================
   BEFA Messe-Popup (Frühzugang / 30-Tage-Testpaket)
   Wegklickbares Banner unten rechts, Status in localStorage.
   ========================================================= */
.rip-befa-popup {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 1200;
  width: min(38rem, calc(100vw - 4rem));
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  padding: 2rem;
  color: #FAF7F6;
  transform: translateY(2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.rip-befa-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.rip-befa-popup__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: #0a0a0a;
  color: #FAF7F6;
  transition: background-color .2s ease, transform .2s ease;
  z-index: 1;
}
.rip-befa-popup__close:hover {
  background: #222;
  transform: scale(1.05);
}
.rip-befa-popup__close svg {
  width: 1.6rem;
  height: 1.6rem;
}
.rip-befa-popup__media {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.rip-befa-popup__media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 9rem;
}
.rip-befa-popup__eyebrow {
  margin: 0 0 .6rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b5b1ad;
}
.rip-befa-popup__title {
  margin: 0 0 .8rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FAF7F6;
}
.rip-befa-popup__text {
  margin: 0 0 1.8rem;
  font-size: 1.45rem;
  line-height: 1.5;
  color: #b5b1ad;
}
.rip-befa-popup__text strong {
  color: #FAF7F6;
}
.rip-befa-popup .rip-apple-cta {
  width: 100%;
  justify-content: center;
  height: 4.6rem;
}

/* Backdrop overlay (nur mobil sichtbar) */
.rip-befa-backdrop {
  display: none;
}

@media (max-width: 600px) {
  .rip-befa-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1199;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s;
  }
  .rip-befa-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }
  .rip-befa-popup {
    right: 1.2rem;
    left: 1.2rem;
    bottom: auto;
    top: 50%;
    transform: translateY(calc(-50% + 1.5rem));
    width: auto;
    padding: 1.6rem;
  }
  .rip-befa-popup.is-visible {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rip-befa-popup {
    transition: opacity .25s ease, visibility .25s;
    transform: none;
  }
  .rip-befa-popup.is-visible {
    transform: none;
  }
}

