:root {
  --bg: #06010d;
  --bg-2: #13031f;
  --ink: #f7f1ff;
  --muted: #b9aad1;
  --line: rgba(255, 255, 255, 0.1);
  --pink: #ff3ea5;
  --violet: #8f37ff;
  --cyan: #3ad7ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top, rgba(143, 55, 255, 0.2), transparent 38%),
    radial-gradient(circle at bottom right, rgba(58, 215, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #080111 0%, #040008 100%);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.12) 1px, transparent 0);
  background-size: 34px 34px;
}

.hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 96px 24px 40px;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.38em;
}

.hero__title {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero__copy {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.hub {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(7, 2, 15, 0.76);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hub-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hub-card__orbit {
  position: absolute;
  inset: auto auto 58% 60%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.9;
}

.hub-card--studio .hub-card__orbit {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 62, 165, 0.9), transparent 24%),
    radial-gradient(circle at center, rgba(143, 55, 255, 0.34), transparent 60%);
}

.hub-card--dj .hub-card__orbit {
  background:
    radial-gradient(circle at 35% 35%, rgba(58, 215, 255, 0.95), transparent 22%),
    radial-gradient(circle at center, rgba(255, 62, 165, 0.28), transparent 60%);
}

.hub-card__meta {
  position: relative;
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  letter-spacing: 0.24em;
}

.hub-card__title {
  position: relative;
  margin: 0 0 12px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.05em;
}

.hub-card__text {
  position: relative;
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hub-card__cta {
  position: relative;
  margin-top: 28px;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

@media (max-width: 820px) {
  .hub {
    grid-template-columns: 1fr;
  }

  .hub-card {
    min-height: 340px;
  }

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