:root {
  color-scheme: dark;
  --ink: #050607;
  --ink-2: #090b10;
  --surface: rgba(13, 17, 27, 0.74);
  --surface-solid: #10141f;
  --line: rgba(255, 255, 255, 0.16);
  --text: #f6f7fb;
  --muted: #a8b0c4;
  --blue: #59c9ff;
  --violet: #9d7cff;
  --magenta: #ff4fbf;
  --ember: #ffb36a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(255, 79, 191, 0.11), transparent 28%),
    linear-gradient(245deg, rgba(89, 201, 255, 0.12), transparent 34%),
    linear-gradient(180deg, var(--ink), #090a0f 42%, #050607);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 11px);
  mix-blend-mode: screen;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 48%, rgba(21, 11, 44, 0.56)),
    linear-gradient(180deg, transparent, rgba(5, 6, 7, 0.88));
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 10, 17, 0.68);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.brand-lockup,
.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-lockup img,
.site-footer img {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.brand-lockup span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a,
.nav-action {
  min-height: 44px;
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  color: #061018;
  background: linear-gradient(135deg, var(--blue), #ffffff 52%, var(--magenta));
  font-weight: 900;
}

.nav-action svg,
.button svg {
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 28px;
  padding: 148px max(24px, calc((100vw - 1180px) / 2)) 72px;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.14) contrast(1.08);
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2, 3, 5, 0.88), rgba(4, 7, 12, 0.48) 48%, rgba(5, 6, 7, 0.7)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(5, 6, 7, 0.94));
}

.hero-content {
  max-width: 820px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 16px;
  color: #dbe7ff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: 6.8rem;
  line-height: 0.9;
  text-wrap: balance;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.12),
    0 0 42px rgba(89, 201, 255, 0.26),
    0 0 54px rgba(255, 79, 191, 0.2);
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 3.4rem;
  line-height: 1;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  color: #d6dbea;
  font-size: 1.28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button.primary {
  padding: 0 20px;
  color: #061018;
  background: linear-gradient(135deg, var(--blue), #ffffff 50%, var(--magenta));
  border-color: transparent;
}

.button.secondary {
  padding: 0 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.button.large {
  align-self: center;
  min-width: 190px;
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(13, 17, 27, 0.82), rgba(48, 22, 62, 0.36));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-panel p {
  margin: 0;
  color: #d5dbea;
}

.equalizer {
  display: grid;
  height: 94px;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 7px;
  margin: 8px 0 18px;
}

.equalizer span {
  display: block;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), #ffffff, var(--magenta));
  transform-origin: center;
  animation: pulse 1.3s ease-in-out infinite;
}

.equalizer span:nth-child(2n) {
  animation-delay: -180ms;
}

.equalizer span:nth-child(3n) {
  animation-delay: -420ms;
}

.equalizer span:nth-child(4n) {
  animation-delay: -700ms;
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.world-copy h2,
.release h2 {
  text-shadow: 0 0 36px rgba(89, 201, 255, 0.12);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bento-card {
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(9, 12, 18, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.bento-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.metric {
  display: inline-flex;
  min-width: 46px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #09101a;
  background: linear-gradient(135deg, var(--ember), #ffffff 50%, var(--blue));
  font-size: 0.82rem;
  font-weight: 950;
}

.feature-card {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(150px, 0.88fr) 1fr;
  gap: 20px;
  align-items: end;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.world {
  display: grid;
  grid-template-columns: minmax(240px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.world-media {
  position: relative;
}

.world-media::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(89, 201, 255, 0.18), transparent),
    linear-gradient(315deg, rgba(255, 79, 191, 0.18), transparent);
}

.world-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.world-copy p {
  max-width: 650px;
  color: #d6dbea;
  font-size: 1.1rem;
}

.tone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.tone-list li {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #dfe5f4;
  background: rgba(255, 255, 255, 0.05);
}

.tone-list span {
  width: 10px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--magenta));
  flex: 0 0 auto;
}

.release {
  padding-bottom: 126px;
}

.release-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 79, 191, 0.12), transparent 45%, rgba(89, 201, 255, 0.13)),
    rgba(10, 14, 22, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.release-shell p {
  max-width: 690px;
  margin-bottom: 0;
  color: #d4dbea;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.site-footer span {
  color: var(--text);
  font-weight: 900;
}

.site-footer p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.28);
  }

  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: auto;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 132px;
  }

  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-panel {
    max-width: 520px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world {
    grid-template-columns: 1fr;
  }

  .world-media {
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
  }

  .brand-lockup span {
    max-width: min(170px, calc(100vw - 236px));
  }

  .brand-lockup img {
    width: 46px;
    height: 46px;
  }

  .nav-action {
    padding: 0 12px;
  }

  .hero {
    padding-right: 16px;
    padding-bottom: 42px;
    padding-left: 16px;
  }

  .hero-art {
    object-position: 60% center;
  }

  h1 {
    max-width: 8ch;
    font-size: 3.42rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-copy,
  .world-copy p,
  .release-shell p {
    font-size: 1rem;
  }

  .button,
  .hero-actions,
  .release-shell {
    width: 100%;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 78px 0;
  }

  .bento-grid,
  .feature-card,
  .tone-list,
  .release-shell {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: auto;
  }

  .metric {
    margin-bottom: 28px;
  }

  .release-shell {
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand-lockup span {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .atmosphere {
    display: none;
  }
}
