@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #f5f0e8;
  --muted: #a49e94;
  --accent: #ff5b24;
  --accent-soft: rgba(255, 91, 36, 0.18);
  --background: #11100f;
  --line: rgba(245, 240, 232, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 91, 36, 0.08), transparent 30rem),
    var(--background);
  font-family: "Manrope", Arial, sans-serif;
}

.splash {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 4rem 1.5rem 2rem;
  isolation: isolate;
}

.splash::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
  content: "";
  opacity: 0.32;
}

.hero {
  position: relative;
  width: min(100%, 780px);
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 2rem;
  color: var(--muted);
  font: 500 0.68rem/1 "DM Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.4rem var(--accent-soft);
  animation: breathe 2.4s ease-in-out infinite;
}

h1 {
  margin: 0;
  font-size: clamp(3.6rem, 12vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.86;
}

h1 span {
  color: var(--accent);
}

.tagline {
  margin: 1.6rem 0 0;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.description {
  max-width: 610px;
  margin: 1.15rem auto 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.75;
}

.signal {
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 2.5rem auto;
}

.signal::before,
.signal::after {
  width: clamp(1.5rem, 8vw, 4rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line));
  content: "";
}

.signal::after {
  background: linear-gradient(90deg, var(--line), transparent);
}

.signal span {
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  animation: waveform 1.8s ease-in-out infinite alternate;
}

.signal span:nth-child(3n + 1) { animation-delay: -0.3s; }
.signal span:nth-child(3n + 2) { animation-delay: -0.7s; }
.signal span:nth-child(4n) { animation-delay: -1.1s; }

.studio {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
}

.studio p {
  margin: 0;
  color: #777168;
  font: 400 0.6rem/1 "DM Mono", monospace;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.studio a {
  display: block;
  border-radius: 0.4rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.studio a:hover,
.studio a:focus-visible {
  opacity: 0.82;
  transform: translateY(-2px);
}

.studio a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.studio img {
  display: block;
  width: 132px;
  height: auto;
}

.footnote {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  margin: 0;
  color: #625e58;
  font: 400 0.58rem/1.4 "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orbit,
.ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
}

.orbit {
  border: 1px solid var(--line);
}

.orbit-one {
  top: 48%;
  left: 50%;
  width: min(92vw, 820px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(18deg) scaleY(0.34);
}

.orbit-two {
  top: 48%;
  left: 50%;
  width: min(74vw, 640px);
  aspect-ratio: 1;
  border-color: rgba(255, 91, 36, 0.16);
  transform: translate(-50%, -50%) rotate(-24deg) scaleY(0.34);
}

.ambient {
  width: 19rem;
  height: 19rem;
  filter: blur(100px);
  opacity: 0.08;
}

.ambient-one {
  top: -7rem;
  right: -7rem;
  background: var(--accent);
}

.ambient-two {
  bottom: -9rem;
  left: -7rem;
  background: #f9b233;
}

@keyframes breathe {
  50% { box-shadow: 0 0 0 0.65rem rgba(255, 91, 36, 0.05); }
}

@keyframes waveform {
  from { height: 7px; opacity: 0.4; }
  to { height: 34px; opacity: 1; }
}

@media (max-width: 620px) {
  .splash {
    padding-block: 3rem 4.5rem;
  }

  h1 {
    letter-spacing: -0.07em;
  }

  .footnote {
    right: 1rem;
    bottom: 1.25rem;
    left: 1rem;
    text-align: center;
  }
}

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