* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  background: #0b0b0f;
  color: #e8e8e8;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  overflow: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
    env(safe-area-inset-bottom) env(safe-area-inset-left);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 11, 15, 0.92) 0%,
    rgba(11, 11, 15, 0.6) 38%,
    rgba(11, 11, 15, 0.18) 60%,
    transparent 76%
  );
  pointer-events: none;
  z-index: 2;
}
#aurora {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  mix-blend-mode: screen;
  will-change: contents;
}
.wrap {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: clamp(1rem, 4vw, 2rem) clamp(2.5rem, 6vw, 4rem);
  width: 100%;
}
.teaser {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(22px, 3vw, 40px);
}
.teaser-headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.25rem, 8vw, 10rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #e5e7eb;
  line-height: 0.95;
}
.teaser-headline em {
  font-style: italic;
  color: #f9fafb;
}
.hero-body {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(148, 163, 184, 0.6);
  max-width: min(700px, 90vw);
}
.wordmark {
  position: fixed;
  top: clamp(1.25rem, 3vw, 1.75rem);
  left: clamp(2.5rem, 6vw, 4rem);
  z-index: 4;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(241, 245, 249, 0.85);
  display: flex;
  align-items: center;
  gap: 0.45em;
}
.wordmark svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.wordmark .accent {
  color: #ffffff;
}
.site-footer {
  position: fixed;
  bottom: clamp(1.25rem, 3vw, 1.75rem);
  left: clamp(2.5rem, 6vw, 4rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.footer-email {
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover {
  color: rgba(148, 163, 184, 0.9);
}
.footer-copy {
  font-family: "Space Mono", monospace;
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(148, 163, 184, 0.22);
  white-space: nowrap;
}
.wordmark,
.teaser-headline,
.hero-body,
.site-footer {
  visibility: hidden;
}

/* ── Mobile layout ── */
@media (max-width: 640px) {
  body::after {
    background: linear-gradient(
      150deg,
      rgba(11, 11, 15, 0.96) 0%,
      rgba(11, 11, 15, 0.65) 45%,
      rgba(11, 11, 15, 0.08) 72%,
      transparent 100%
    );
  }
  .wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .wordmark {
    left: 1.5rem;
    font-size: 1.1rem;
  }
  .wordmark svg {
    width: 28px;
    height: 28px;
  }
  .site-footer {
    left: 1.5rem;
    gap: 1.25rem;
  }
  .teaser-headline {
    font-size: clamp(3rem, 15vw, 5.5rem);
    line-height: 0.92;
  }
  .teaser-headline br {
    display: none;
  }
  .teaser-headline em {
    font-style: normal;
  }
}

/* ── Custom cursor (mouse devices only) ── */
@media (hover: hover) and (pointer: fine) {
  html,
  html * {
    cursor: none !important;
  }

  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: rgba(241, 245, 249, 0.92);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    will-change: transform;
    transition: opacity 0.5s ease;
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    will-change: transform;
    transition:
      opacity 0.5s ease,
      width 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      border-color 0.38s ease,
      background-color 0.38s ease;
  }

  .cursor-ring.is-hovered {
    width: 42px;
    height: 42px;
    border-color: rgba(167, 139, 250, 0.5);
    background-color: rgba(109, 40, 217, 0.055);
  }
}
