:root {
  color: #f4eef7;
  background: #0d0811;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgb(99 26 134 / 34%), transparent 32rem),
    radial-gradient(circle at 14% 85%, rgb(130 209 115 / 9%), transparent 27rem),
    #0d0811;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgb(255 255 255 / 2.3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2.3%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  content: "";
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(100px);
  opacity: .22;
}

.ambient-one { top: -180px; right: -100px; background: #7d2ca7; }
.ambient-two { bottom: -220px; left: -100px; background: #82d173; }

.site-header {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.wordmark {
  width: 248px;
  height: auto;
  transition: filter 220ms ease, transform 220ms ease;
}

.wordmark:hover {
  filter: drop-shadow(0 0 7px rgb(130 209 115 / 70%)) drop-shadow(0 0 18px rgb(125 44 167 / 55%));
  transform: translateY(-1px) scale(1.025);
}

main {
  display: grid;
  min-height: calc(100vh - 112px);
  place-items: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
  width: min(1180px, calc(100% - 48px));
  padding: 76px 0 88px;
}

.copy { text-align: center; }

.eyebrow {
  margin: 0 0 18px;
  color: #82d173;
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  font-weight: 850;
  letter-spacing: -.065em;
  line-height: .97;
}

h1 em { color: #aa61cf; font-style: normal; }

.lede {
  max-width: 620px;
  margin: 28px auto 0;
  color: #b7a9c0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.animation {
  position: relative;
  display: grid;
  width: min(440px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  place-items: center;
}

.money-rain {
  position: absolute;
  z-index: 2;
  inset: 5% 7%;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}

.tech-product {
  position: absolute;
  z-index: 3;
  display: block;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 12px 20px rgb(0 0 0 / 58%));
}

.graphics-card {
  bottom: 13%;
  left: 0;
  width: 43%;
  transform: rotate(-11deg);
  animation: gpu-float 5.4s ease-in-out infinite;
}

.game-controller {
  top: 10%;
  right: -1%;
  width: 38%;
  transform: rotate(10deg);
  animation: controller-float 4.8s .35s ease-in-out infinite;
}

.bill {
  position: absolute;
  top: -18%;
  display: block;
  width: 72px;
  height: 31px;
  overflow: hidden;
  border: 1px solid #477053;
  border-radius: 2px;
  background:
    repeating-linear-gradient(8deg, rgb(29 77 50 / 7%) 0 1px, transparent 1px 4px),
    linear-gradient(105deg, #dbe8cf, #a9c7a4 48%, #d6e4c9);
  box-shadow: 0 5px 14px rgb(0 0 0 / 35%), inset 0 0 0 2px rgb(247 250 226 / 60%), inset 0 0 0 3px #6d9674;
  color: #214f34;
  opacity: 0;
  animation: bill-fall 6.4s linear infinite;
}

.bill::before,
.bill::after {
  position: absolute;
  content: "";
}

.bill::before {
  top: 6px;
  left: 27px;
  width: 17px;
  height: 20px;
  border: 1px solid #416b4d;
  border-radius: 48% 48% 42% 42%;
  background:
    radial-gradient(ellipse at 50% 31%, #345c43 0 21%, transparent 23%),
    radial-gradient(ellipse at 50% 92%, #345c43 0 35%, transparent 37%),
    #b8cfad;
  box-shadow: 0 0 0 2px rgb(219 232 207 / 65%);
}

.bill::after {
  top: 3px;
  left: 3px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid rgb(46 94 58 / 54%);
  border-radius: 1px;
}

.bill b,
.bill em {
  position: absolute;
  z-index: 2;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.bill b {
  top: 4px;
  left: 6px;
  font-size: 9px;
  letter-spacing: -.08em;
}

.bill em {
  right: 4px;
  bottom: 3px;
  color: #bd6e31;
  font-size: 12px;
  letter-spacing: -.11em;
  text-shadow: 0 1px rgb(255 235 173 / 45%);
}

.bill-one { left: 5%; animation-delay: -1.1s; animation-duration: 6.7s; }
.bill-two { left: 20%; animation-delay: -4.8s; animation-duration: 7.3s; }
.bill-three { left: 35%; animation-delay: -2.7s; animation-duration: 5.8s; }
.bill-four { left: 50%; animation-delay: -6.1s; animation-duration: 7.8s; }
.bill-five { left: 64%; animation-delay: -.3s; animation-duration: 6.2s; }
.bill-six { left: 78%; animation-delay: -3.9s; animation-duration: 7.1s; }
.bill-seven { left: 89%; animation-delay: -5.2s; animation-duration: 6.5s; }
.bill-eight { left: 44%; animation-delay: -1.9s; animation-duration: 8.1s; }

.animation::before,
.animation::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.animation::before {
  inset: 7%;
  border: 1px solid rgb(255 255 255 / 8%);
  background: radial-gradient(circle, rgb(99 26 134 / 25%), rgb(23 16 29 / 48%) 52%, transparent 70%);
  box-shadow: inset 0 0 70px rgb(125 44 167 / 12%);
}

.animation::after {
  inset: 18%;
  border: 1px dashed rgb(130 209 115 / 16%);
  animation: slow-spin 30s linear infinite;
}

.device {
  position: relative;
  z-index: 5;
  width: 37%;
  aspect-ratio: .52;
  padding: 9px;
  border: 1px solid #684477;
  border-radius: 32px;
  background: linear-gradient(145deg, #382141, #160d1b 68%);
  box-shadow: 0 28px 65px rgb(0 0 0 / 48%), inset 1px 1px rgb(255 255 255 / 12%);
  transform-origin: 50% 90%;
  animation: device-dance 4.2s cubic-bezier(.45, 0, .28, 1) infinite;
}

.device-button {
  position: absolute;
  top: 22%;
  right: -4px;
  width: 4px;
  height: 38px;
  border-radius: 0 5px 5px 0;
  background: #684477;
}

.volume-button {
  position: absolute;
  left: -4px;
  width: 4px;
  height: 27px;
  border-radius: 5px 0 0 5px;
  background: #684477;
}

.volume-up { top: 25%; }
.volume-down { top: 38%; }

.screen {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 24px;
  background: radial-gradient(circle at 50% 38%, #351342, #100914 68%);
  place-items: center;
}

.screen::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 5px, rgb(255 255 255 / 2.5%) 6px);
  content: "";
}

.dynamic-island {
  position: absolute;
  z-index: 5;
  top: 10px;
  left: 50%;
  width: 44%;
  height: 16px;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 999px;
  background: #030204;
  box-shadow: 0 1px 5px rgb(0 0 0 / 80%);
  transform: translateX(-50%);
}

.dynamic-island i {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #273b4e, #080d14 62%);
  box-shadow: 0 0 2px #355a78;
}

.screen img {
  z-index: 2;
  width: 53%;
  filter: drop-shadow(0 0 19px rgb(130 209 115 / 34%));
}

.home-indicator {
  position: absolute;
  z-index: 4;
  bottom: 9px;
  left: 50%;
  width: 36%;
  height: 4px;
  border-radius: 999px;
  background: rgb(244 238 247 / 68%);
  transform: translateX(-50%);
}

.scan-line {
  position: absolute;
  z-index: 3;
  top: 12%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #82d173;
  box-shadow: 0 0 12px #82d173, 0 7px 26px rgb(130 209 115 / 42%);
  animation: scan 2.1s ease-in-out infinite;
}

.pixel { position: absolute; z-index: 2; width: 6px; height: 6px; border-radius: 2px; background: #aa61cf; }
.pixel-one { top: 27%; left: 20%; animation: pixel-one 4.2s ease-in-out infinite; }
.pixel-two { top: 60%; right: 18%; background: #82d173; animation: pixel-two 4.2s ease-in-out infinite; }
.pixel-three { bottom: 20%; left: 29%; width: 4px; height: 4px; animation: pixel-two 4.2s .3s ease-in-out infinite; }

.shadow {
  position: absolute;
  z-index: 1;
  bottom: 14%;
  width: 38%;
  height: 8%;
  border-radius: 50%;
  background: rgb(0 0 0 / 52%);
  filter: blur(12px);
  animation: shadow 4.2s ease-in-out infinite;
}

.orbit { position: absolute; z-index: 6; inset: 8%; border-radius: 50%; animation: orbit 8s linear infinite; }
.orbit-two { inset: 3%; animation-duration: 12s; animation-direction: reverse; }
.orbit-three { inset: 15%; animation-duration: 6s; }
.spark { position: absolute; right: 8%; bottom: 20%; color: #82d173; font-size: 2rem; font-weight: 300; text-shadow: 0 0 16px #82d173; animation: sparkle 1.8s ease-in-out infinite; }
.dot { position: absolute; top: 3%; right: 30%; width: 10px; height: 10px; border-radius: 50%; background: #82d173; box-shadow: 0 0 18px #82d173; }

@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes sparkle { 50% { opacity: .35; transform: scale(.72) rotate(45deg); } }
@keyframes scan { 0%, 100% { top: 14%; opacity: .55; } 50% { top: 84%; opacity: 1; } }
@keyframes shadow { 0%, 100% { opacity: .78; transform: scaleX(1); } 47% { opacity: .34; transform: scaleX(.72); } }
@keyframes device-dance {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  42% { transform: translateY(-26px) rotate(3deg); }
  52% { transform: translateY(-25px) rotate(-2deg); }
  68% { transform: translateY(-4px) rotate(2deg); }
  76% { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes pixel-one { 0%, 30%, 100% { opacity: .15; transform: translate(0); } 50% { opacity: 1; transform: translate(-8px, -10px) rotate(45deg); } }
@keyframes pixel-two { 0%, 38%, 100% { opacity: .15; transform: translate(0); } 58% { opacity: 1; transform: translate(7px, -9px) rotate(45deg); } }
@keyframes bill-fall {
  0% { opacity: 0; transform: translate3d(0, -20px, 0) rotate(-14deg); }
  8% { opacity: .72; }
  45% { transform: translate3d(13px, 190px, 0) rotate(8deg); }
  88% { opacity: .62; }
  100% { opacity: 0; transform: translate3d(-8px, 390px, 0) rotate(-9deg); }
}
@keyframes gpu-float {
  0%, 100% { transform: translateY(0) rotate(-11deg); }
  50% { transform: translateY(-13px) rotate(-8deg); }
}
@keyframes controller-float {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(14px) rotate(7deg); }
}

@media (max-width: 760px) {
  .site-header, .hero { width: min(100% - 32px, 620px); }
  .site-header { min-height: 88px; }
  .wordmark { width: 205px; }
  .status { font-size: .66rem; }
  .hero { grid-template-columns: 1fr; gap: 18px; padding: 52px 0 58px; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .animation { width: min(370px, 94vw); grid-row: 1; }
  .copy { grid-row: 2; }
}

@media (max-width: 430px) {
  .animation { margin: -12px auto -4px; }
  .lede { margin-top: 22px; }
}

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