:root {
  --bg: #08050b;
  --ink: #fff4e6;
  --muted: #d9a98d;
  --orange: #ff9a44;
  --pink: #ff6d8d;
  --blue: #5bc7ff;
  --line: rgba(255, 244, 230, 0.16);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, rgba(10, 9, 24, 0.25), rgba(8, 5, 11, 0.9)),
    radial-gradient(circle at 78% 30%, rgba(255, 154, 68, 0.34), transparent 28rem),
    radial-gradient(circle at 32% 16%, rgba(91, 199, 255, 0.2), transparent 24rem),
    linear-gradient(135deg, #160711, #08050b 54%, #020305);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(to bottom, rgba(255,255,255,.035), rgba(255,255,255,.035) 1px, transparent 1px, transparent 5px),
    linear-gradient(90deg, rgba(255, 154, 68, .08), transparent 38%, rgba(91, 199, 255, .08));
}

.stage {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("https://cdn.discordapp.com/attachments/1417635370065072252/1540449811562631270/content.png?ex=6a89ff2f&is=6a88adaf&hm=342f06c403013cb8b841138a8c56d8972924893448e34b3d86037da2348fa712&");
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(1.2) contrast(1.06);
}

.story {
  position: absolute;
  left: clamp(20px, 7vw, 110px);
  top: 50%;
  width: min(520px, calc(100vw - 40px));
  transform: translateY(-50%);
  z-index: 2;
}

.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(74px, 14vw, 210px);
  line-height: .78;
  letter-spacing: 0;
  text-shadow:
    0 0 28px rgba(255, 154, 68, .55),
    0 0 58px rgba(255, 109, 141, .24);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.48;
}

.bio {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  color: var(--ink);
  background: rgba(255, 244, 230, 0.07);
}

.motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pull-line {
  position: absolute;
  top: 47%;
  left: 34%;
  width: 40vw;
  height: 3px;
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, var(--orange), var(--pink));
  opacity: 0;
  animation: linePull 4.8s ease-in-out infinite;
}

.cet-name {
  position: absolute;
  top: 34%;
  left: clamp(220px, 38vw, 680px);
  display: flex;
  gap: clamp(8px, 2vw, 22px);
  font-size: clamp(86px, 15vw, 230px);
  font-weight: 900;
  letter-spacing: 0;
  color: var(--ink);
  text-shadow: 0 0 30px rgba(255, 154, 68, .55);
  transform: translateX(72vw);
  animation: namePulled 4.8s cubic-bezier(.2,.78,.2,1) infinite;
}

.cet-name span {
  display: inline-block;
  transform: rotate(-4deg);
}

.cet-name span:nth-child(2) { transform: rotate(3deg) translateY(12px); color: var(--orange); }
.cet-name span:nth-child(3) { transform: rotate(-2deg) translateY(-6px); color: var(--blue); }

.cet-cat {
  position: absolute;
  top: 17%;
  right: clamp(16px, 8vw, 130px);
  width: min(44vw, 520px);
  height: auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  box-shadow: 0 34px 100px rgba(0,0,0,.55);
  object-fit: cover;
  transform: translateX(60vw) rotate(2deg);
  animation: catEnter 4.8s cubic-bezier(.2,.78,.2,1) infinite;
}

.links {
  position: fixed;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 42px);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.links a {
  min-width: 78px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(8, 5, 11, 0.72);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.links a:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  background: rgba(255, 154, 68, .16);
}

@keyframes catEnter {
  0% { transform: translateX(60vw) rotate(4deg); opacity: 0; }
  14% { opacity: 1; }
  38%, 70% { transform: translateX(0) rotate(-1deg); opacity: 1; }
  100% { transform: translateX(60vw) rotate(4deg); opacity: 0; }
}

@keyframes namePulled {
  0% { transform: translateX(72vw); opacity: 0; }
  18% { opacity: 1; }
  42%, 70% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(72vw); opacity: 0; }
}

@keyframes linePull {
  0%, 8% { transform: scaleX(.05); opacity: 0; }
  22%, 68% { transform: scaleX(1); opacity: .9; }
  100% { transform: scaleX(.05); opacity: 0; }
}

@media (max-width: 860px) {
  .story {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 34px 20px 220px;
    width: auto;
  }

  .cet-cat {
    top: auto;
    right: 18px;
    bottom: 116px;
    width: min(58vw, 260px);
  }

  .cet-name {
    top: auto;
    left: 20px;
    bottom: 170px;
    font-size: clamp(72px, 22vw, 120px);
  }

  .pull-line {
    top: auto;
    left: 20px;
    bottom: 212px;
    width: 52vw;
  }

  .links {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }

  .links a {
    min-width: 0;
    flex: 1;
  }
}
