:root {
  color-scheme: dark;
  --ink: #08060b;
  --paper: #fffafc;
  --muted: rgba(255, 250, 252, 0.68);
  --hairline: rgba(255, 255, 255, 0.14);
  --pink: #ff1769;
  --magenta: #e900a7;
  --orange: #ff8a00;
  --max-width: 1920px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 63% 18%, rgba(133, 0, 63, 0.32), transparent 31%),
    radial-gradient(circle at 87% 86%, rgba(255, 83, 0, 0.24), transparent 32%),
    linear-gradient(135deg, #04040c 0%, #080516 43%, #18060e 100%);
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.ambient,
.ambient__grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient {
  overflow: hidden;
  z-index: 0;
}

.ambient__orb {
  position: absolute;
  width: 38vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  animation: drift 13s ease-in-out infinite alternate;
}

.ambient__orb--pink {
  top: -17vw;
  left: 36%;
  background: var(--magenta);
}

.ambient__orb--orange {
  right: -18vw;
  bottom: -24vw;
  background: var(--orange);
  animation-delay: -5s;
}

.ambient__grain {
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  min-height: max(720px, 100svh);
  margin: 0 auto;
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: clamp(30px, 5.2vh, 60px);
  left: clamp(28px, 6.5vw, 124px);
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.3vw, 44px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__icon {
  width: clamp(50px, 4vw, 72px);
  height: auto;
  border-radius: 22%;
  box-shadow: 0 18px 40px rgba(255, 23, 105, 0.2);
}

.brand__name {
  font-size: clamp(1.5rem, 2.2vw, 2.55rem);
  font-weight: 780;
  letter-spacing: -0.055em;
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
}

.hero__copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: clamp(28px, 6.5vw, 124px);
  width: min(44vw, 720px);
  transform: translateY(-39%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.72rem, 0.85vw, 0.98rem);
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  box-shadow: 0 0 14px rgba(255, 40, 112, 0.7);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 5.6vw, 6.75rem);
  font-weight: 830;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

h1 span {
  display: block;
  margin-top: 0.12em;
  color: transparent;
  background: linear-gradient(98deg, #ff9a15 2%, #ff4567 48%, #f000a7 96%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 80px rgba(255, 29, 112, 0.18);
}

.hero__description {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.28rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.brand:focus-visible,
.site-footer button:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(255, 137, 32, 0.9);
  outline-offset: 4px;
}

.hero__art {
  position: absolute;
  z-index: 2;
  top: -8%;
  right: -1.5%;
  width: min(54vw, 930px);
  height: 118%;
  margin: 0;
  pointer-events: none;
}

.hero__art::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(8, 6, 11, 0.72) 9%, transparent 36%);
  content: "";
}

.hero__art::after {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(transparent, rgba(8, 6, 11, 0.95));
  content: "";
}

.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(1.08) contrast(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
}

.hero__art-glow {
  position: absolute;
  z-index: -1;
  top: 15%;
  right: 6%;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 15, 111, 0.25);
  filter: blur(110px);
}

.hero__art figcaption {
  position: absolute;
  z-index: 4;
  right: 6%;
  bottom: 13%;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(10, 7, 12, 0.54);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__art figcaption strong {
  color: #fff;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.site-footer {
  position: absolute;
  z-index: 8;
  bottom: clamp(18px, 2.3vh, 32px);
  left: clamp(28px, 6.5vw, 124px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.72rem, 0.75vw, 0.88rem);
  line-height: 1.35;
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.site-footer button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.58);
  background: none;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer button:hover {
  color: #fff;
}

.site-footer__links {
  display: flex;
  gap: 11px;
}

.dialog {
  width: min(92vw, 460px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: var(--paper);
  background: rgba(17, 12, 20, 0.94);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(22px);
}

.dialog::backdrop {
  background: rgba(2, 1, 5, 0.7);
  backdrop-filter: blur(8px);
}

.dialog img {
  border-radius: 14px;
}

.dialog__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.dialog__eyebrow {
  margin: 18px 0 8px;
  color: #ff6b90;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dialog h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.dialog #dialog-copy {
  margin: 15px 0 26px;
  color: var(--muted);
  line-height: 1.6;
}

.dialog__action {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(100deg, var(--orange), var(--pink));
  font-weight: 750;
}

@keyframes drift {
  to { transform: translate3d(4vw, 2vw, 0) scale(1.08); }
}

@media (max-width: 1050px) {
  .site-shell,
  .hero {
    min-height: 820px;
  }

  .hero__copy {
    width: 52vw;
  }

  .hero__art {
    right: -14%;
    width: 65vw;
  }

}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 85% 48%, rgba(205, 0, 91, 0.25), transparent 35%),
      linear-gradient(155deg, #04040c 0%, #120713 58%, #08060b 100%);
  }

  .site-shell,
  .hero {
    min-height: 100svh;
    overflow: visible;
  }

  .site-shell {
    padding-bottom: 34px;
  }

  .site-header {
    position: relative;
    top: auto;
    left: auto;
    justify-content: space-between;
    padding: 22px 20px 0;
  }

  .brand__name {
    font-size: 1.45rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero__copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 70px 24px 0;
    transform: none;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero__description {
    max-width: 520px;
  }

  .hero__art {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: min(940px, 125vw);
    margin-top: -10px;
  }

  .hero__art::before {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 24%);
  }

  .hero__art img {
    object-position: 64% center;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  }

  .hero__art figcaption {
    right: 20px;
    bottom: 14%;
  }

  .site-footer {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -50px;
    padding: 0 24px;
  }
}

@media (max-width: 410px) {
  .brand__icon {
    width: 46px;
  }

  .brand__name {
    font-size: 1.22rem;
  }

  .hero__copy {
    padding-top: 58px;
  }

  .eyebrow {
    letter-spacing: 0.12em;
  }
}

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