* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #000;
  color: #fff;
}

.background-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.bottom-blur-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  mask-image: linear-gradient(to top, black 0%, transparent 45%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 45%);
}

.cinematic-vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 2;
  box-shadow:
    inset 0 0 140px rgba(0, 0, 0, 0.42),
    inset 0 -140px 190px rgba(0, 0, 0, 0.24);
}

.loader {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  animation: loaderExit .7s cubic-bezier(.77,0,.18,1) 1.15s forwards;
}

.loader-mark {
  position: relative;
  width: min(68vw, 520px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  transform: scaleX(0);
  animation: loaderBase 1.2s cubic-bezier(.22,1,.36,1) 0.15s forwards;
}

.loader-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
  transform: translateX(-100%);
  animation: loaderSweep 1.8s cubic-bezier(.77,0,.18,1) 0.65s forwards;
}

.loader-text {
  position: absolute;
  margin-top: 56px;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  filter: blur(10px);
  transform: translateY(12px);
  animation: loaderText .75s ease 0.25s forwards;
}

.content {
  position: relative;
  z-index: 10;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(18px, 3vh, 34px) 16px;
  overflow: visible;
}

.logo {
  margin: 0;
  font-size: clamp(10px, 1.2vw, 13px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: clamp(0.22em, 0.9vw, 0.38em);
  text-transform: uppercase;
  color: rgb(156, 163, 175);
}

.headline {
  margin: clamp(12px, 2.4vh, 20px) 0 clamp(8px, 1.6vh, 12px);
  font-size: clamp(34px, 6vw, 78px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.subtitle {
  max-width: 640px;
  margin: 0 0 clamp(18px, 3.4vh, 34px);
  font-size: clamp(13px, 1.6vw, 18px);
  line-height: 1.45;
  color: rgb(156, 163, 175);
  font-weight: 400;
}

.carousel-wrap {
  position: relative;
  width: min(100%, 840px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

.animate-carousel-reveal {
  opacity: 0;
  filter: blur(26px);
  transform: translateY(44px) scale(0.96);
  animation: sliderReveal 1.7s cubic-bezier(.22,1,.36,1) 1.45s forwards;
}

.carousel-window {
  width: min(100%, 610px);
  overflow: hidden;
  padding: clamp(8px, 1.6vh, 14px) 0;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  mask-image: none;
  -webkit-mask-image: none;
}

.carousel-track {
  display: flex;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 760ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: transparent;
}

.tile {
  width: min(100%, 540px);
  min-height: clamp(150px, 24vh, 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  padding: clamp(20px, 3vw, 34px);
  border: 0;
  color: #fff;
  background: transparent;
  text-align: center;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: none;
  transition: transform 450ms cubic-bezier(.22,1,.36,1);
}

.tile:hover,
.tile:focus,
.tile:active {
  background: transparent !important;
  box-shadow: none !important;
}

.tile:hover {
  transform: translateY(-7px) scale(1.018);
}

.liquid-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.58) 0%,
      rgba(255,255,255,0.16) 18%,
      rgba(255,255,255,0.035) 42%,
      rgba(255,255,255,0.035) 58%,
      rgba(255,255,255,0.14) 82%,
      rgba(255,255,255,0.52) 100%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.42;
}

.tile:hover::before {
  opacity: 0.56;
}

.shine {
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.tile svg {
  width: clamp(30px, 4vw, 44px);
  height: clamp(30px, 4vw, 44px);
  margin-bottom: clamp(12px, 2vh, 18px);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.16));
}

.tile:hover svg {
  filter: drop-shadow(0 0 26px rgba(255,255,255,0.22));
}

.tile-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.7vw, 32px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.tile-value {
  margin: 0 0 0;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}

.tile.revealed .tile-value {
  user-select: text;
  cursor: text;
}

.tile-small {
  margin: 0;
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.4;
  color: rgb(156, 163, 175);
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 10px 0 8px;
  flex-wrap: wrap;
}

.contact-actions[hidden] {
  display: none;
}

.contact-mini-action {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.9);
  font: inherit;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  padding: 9px 13px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12);
  transition: background 220ms ease, transform 220ms ease, color 220ms ease;
}

.contact-mini-action:hover {
  background: rgba(255,255,255,0.095);
  color: #fff;
  transform: translateY(-1px);
}

.arrow {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.78);
  cursor: pointer;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
  transition: color 250ms ease, transform 250ms ease;
}

.arrow-prev {
  left: 0;
}

.arrow-next {
  right: 0;
}

.arrow::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: rgba(255,255,255,0.012);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.12),
    inset 0 -1px 1px rgba(255,255,255,0.04),
    0 18px 45px rgba(0,0,0,0.18);
  transition: inset 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.arrow::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.42),
    rgba(255,255,255,0.03) 45%,
    rgba(255,255,255,0.22)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.arrow:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.arrow:hover::before {
  inset: 4px;
  background: rgba(255,255,255,0.032);
}

.arrow svg {
  position: relative;
  z-index: 1;
  width: 23px;
  height: 23px;
  stroke-width: 1.65;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(8px, 1.6vh, 12px);
  opacity: 0;
  animation: cleanFade 1.2s ease 2.4s forwards;
}

.dot {
  width: 6px;
  height: 6px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
  cursor: pointer;
  transition: width 300ms ease, background 300ms ease, opacity 300ms ease;
  opacity: 0.8;
}

.dot.active {
  width: 28px;
  background: rgba(255,255,255,0.76);
  opacity: 1;
}

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

.noscript-contact {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 60;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  text-align: center;
}

@keyframes loaderBase {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes loaderSweep {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes loaderText {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes loaderExit {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    filter: blur(24px);
    transform: scale(1.04);
    visibility: hidden;
  }
}

@keyframes blurFadeUp {
  from {
    opacity: 0;
    filter: blur(24px);
    transform: translateY(46px) scale(0.98);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes sliderReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes cleanFade {
  to {
    opacity: 1;
  }
}

.animate-blur-fade-up {
  animation: blurFadeUp 1.45s cubic-bezier(.22,1,.36,1) forwards;
  opacity: 0;
}

@media (max-width: 767px) {
  .content {
    padding-left: 12px;
    padding-right: 12px;
  }

  .headline {
    font-size: clamp(32px, 10vw, 48px);
  }

  .subtitle {
    max-width: 340px;
  }

  .carousel-wrap {
    width: min(100%, 430px);
    padding: 0 46px;
  }

  .carousel-window {
    width: 100%;
  }

  .slide {
    padding: 0 4px;
  }

  .arrow {
    width: 44px;
    height: 44px;
  }

  .arrow::before,
  .arrow::after {
    inset: 7px;
  }

  .arrow svg {
    width: 18px;
    height: 18px;
  }

  .tile {
    border-radius: 28px;
  }
}

@media (max-height: 760px) {
  .headline {
    font-size: clamp(32px, 5.4vw, 62px);
  }

  .subtitle {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .tile {
    min-height: 138px;
    padding: 18px;
  }

  .tile svg {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
  }

  .tile-title {
    font-size: 20px;
  }

  .contact-actions {
    margin: 7px 0 6px;
  }

  .contact-mini-action {
    padding: 7px 10px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


.contact-action {
  user-select: none;
}

.contact-action:focus-visible {
  outline: 1px solid rgba(255,255,255,0.55);
  outline-offset: 4px;
}

/* SEO / profile copy under the contact slider */
.intro-line {
  margin: clamp(10px, 1.8vh, 16px) 0 0;
  font-size: clamp(12px, 1.25vw, 15px);
  line-height: 1.3;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.04em;
}

.seo-bio {
  width: min(100%, 760px);
  margin: clamp(14px, 2.4vh, 24px) auto 0;
  padding: 0 clamp(12px, 2.6vw, 22px);
  color: rgba(255,255,255,0.52);
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  font-style: italic;
}

.seo-bio h2 {
  margin: 0 0 6px;
  font-size: clamp(13px, 1.45vw, 17px);
  line-height: 1.28;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.64);
}

.seo-bio p {
  max-width: 700px;
  margin: 6px auto 0;
  font-size: clamp(11px, 1.08vw, 13px);
  line-height: 1.62;
  font-weight: 300;
}

.seo-bio ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.seo-bio li {
  border-radius: 999px;
  padding: 0;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  background: transparent;
  box-shadow: none;
}

.seo-bio li + li::before {
  content: "·";
  margin: 0 6px 0 0;
  color: rgba(255,255,255,0.28);
}

@media (max-width: 767px) {
  .intro-line {
    margin-top: 10px;
  }

  .seo-bio {
    margin-top: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .seo-bio p {
    font-size: 11.5px;
  }
}

@media (max-height: 760px) {
  .intro-line {
    font-size: 12px;
    margin-top: 8px;
  }

  .seo-bio {
    padding: 0 12px;
    margin-top: 10px;
  }

  .seo-bio p {
    line-height: 1.46;
  }
}

