@font-face {
  font-family: "BlauerNue";
  src: url("../fonts/trueType/BlauerNue-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BlauerNueLight";
  src: url("../fonts/trueType/BlauerNue-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BlauerNueExtraLightPS";
  src: url("../fonts/postScript/BlauerNue-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "BlauerNue", "Trebuchet MS", "Verdana", sans-serif;
  background: #ffffff;
  color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  --fw: 300;
  --page-pad-left: clamp(28px, 5.2vw, 80px);
  --page-pad-right: clamp(20px, 3.4vw, 40px);
  --dark-offset-fluid: clamp(360px, 40vh, 520px);
  --dark-gap-fluid: clamp(24px, 3.4vh, 44px);
}

body.cursor-enabled,
body.cursor-enabled * {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.95);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10000;
  transition: opacity 0.16s ease;
  will-change: transform, opacity;
}

body.cursor-enabled .custom-cursor.is-visible {
  opacity: 1;
}

.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
  isolation: isolate;
}

.top-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  height: 96px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.2) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 0;
  pointer-events: none;
  transition: background 0.6s ease;
}

.top-header::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  transition: background 0.6s ease;
}

.top-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 40px 14px;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(11px, 0.78vw, 13px);
  letter-spacing: 0.6px;
  font-weight: 300;
  text-transform: none;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  transition: color 0.6s ease;
}

.top-header__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-header__label {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  text-transform: none;
  letter-spacing: inherit;
  cursor: pointer;
}

.top-header__link {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
  cursor: pointer;
}

.top-header__link:focus-visible {
  outline: 1px solid rgba(0, 0, 0, 0.25);
  outline-offset: 4px;
}
.top-header__label:focus-visible {
  outline: 1px solid rgba(0, 0, 0, 0.25);
  outline-offset: 4px;
}

.top-header__dash {
  opacity: 0.5;
}

.top-header__time {
  cursor: default;
}

.top-header__clock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-header__greeting {
  display: inline-block;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
  white-space: nowrap;
}

.top-header__greeting-dash {
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.top-header__greeting-dash.is-visible {
  opacity: 0.5;
  transform: translateX(0);
}

.top-header__greeting.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.top-header.is-hidden {
  opacity: 0;
}

.top-header.is-dark .top-header__content {
  color: rgba(255, 255, 255, 0.9);
}

.top-header.is-dark::after {
  background: rgba(255, 255, 255, 0.45);
}

.top-header.is-dark::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.16) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

.light-section {
  position: relative;
  background: #ffffff;
}

.light-section::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(1100px 760px at 18% 24%, rgba(0, 0, 0, 0.38), transparent 62%),
    radial-gradient(1300px 900px at 84% 72%, rgba(0, 0, 0, 0.34), transparent 66%),
    radial-gradient(1000px 760px at 58% 18%, rgba(0, 0, 0, 0.3), transparent 60%),
    radial-gradient(900px 680px at 45% 85%, rgba(0, 0, 0, 0.28), transparent 64%);
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
  animation: gradientDrift 26s ease-in-out infinite alternate;
}

.light-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(1200px 820px at 22% 28%, rgba(255, 40, 0, 0.55), transparent 62%),
    radial-gradient(1100px 780px at 82% 68%, rgba(255, 230, 0, 0.5), transparent 64%),
    radial-gradient(1000px 720px at 62% 16%, rgba(30, 130, 255, 0.55), transparent 60%);
  opacity: 0.7;
  mix-blend-mode: color;
  pointer-events: none;
  z-index: 2;
  animation: gradientDriftChroma 28s ease-in-out infinite alternate;
}

@supports (background: paint(something)) {
}

#filmGrain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

.glass-filters {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spacer {
  height: 0;
}

.video-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.video-shell {
  position: sticky;
  top: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 20;
  isolation: isolate;
}

body.editor-overlay-open .video-shell {
  pointer-events: none;
}

.dark-section {
  position: relative;
  z-index: 4;
}

.video-wrap {
  width: min(1400px, 100vw);
  aspect-ratio: var(--video-ar, 16 / 9);
  background: transparent;
  --video-radius-start: 12px;
  border-radius: var(--video-radius-start);
  overflow: hidden;
  position: relative;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform, border-radius;
  z-index: 2;
}

.video-wrap .reel-video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: transparent;
  border-radius: inherit;
}

.video-ui {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  z-index: 3;
}

.video-wrap.is-offscreen .video-ui {
  opacity: 0;
  pointer-events: none;
}

.video-toggle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #000000;
  font-size: clamp(18px, 1.4vw, 22px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 2;
  pointer-events: auto;
  text-shadow: none;
}

.video-progress {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 84%;
  height: 4px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, height 0.2s ease;
  pointer-events: auto;
  cursor: pointer;
}

.video-progress:hover {
  height: 7px;
}

.video-progress__bar {
  height: 100%;
  width: 0%;
  background: #000000 !important;
  border-radius: 999px;
  transition: width 0.1s linear;
}

.video-progress__dot {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000000 !important;
  transform: translate(-50%, -50%);
  transition: left 0.1s linear;
}

.video-progress.is-visible {
  opacity: 1;
}


.video-wrap:hover .video-toggle {
  transform: scale(1.05);
}

.video-toggle.is-playing {
  opacity: 0;
  pointer-events: none;
}


.dark-section {
  --dark-offset: 0px;
  min-height: auto;
  background: transparent;
  padding-top: clamp(28px, 4vh, 56px);
  margin-top: -2px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 48px;
  padding-left: var(--page-pad-left);
  padding-right: var(--page-pad-right);
}

.dark-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--dark-offset);
  bottom: 0;
  background: #000000;
  z-index: 0;
}

.dark-section > * {
  position: relative;
  z-index: 1;
  transition: opacity 0.28s ease;
}

.dark-section.editor-mode-active > *:not(.bottom-area):not(.editor-overlay) {
  opacity: 0;
  pointer-events: none;
}

.dark-section.base-fade-in > *:not(.bottom-area):not(.editor-overlay) {
  opacity: 0;
}

.editor-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--editor-top, var(--dark-offset));
  height: var(--editor-height, auto);
  bottom: auto;
  background: #000000;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}

.editor-overlay.is-entering,
.editor-overlay.is-exiting {
  top: var(--editor-top, var(--dark-offset));
  height: var(--editor-height, auto);
  bottom: auto;
  z-index: 9998;
}

.editor-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.editor-curtain {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  z-index: 12;
}

.editor-overlay.is-entering .editor-curtain {
  opacity: 1;
  animation: editorCurtainSweep 0.85s cubic-bezier(0.24, 0.82, 0.3, 1) forwards;
}

.editor-overlay.is-exiting .editor-curtain {
  opacity: 1;
  animation: editorCurtainSweep 0.85s cubic-bezier(0.24, 0.82, 0.3, 1) forwards;
}

.editor-curtain__bar {
  display: block;
}

.editor-curtain__bar.bar-red { background: #ff2d2d; }
.editor-curtain__bar.bar-yellow { background: #ffd200; }
.editor-curtain__bar.bar-green { background: #45d467; }
.editor-curtain__bar.bar-blue { background: #2f7dff; }

.editor-back {
  position: absolute;
  left: 42px;
  top: 78px;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: 0.4px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 4;
}

.editor-message {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: clamp(26px, 4.2vw, 62px);
  letter-spacing: 0.08px;
  font-kerning: normal;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.32s ease;
  z-index: 4;
}

.editor-sphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s ease;
  perspective: 900px;
  transform-style: preserve-3d;
  z-index: 2;
}

.editor-sphere.is-visible {
  opacity: 1;
}

.editor-sphere-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(12px, 1.05vw, 17px);
  letter-spacing: 0.22px;
  color: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
  will-change: transform, opacity, filter;
}

.editor-overlay.is-active:not(.is-entering):not(.is-exiting) .editor-back,
.editor-overlay.is-active:not(.is-entering):not(.is-exiting) .editor-message {
  opacity: 1;
}

.editor-overlay.is-exiting .editor-back,
.editor-overlay.is-exiting .editor-message {
  opacity: 0;
  transition-delay: 0s;
}

.editor-overlay.is-active .editor-back {
  transform: translateY(0);
  transition-delay: 0s;
}

.editor-overlay.is-active:not(.is-entering):not(.is-exiting) .editor-message {
  transition-delay: 0s;
}

.editor-overlay.is-active:not(.is-entering):not(.is-exiting) .editor-back,
.editor-overlay.is-active:not(.is-entering):not(.is-exiting) .editor-message {
  transition-duration: 0.26s;
}

@keyframes editorCurtainSweep {
  0% {
    transform: translateX(-100%);
  }
  48% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

.white-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  margin-top: clamp(-560px, -44vh, -420px);
}

.white-panel {
  width: min(1240px, 90vw);
  height: min(78vh, 720px);
  background: #ffffff;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.white-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.black-section-next {
  min-height: 70vh;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 48px;
  position: relative;
  overflow: hidden;
}

.black-section-next__contact {
  position: absolute;
  left: clamp(28px, 4vw, 72px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: min(44vw, 680px);
}

.black-section-next__contact-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(24px, 2.7vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.2px;
  font-weight: 500;
}

.black-section-next__contact-mail {
  display: inline-block;
  margin: 10px 0 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(13px, 1.15vw, 22px);
  line-height: 1.2;
  letter-spacing: 0.2px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s ease;
}

.black-section-next__contact-mail:hover {
  color: rgba(255, 255, 255, 0.96);
}

.black-section-next__social {
  position: absolute;
  right: clamp(90px, 11vw, 220px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: "BlauerNueLight", "BlauerNue", "Trebuchet MS", "Verdana", sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 0.95vw, 18px);
  letter-spacing: 0.3px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
  pointer-events: auto;
}

.black-section-next__social a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transform: scale(1);
  transform-origin: right center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.black-section-next__social a:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: scale(1.08);
}

.black-section-next__title {
  color: #ffffff;
  font-size: clamp(36px, 6vw, 84px);
  letter-spacing: 0.4px;
  font-weight: 500;
  text-transform: lowercase;
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 0.04em 0.08em;
  isolation: isolate;
}

.black-section-next__signature {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.24em;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: clamp(78px, 15.4vw, 340px);
  line-height: 0.72;
  letter-spacing: -0.015em;
  font-weight: 500;
  font-family: "BlauerNueExtraLightPS", "BlauerNueLight", "BlauerNue", "Trebuchet MS", "Verdana", sans-serif;
  text-transform: lowercase;
  white-space: nowrap;
  pointer-events: none;
  transform: scaleX(1.08);
  transform-origin: center bottom;
}

.black-section-next__signature .signature-char {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.42s cubic-bezier(0.22, 0.8, 0.2, 1);
  transition-delay: calc(var(--char-index, 0) * 14ms);
}

.black-section-next__signature.is-hover .signature-char {
  transform: translateY(-0.24em);
}

/* =========================
   Responsive (solo móvil/tablet)
   No afecta a desktop
   ========================= */
@media (max-width: 1024px) {
  .top-header__content {
    padding: 16px 24px 12px;
  }

  .top-header::after {
    left: 24px;
    right: 24px;
  }

  .dark-section {
    padding-left: 32px;
    padding-right: 24px;
    gap: 36px;
  }

  .about-layout {
    gap: 24px;
  }

  .about-photo,
  .photo-glass {
    width: min(320px, 34vw);
  }
}

@media (max-width: 768px) {
  .top-header__content {
    padding: 14px 16px 10px;
    gap: 10px;
  }

  .top-header::after {
    left: 16px;
    right: 16px;
  }

  .hero {
    min-height: 88vh;
  }

  .reveal-wrap {
    padding-bottom: 72px;
  }

  .video-section {
    min-height: 82vh;
  }

  .video-shell {
    top: 8px;
  }

  .video-progress {
    left: 20px;
    right: 20px;
  }

  .dark-section {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: clamp(20px, 3vh, 36px);
    gap: 26px;
  }

  .section-title {
    align-self: flex-start;
    margin-top: -8px;
  }

  .about-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .about-text {
    width: 100%;
    max-width: 100%;
    font-size: clamp(15px, 3.9vw, 19px);
    line-height: 1.42;
    --text-base-x: 0px;
    letter-spacing: 0.18px;
  }

  .photo-block {
    width: 100%;
    align-items: flex-start;
  }

  .about-photo,
  .photo-glass {
    width: min(300px, 78vw);
    margin-top: 0;
  }

  .bottom-area {
    gap: 18px;
  }

  .section-divider {
    width: 100%;
  }

  .hover-gallery {
    height: min(70vh, 620px);
  }

  .white-panel {
    width: 94vw;
    height: min(72vh, 620px);
  }

  .black-section-next {
    min-height: 64vh;
    padding-top: 36px;
  }

  .black-section-next__contact {
    left: 16px;
    top: 44%;
    max-width: 64vw;
  }

  .black-section-next__social {
    right: 16px;
    top: 44%;
    font-size: clamp(11px, 2.8vw, 14px);
  }

  .black-section-next__signature {
    font-size: clamp(64px, 22vw, 200px);
    transform: scaleX(1.02);
  }
}

@media (max-width: 480px) {
  .name-glass {
    padding: 12px 10px;
  }

  .hero-scroll {
    top: calc(100% + 2px);
  }

  .video-toggle {
    width: 40px;
    height: 40px;
  }

  .dark-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .about-text {
    font-size: clamp(14px, 4.4vw, 17px);
    line-height: 1.38;
    letter-spacing: 0.14px;
  }

  .bottom-note {
    text-align: left;
  }

  .rotator {
    justify-content: flex-start;
  }

  .black-section-next__contact {
    max-width: 72vw;
  }
}

.black-section-next__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  background:
    radial-gradient(circle at 14% 26%, rgba(255, 240, 170, 0.28) 0 16%, transparent 38%),
    radial-gradient(circle at 82% 66%, rgba(255, 190, 0, 0.2) 0 18%, transparent 40%),
    radial-gradient(circle at 18% 36%, rgba(0, 0, 0, 0.08) 0 0.8px, transparent 1px),
    radial-gradient(circle at 36% 62%, rgba(0, 0, 0, 0.07) 0 0.8px, transparent 1px),
    radial-gradient(circle at 58% 42%, rgba(0, 0, 0, 0.08) 0 0.8px, transparent 1px),
    radial-gradient(circle at 74% 70%, rgba(0, 0, 0, 0.07) 0 0.8px, transparent 1px),
    radial-gradient(circle at 88% 30%, rgba(0, 0, 0, 0.08) 0 0.8px, transparent 1px),
    rgba(255, 214, 0, 0.9);
  background-size:
    100% 100%,
    100% 100%,
    8px 8px,
    9px 9px,
    10px 10px,
    8px 8px,
    11px 11px,
    100% 100%;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  filter: saturate(1.06) contrast(1.02);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 110, 0.28),
    inset 0 2px 4px rgba(255, 255, 255, 0.15),
    inset 0 -2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
}

.black-section-next__title::before {
  content: none;
}

.black-section-next__title.is-hover::after {
  opacity: 1;
  animation: titleMarkIn 0.35s ease forwards;
}

.black-section-next__title.is-hover::before {
  content: none;
}

.black-section-next__title.is-leaving::after {
  opacity: 1;
  animation: titleMarkOut 0.35s ease forwards;
}

.black-section-next__title.is-leaving::before {
  content: none;
}

@keyframes titleMarkIn {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes titleMarkOut {
  from {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  to {
    clip-path: inset(0 0 0 100%);
    opacity: 1;
  }
}

.white-title {
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: 0.6px;
  color: #000000;
  font-weight: 700;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.85),
    0 0 42px rgba(255, 255, 255, 0.65),
    0 0 80px rgba(255, 255, 255, 0.4);
}

.brand-sphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  perspective: 900px;
  transform-style: preserve-3d;
}

.brand-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.4px;
  color: rgba(0, 0, 0, 0.88);
  white-space: nowrap;
  will-change: transform, opacity, filter;
}

.bottom-area {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-bottom: 0;
}

.section-divider {
  width: min(86vw, 1040px);
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  align-self: center;
}

.bottom-note {
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.3px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  position: relative;
  z-index: 3;
}

.bottom-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rotator {
  position: relative;
  height: 28px;
  perspective: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.4px;
  font-weight: 200;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 3;
  white-space: nowrap;
  overflow: visible;
  min-height: 32px;
}

.rotator.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rotator-display {
  position: relative;
  z-index: 2;
  display: inline-block;
  white-space: nowrap;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  font-variant-ligatures: none;
  letter-spacing: 0.4px;
}

.rotator-item {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-60%);
  transform-origin: center center;
  transition: opacity 0.35s ease, transform 0.9s cubic-bezier(0.16, 1.05, 0.3, 1);
  white-space: nowrap;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  will-change: transform, opacity;
}

.rotator-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scaleX(0.35);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.25s ease;
  white-space: nowrap;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}

.rotator.is-spread .rotator-item {
  opacity: 0 !important;
  transition: opacity 0.2s ease;
}

.rotator.is-spread .rotator-display {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.rotator.is-spread .rotator-line {
  opacity: 1;
  transition-delay: 0.12s;
  transform: translate(-50%, -50%) scaleX(1);
}

.rotator:not(.is-spread) .rotator-line {
  transition-duration: 0.85s;
}

.rotator-line span {
  display: inline-block;
  opacity: 0;
  transform: translateX(0) scale(0.96);
  transition: transform 0.65s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.25s ease;
}

.rotator.is-spread .rotator-line span {
  opacity: 1;
  transition-delay: 0.12s;
  transform: translateX(calc(var(--spread, 0) * 1px)) scale(1);
}

.rotator:not(.is-spread) .rotator-line span {
  transition-duration: 0.85s;
}

.hover-gallery {
  position: relative;
  width: 100vw;
  height: min(100vh, 980px);
  margin-left: calc(50% - 50vw);
  z-index: 1;
}

@media (min-width: 1700px) {
  .video-wrap {
    width: min(1520px, 100vw);
  }
}

.hover-zone {
  position: absolute;
  inset: 0;
  cursor: auto;
}

.hover-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.hover-photo {
  position: absolute;
  width: clamp(140px, 14vw, 260px);
  height: auto;
  opacity: 1;
  transition: opacity 0.2s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.hover-photo.is-fading {
  opacity: 0;
}

.about-layout {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(28px, 3.6vw, 48px);
}

.photo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 2;
  position: relative;
}

.about-photo {
  width: min(380px, 30vw);
  height: auto;
  border-radius: 6px;
  margin-top: -28px;
  transform: translate3d(var(--photo-offset-x, 0px), calc(var(--photo-shift, 0px) + var(--photo-offset-y, 0px)), 0) scaleX(-1);
  opacity: 0;
  filter: none;
  will-change: transform;
  transition: transform 0.55s ease, filter 0.25s ease;
}

.photo-caption {
  color: #ffffff;
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 300;
  letter-spacing: 0.3px;
  margin-top: 6px;
}

.about-photo.is-visible {
  animation: photoIn 0.8s ease forwards;
}

.photo-block:hover .about-photo {
  transform: translate3d(var(--photo-offset-x, 0px), calc(var(--photo-shift, 0px) + var(--photo-offset-y, 0px)), 0) scaleX(-1);
  filter: none;
}

.photo-glass {
  position: absolute;
  left: 0;
  top: -28px;
  width: min(380px, 30vw);
  aspect-ratio: 1 / 1.35;
  pointer-events: none;
  opacity: 0;
  filter: url(#glassRefraction);
  transform: translate(var(--photo-lens-x, 0px), var(--photo-lens-y, 0px)) scale(1.03);
  -webkit-mask-image: radial-gradient(
    circle var(--photo-lens-size, 70px) at var(--photo-lens-px, 50%) var(--photo-lens-py, 50%),
    #000 0%,
    #000 78%,
    transparent 85%
  );
  mask-image: radial-gradient(
    circle var(--photo-lens-size, 70px) at var(--photo-lens-px, 50%) var(--photo-lens-py, 50%),
    #000 0%,
    #000 78%,
    transparent 85%
  );
  background: url("../images/foto-kino.jpg") center/cover no-repeat;
  mix-blend-mode: normal;
  z-index: 3;
  transition: opacity 0.15s ease;
}

.photo-block.is-hover .photo-glass {
  opacity: 1;
}

@keyframes photoIn {
  0% {
    opacity: 0;
    filter:
      drop-shadow(-6px 0 0 rgba(255, 70, 70, 0.7))
      drop-shadow(0 -6px 0 rgba(255, 220, 80, 0.7))
      drop-shadow(6px 0 0 rgba(80, 160, 255, 0.7))
      drop-shadow(0 6px 0 rgba(80, 255, 160, 0.5));
  }
  20% {
    opacity: 0.35;
    filter:
      drop-shadow(-4px 0 0 rgba(255, 70, 70, 0.6))
      drop-shadow(0 -4px 0 rgba(255, 220, 80, 0.6))
      drop-shadow(4px 0 0 rgba(80, 160, 255, 0.6))
      drop-shadow(0 4px 0 rgba(80, 255, 160, 0.4));
  }
  40% {
    opacity: 0.6;
    filter:
      drop-shadow(-2px 0 0 rgba(255, 70, 70, 0.4))
      drop-shadow(0 -2px 0 rgba(255, 220, 80, 0.4))
      drop-shadow(2px 0 0 rgba(80, 160, 255, 0.4))
      drop-shadow(0 2px 0 rgba(80, 255, 160, 0.3));
  }
  100% {
    opacity: 1;
    filter: none;
  }
}

.section-title {
  color: #ffffff;
  font-size: clamp(46px, 4.2vw, 56px);
  letter-spacing: 1px;
  visibility: hidden;
  text-shadow: none;
  filter: blur(0.25px);
  align-self: center;
  font-weight: var(--fw);
  margin-top: -22px;
}

.dark-section .section-title.chroma-active {
  text-shadow:
    -0.7px 0 rgba(0, 120, 255, 0.45),
    0.7px 0 rgba(255, 70, 70, 0.45),
    0 1px 0 rgba(255, 220, 80, 0.5);
}

.section-title.is-built {
  visibility: visible;
}

.section-title span {
  display: inline-block;
  transform: translateY(-80px);
  will-change: transform;
}

.about-text {
  color: #8a8a8a;
  width: min(100%, clamp(620px, 58vw, 900px));
  max-width: clamp(620px, 58vw, 900px);
  font-size: clamp(22px, 1.85vw, 32px);
  line-height: 1.58;
  letter-spacing: 0.3px;
  font-weight: var(--fw);
  opacity: 0;
  --text-base-x: -40px;
  transform: translate3d(var(--text-base-x), 0, 0);
  transition: opacity 0.6s ease, transform 0.55s ease;
  text-align: justify;
  align-self: flex-start;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

@media (max-width: 980px) {
  .about-text {
    width: min(100%, 92vw);
    max-width: 92vw;
    font-size: clamp(18px, 3.7vw, 24px);
    line-height: 1.5;
  }
}

.about-text .char {
  display: inline-block;
  --fillX: 0%;
  background-image: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff var(--fillX),
    #8a8a8a var(--fillX),
    #8a8a8a 100%
  );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text .word {
  white-space: nowrap;
  display: inline-block;
  transform: translate3d(var(--word-offset-x, 0px), var(--word-offset-y, 0px), 0);
  transition: transform 0.45s ease;
}

.about-text .phrase-highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.04em;
  isolation: isolate;
}

.about-text .phrase-highlight.is-link {
  cursor: pointer;
}

.about-text .phrase-highlight .editor-cta-hint {
  position: absolute;
  left: calc(100% + 24px);
  top: 50%;
  transform: translateY(-54%);
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about-text.is-visible .phrase-highlight.editor-cta .editor-cta-hint {
  opacity: 1;
  transition-delay: 1s;
}

.about-text .phrase-highlight .editor-cta-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  animation: editorHintArrow 1.1s ease-in-out infinite;
}

.about-text .phrase-highlight .editor-cta-arrow span {
  position: absolute;
  background: rgba(255, 255, 255, 0.84);
  display: block;
}

.about-text .phrase-highlight .editor-cta-arrow span:nth-child(1) {
  left: 60%;
  top: 50%;
  width: 11px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.about-text .phrase-highlight .editor-cta-arrow span:nth-child(2) {
  left: 36%;
  top: 50%;
  width: 7px;
  height: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.about-text .phrase-highlight .editor-cta-arrow span:nth-child(3) {
  left: 36%;
  top: 50%;
  width: 7px;
  height: 1px;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.about-text .phrase-highlight .editor-cta-label {
  font-size: 0.48em;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.78);
  text-transform: lowercase;
}

.about-text .phrase-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 26%, rgba(255, 240, 170, 0.28) 0 16%, transparent 38%),
    radial-gradient(circle at 82% 66%, rgba(255, 190, 0, 0.2) 0 18%, transparent 40%),
    radial-gradient(circle at 18% 36%, rgba(0, 0, 0, 0.08) 0 0.8px, transparent 1px),
    radial-gradient(circle at 36% 62%, rgba(0, 0, 0, 0.07) 0 0.8px, transparent 1px),
    radial-gradient(circle at 58% 42%, rgba(0, 0, 0, 0.08) 0 0.8px, transparent 1px),
    radial-gradient(circle at 74% 70%, rgba(0, 0, 0, 0.07) 0 0.8px, transparent 1px),
    radial-gradient(circle at 88% 30%, rgba(0, 0, 0, 0.08) 0 0.8px, transparent 1px),
    rgba(255, 214, 0, 0.9);
  background-size:
    100% 100%,
    100% 100%,
    8px 8px,
    9px 9px,
    10px 10px,
    8px 8px,
    11px 11px,
    100% 100%;
  z-index: -1;
  pointer-events: none;
  border-radius: 4px;
  clip-path: inset(0 100% 0 0);
  animation: phraseMarkLoop 2.4s ease infinite;
}

@keyframes editorHintArrow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}

.about-text .phrase-highlight.slow-loop::after {
  animation-duration: 3.6s;
}

.about-text .phrase-highlight.is-forcing::after {
  animation: none;
  transition: clip-path 0.26s ease;
  clip-path: inset(0 0 0 0);
}

.about-text .phrase-highlight.is-hold::after {
  animation: none;
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.about-text .phrase-highlight.requires-fill::after {
  opacity: 0;
  animation: none;
  clip-path: inset(0 100% 0 0);
}

.about-text .phrase-highlight.no-highlight::after {
  content: none;
}

.about-text.is-filled .phrase-highlight.requires-fill::after {
  opacity: 1;
  animation: phraseMarkLoop 2.4s ease infinite;
}

@keyframes phraseMarkLoop {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  28% {
    clip-path: inset(0 0 0 0);
  }
  64% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}

.about-text.is-visible {
  opacity: 1;
  --text-base-x: 0px;
}

.about-text p {
  margin-bottom: 5px;
}

.reveal-wrap {
  position: relative;
  overflow: visible;
  padding-bottom: 90px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  margin-top: 0;
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.8px;
  text-transform: lowercase;
  color: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-scroll__arrow {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-top: 2px;
  opacity: 0;
  animation: arrowAssemble 1.4s ease-in-out infinite;
}

.hero-scroll__arrow span {
  position: absolute;
  left: 50%;
  top: 2px;
  width: 10px;
  height: 1px;
  background: rgba(0, 0, 0, 0.55);
  transform-origin: center;
  opacity: 0;
}

.hero-scroll__arrow span:nth-child(1) {
  width: 1px;
  height: 10px;
  transform: translateX(-50%);
  animation: arrowStem 1.4s ease-in-out infinite;
}

.hero-scroll__arrow span:nth-child(2) {
  top: 10px;
  transform: translateX(-50%) rotate(45deg);
  animation: arrowLine 1.4s ease-in-out infinite;
}

.hero-scroll__arrow span:nth-child(3) {
  top: 10px;
  transform: translateX(-50%) rotate(-45deg);
  animation: arrowLine 1.4s ease-in-out infinite;
}

@keyframes arrowAssemble {
  0% {
    opacity: 0;
    transform: translateY(-2px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
    transform: translateY(4px);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes arrowLine {
  0%,
  20% {
    opacity: 0;
  }
  35%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes arrowStem {
  0%,
  15% {
    opacity: 0;
    transform: translate(-50%, -40%) scaleY(0.6);
  }
  30%,
  70% {
    opacity: 1;
    transform: translate(-50%, -40%) scaleY(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -40%) scaleY(0.8);
  }
}

.hero-scroll.is-visible {
  opacity: 1;
}

.hero-scroll__dynamic {
  min-width: 52px;
  display: inline-block;
}

.name-glass {
  position: relative;
  display: inline-block;
  padding: 18px 24px;
  border-radius: 20px;
  overflow: visible;
  pointer-events: auto;
  -webkit-user-select: none;
  user-select: none;
  --lens-x: 50%;
  --lens-y: 50%;
  --lens-size: 60px;
  --lens-strength: 0;
  transition: opacity 0.2s ease;
}

.name-glass.intro-mask {
  overflow: hidden;
}

.glass-layer {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  filter: url(#liquidGlass);
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  transition: opacity 0.2s ease;
}

.name-glass.is-hover .glass-layer {
  opacity: 0.45;
}

.name-wave {
  display: none;
}

.name-text {
  position: relative;
  z-index: 0;
  display: inline-block;
  font-size: clamp(42px, 6.4vw, 72px);
  font-weight: var(--fw);
  letter-spacing: 1px;
  color: #000000;
  visibility: hidden;
  text-shadow:
    -0.8px 0 rgba(0, 120, 255, 0.35),
    0.8px 0 rgba(255, 80, 80, 0.35),
    0 1px 0 rgba(255, 220, 80, 0.45);
}

.name-text-glass {
  font-size: clamp(42px, 6.4vw, 72px);
  font-weight: var(--fw);
  letter-spacing: 1px;
  color: #000000;
}

.name-text-glass span {
  display: inline-block;
  will-change: transform;
}
.name-glass .name-text {
  z-index: 2;
  filter: none;
  transition: filter 0.15s ease;
}

.name-glass.is-hover .name-text {
  -webkit-mask-image: radial-gradient(
    circle var(--lens-size) at var(--lens-x) var(--lens-y),
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 1) 86%
  );
  mask-image: radial-gradient(
    circle var(--lens-size) at var(--lens-x) var(--lens-y),
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 1) 86%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.name-text-glass {
  position: absolute;
  inset: 18px 24px;
  pointer-events: none;
  z-index: 3;
  opacity: var(--lens-strength);
  filter: url(#liquidGlass) blur(0.5px);
  mix-blend-mode: normal;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.95),
    rgba(220, 220, 220, 0.25) 45%,
    rgba(255, 255, 255, 0.85) 70%,
    rgba(230, 230, 230, 0.4)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-mask-image: radial-gradient(
    circle var(--lens-size) at var(--lens-x) var(--lens-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 78%,
    rgba(0, 0, 0, 0) 88%
  );
  mask-image: radial-gradient(
    circle var(--lens-size) at var(--lens-x) var(--lens-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 78%,
    rgba(0, 0, 0, 0) 88%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.name-glass .name-text::before,
.name-glass .name-text::after {
  content: none !important;
}

.name-base {
  display: inline-block;
}

.name-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: #000000;
  font: inherit;
  letter-spacing: inherit;
  pointer-events: none;
  opacity: var(--lens-strength, 0);
  filter: url(#glassRefraction);
  transform-origin: var(--lens-x, 50%) var(--lens-y, 50%);
  transform: translate(var(--lens-shift-x, 0px), var(--lens-shift-y, 0px)) scale(var(--lens-scale, 1));
  -webkit-mask-image: radial-gradient(
    circle var(--lens-size, 90px) at var(--lens-x, 50%) var(--lens-y, 50%),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 82%,
    rgba(0, 0, 0, 0.95) 85%,
    rgba(0, 0, 0, 0) 87%
  );
  mask-image: radial-gradient(
    circle var(--lens-size, 90px) at var(--lens-x, 50%) var(--lens-y, 50%),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 82%,
    rgba(0, 0, 0, 0.95) 85%,
    rgba(0, 0, 0, 0) 87%
  );
  transition: opacity 0.15s ease;
}

.name-text::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  font: inherit;
  letter-spacing: inherit;
  pointer-events: none;
  opacity: var(--lens-edge-strength, 0);
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.95),
    rgba(210, 210, 210, 0.15) 45%,
    rgba(255, 255, 255, 0.85) 70%,
    rgba(230, 230, 230, 0.4)
  );
  -webkit-background-clip: text;
  background-clip: text;
  mix-blend-mode: screen;
  filter: url(#glassEdge) contrast(1.1);
  transform-origin: var(--lens-x, 50%) var(--lens-y, 50%);
  transform: translate(var(--lens-shift-x, 0px), var(--lens-shift-y, 0px));
  -webkit-mask-image: radial-gradient(
    circle var(--lens-size, 90px) at var(--lens-x, 50%) var(--lens-y, 50%),
    transparent 78%,
    rgba(0, 0, 0, 0.95) 84%,
    #000 86%,
    transparent 88%
  );
  mask-image: radial-gradient(
    circle var(--lens-size, 90px) at var(--lens-x, 50%) var(--lens-y, 50%),
    transparent 78%,
    rgba(0, 0, 0, 0.95) 84%,
    #000 86%,
    transparent 88%
  );
}

.name-text.is-hover .name-base {
  -webkit-mask-image: radial-gradient(
    circle var(--lens-size, 90px) at var(--lens-x, 50%) var(--lens-y, 50%),
    transparent 0%,
    transparent 80%,
    rgba(255, 255, 255, 0.9) 85%,
    #ffffff 87%
  );
  mask-image: radial-gradient(
    circle var(--lens-size, 90px) at var(--lens-x, 50%) var(--lens-y, 50%),
    transparent 0%,
    transparent 80%,
    rgba(255, 255, 255, 0.9) 85%,
    #ffffff 87%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.name-text.split-active::after,
.name-text.split-active::before {
  opacity: 0 !important;
}

.name-text.is-built {
  visibility: visible;
}

.name-text span {
  display: inline-block;
  will-change: transform;
}

.name-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -37px;
  height: 64px;
  background: #ffffff;
  z-index: 5;
  transition: opacity 0.35s ease;
}


@media (max-width: 600px) {
  .name-text {
    font-size: 48px;
  }
}

.name-text.is-built {
  animation: drift 0.25s steps(2, end) infinite;
  will-change: transform;
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0.3px, -0.25px);
  }
  50% {
    transform: translate(-0.3px, 0.4px);
  }
  75% {
    transform: translate(0.25px, 0.2px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes gradientDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(3%, 2%, 0) scale(1.08);
  }
}

@keyframes gradientDriftChroma {
  0% {
    transform: translate3d(2%, -2%, 0) scale(1);
  }
  100% {
    transform: translate3d(-3%, 3%, 0) scale(1.1);
  }
}
