:root {
  --bg-base: #020104;
  --bg-top: #05010a;
  --bg-mid: #07101a;
  --bg-bottom: #030106;

  --text: #f7f6fb;
  --muted: rgba(247, 246, 251, 0.76);
  --muted-soft: rgba(247, 246, 251, 0.56);

  --cyan: #00f6ff;
  --pink-light: #ff5ab3;
  --pink: #ff2f92;
  --magenta: #ff007a;
  --deep-magenta: #d6006e;
  --purple: #8d3dff;

  --surface: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.1);
  --focus-ring: rgba(0, 246, 255, 0.9);

  --max-width: 1280px;
  --radius: 28px;
  --header-height: 72px;
  --section-gap: clamp(80px, 11vw, 170px);

  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.18);
  --shadow-medium: 0 18px 40px rgba(0, 0, 0, 0.24);

  --title-gradient: linear-gradient(
    135deg,
    #ffffff 0%,
    #00f6ff 14%,
    #ff5ab3 34%,
    #ff2f92 54%,
    #ff007a 74%,
    #d6006e 90%,
    #ff5ab3 100%
  );

  --page-gradient:
    radial-gradient(circle at 14% 16%, rgba(0, 246, 255, 0.22), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 90, 179, 0.22), transparent 26%),
    radial-gradient(circle at 76% 36%, rgba(255, 0, 122, 0.16), transparent 20%),
    radial-gradient(circle at 50% 60%, rgba(141, 61, 255, 0.12), transparent 28%),
    radial-gradient(circle at 24% 86%, rgba(0, 246, 255, 0.09), transparent 16%),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-top) 30%, var(--bg-mid) 58%, var(--bg-bottom) 100%);

  --work-gradient:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 16% 84%, rgba(214, 0, 110, 0.28), transparent 28%),
    radial-gradient(circle at 42% 22%, rgba(255, 90, 179, 0.22), transparent 24%),
    radial-gradient(circle at 74% 50%, rgba(255, 47, 146, 0.2), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(0, 246, 255, 0.2), transparent 24%),
    linear-gradient(
      135deg,
      rgba(214, 0, 110, 0.94) 0%,
      rgba(255, 0, 122, 0.92) 28%,
      rgba(255, 47, 146, 0.9) 52%,
      rgba(141, 61, 255, 0.86) 76%,
      rgba(0, 246, 255, 0.9) 100%
    );
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background-color: var(--bg-base);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--page-gradient);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
iframe,
svg {
  display: block;
  max-width: 100%;
}

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

.page {
  position: relative;
  isolation: isolate;
}

.wrap {
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  background: transparent;
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  background: rgba(3, 1, 6, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "social brand nav";
  gap: 24px;
  align-items: center;
}

.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: clamp(148px, 15vw, 220px);
  height: auto;
  max-height: 42px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(255, 90, 179, 0.06))
    drop-shadow(0 0 12px rgba(0, 246, 255, 0.04));
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-left {
  grid-area: social;
  justify-content: flex-start;
}

.header-right {
  grid-area: nav;
  justify-content: flex-end;
}

.social-row,
.footer-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.header-left .social-row {
  gap: 10px;
}

.platform-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.022);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1;
  transform: translate3d(0, 0, 0);
  transition:
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    background-color 200ms ease;
}

.platform-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.platform-icon.discord svg {
  width: 17px;
  height: 17px;
  transform: scale(0.85);
}

.platform-icon:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(0, 246, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 14px rgba(0, 246, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.16);
}

.platform-icon:focus-visible,
.top-nav a:focus-visible,
.cta-link:focus-visible,
.work-box:focus-visible,
.brand a:focus-visible,
.discord-cta:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 999px;
}

.platform-icon.spotify:hover { color: #1ed760; }
.platform-icon.youtube:hover { color: #ff3b30; }
.platform-icon.instagram:hover { color: #ff5ea8; }
.platform-icon.tiktok:hover { color: #7df9ff; }
.platform-icon.twitch:hover { color: #a970ff; }
.platform-icon.discord:hover { color: #5865F2; }

.platform-icon.twitch svg {
  transform: translateX(0.5px) translateY(0.2px);
}

.top-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.top-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 200ms ease, opacity 200ms ease;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.85;
  transition: transform 200ms ease;
}

.top-nav a:hover {
  color: var(--text);
  opacity: 1;
}

.top-nav a:hover::after {
  transform: scaleX(1);
}

/* =========================
   HERO
   ========================= */

.hero {
  padding: clamp(44px, 9vw, 98px) 0 clamp(54px, 8vw, 112px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-soft);
  white-space: nowrap;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 9.8vw, 150px);
  line-height: 0.86;
  letter-spacing: -0.07em;
  font-weight: 900;
  text-transform: uppercase;
}

.title-color {
  display: block;
  color: transparent;
  background: var(--title-gradient);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    0 0 10px rgba(255, 0, 122, 0.12),
    0 0 18px rgba(0, 246, 255, 0.06);
}

.title-white {
  display: block;
  color: #ffffff;
}

.hero-copy p {
  margin: 24px 0 0;
  max-width: 620px;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--muted);
}

.hero-intro {
  font-size: clamp(18px, 1.9vw, 23px);
}

.hero-subcopy {
  color: var(--muted-soft);
}

.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  transition: transform 200ms ease, color 200ms ease;
}

.cta-link:hover {
  transform: translateX(3px);
  color: var(--cyan);
}

.hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 2, 14, 0.55);
  box-shadow: var(--shadow-medium);
}

.hero-media iframe {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  background: #000;
}

/* =========================
   SECTIONS
   ========================= */

.section {
  padding-top: var(--section-gap);
}

.section-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-soft);
  position: sticky;
  top: 118px;
}

.intro-copy {
  max-width: 860px;
  font-size: clamp(24px, 3.1vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.intro-copy p {
  margin: 0 0 22px;
}

.intro-copy .small {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.75;
  color: var(--muted);
  letter-spacing: 0;
  max-width: 740px;
}

.stream-copy {
  max-width: 920px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-intro-title {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

.spotify-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.spotify-card,
.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.spotify-card {
  padding: 14px;
}

.spotify-card iframe {
  width: 100%;
  height: 152px;
  border: 0;
  border-radius: 18px;
  background: #000;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.image-card {
  aspect-ratio: 1 / 1;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.image-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 246, 255, 0.22);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 14px rgba(255, 0, 140, 0.05);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   COMMUNITY
   ========================= */

.community-box {
  border-radius: 28px;
  padding: clamp(28px, 3vw, 42px);
  background:
    radial-gradient(circle at 20% 20%, rgba(88, 101, 242, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 246, 255, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.community-box:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(88, 101, 242, 0.15);
}

.community-content {
  max-width: 560px;
}

.community-text {
  margin: 0 0 26px;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
   DISCORD BUTTON
   ========================= */

.discord-cta {
  display: block;
  width: 100%;
  max-width: 380px;
}

.discord-btn {
  display: block;
  width: 100%;
  position: relative;
  padding: 16px 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(88, 101, 242, 0.3);
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.18), rgba(0, 0, 0, 0.58)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.discord-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(88, 101, 242, 0.55);
  box-shadow:
    0 0 18px rgba(88, 101, 242, 0.22),
    0 16px 30px rgba(0, 0, 0, 0.24);
}

.discord-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.discord-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 101, 242, 0.16);
  border: 1px solid rgba(88, 101, 242, 0.22);
}

.discord-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  color: #a5b4fc;
  transform: scale(0.85);
}

.discord-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.discord-title {
  font-weight: 700;
  font-size: 16px;
  color: #c7d2fe;
  line-height: 1.2;
}

.discord-sub {
  margin-top: 3px;
  font-size: 13px;
  color: rgba(199, 210, 254, 0.68);
  line-height: 1.2;
}

.discord-arrow {
  flex: 0 0 auto;
  transition: transform 200ms ease, opacity 200ms ease;
  opacity: 0.75;
}

.discord-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #a5b4fc;
}

.discord-btn:hover .discord-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* =========================
   COLLABORATIONS
   ========================= */

.collaborations {
  padding-top: var(--section-gap);
}

.collaborations-content {
  position: relative;
  width: 100%;
  max-width: 980px;
}

.collab-group {
  position: relative;
}

.collab-group + .collab-group {
  margin-top: 34px;
}

.collab-tools {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.collab-label {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

/* Brand cards */

.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 22px 12px 14px;
}

.brand-card {
  position: relative;
  min-height: 180px;
  border-radius: 18px;
  cursor: default;
  isolation: isolate;
  overflow: visible;
  transform: translateZ(0);
}

.brand-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(
    -45deg,
    var(--pink-light) 0%,
    var(--magenta) 42%,
    var(--cyan) 100%
  );
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  transform-origin: center;
  z-index: -2;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 28px;
  background: linear-gradient(
    -45deg,
    rgba(255, 90, 179, 0.95) 0%,
    rgba(255, 0, 122, 0.95) 42%,
    rgba(0, 246, 255, 0.95) 100%
  );
  transform: translate3d(0, 0, 0) scale(0.96);
  filter: blur(34px);
  opacity: 0.95;
  z-index: -3;
  pointer-events: none;
  transition:
    filter 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
  will-change: transform, filter;
}

.brand-card:hover::before {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.brand-card:hover::after {
  filter: blur(42px);
  transform: translate3d(0, 0, 0) scale(1.02);
  opacity: 1;
}

.brand-card-inner {
  position: relative;
  z-index: 2;
  min-height: 180px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #000;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  text-align: center;
}

.brand-card-logo {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 8px;
  flex: 0 0 auto;
}

.brand-card-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 28px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.08);
  opacity: 0.95;
  margin-inline: auto;
}

.brand-card-text {
  margin: 0;
  max-width: 30ch;
  font-size: 14px;
  line-height: 1.58;
  color: rgba(247, 246, 251, 0.88);
  overflow-wrap: anywhere;
}

/* Tool cards */

.tool-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.tool-card {
  min-height: 88px;
  width: fit-content;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 12% 22%, rgba(0, 246, 255, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    rgba(255, 255, 255, 0.014);
  box-shadow: var(--shadow-soft);
  display: inline-grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: center;
  gap: 8px;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 246, 255, 0.16);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    0 0 12px rgba(0, 246, 255, 0.05);
}

.tool-card-logo {
  width: auto;
  height: auto;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.tool-card-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 20px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.03);
  opacity: 0.88;
  margin-inline: auto;
}

.tool-card-text {
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
   CONTACT
   ========================= */

.work {
  padding-top: var(--section-gap);
  background: transparent;
}

.work-box {
  position: relative;
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(30px, 3.2vw, 46px);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--work-gradient);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 36px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
  isolation: isolate;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.work-box:hover {
  -webkit-transform: translateY(-3px) translateZ(0);
  transform: translateY(-3px) translateZ(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 44px rgba(0, 0, 0, 0.24);
}

.work-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 42%, rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.14), transparent 18%);
  pointer-events: none;
  z-index: 0;
}

.work-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  min-height: clamp(220px, 28vw, 320px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.work-kicker,
.work-heading,
.work-text,
.work-cta {
  display: block;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.work-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.work-heading {
  font-size: clamp(30px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-transform: uppercase;
}

.work-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.work-cta {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* =========================
   FOOTER
   ========================= */

footer {
  margin-top: clamp(90px, 10vw, 140px);
  padding: 26px 0 calc(36px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  color: var(--muted-soft);
  text-align: center;
}

.footer-icons .platform-icon {
  width: 28px;
  height: 28px;
}

.footer-icons .platform-icon svg {
  width: 12px;
  height: 12px;
}

.footer-icons .platform-icon.discord svg {
  width: 14px;
  height: 14px;
  transform: scale(0.85);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "social"
      "nav";
    gap: 12px;
    min-height: auto;
    padding: 14px 0 16px;
  }

  .brand,
  .header-left,
  .header-right {
    justify-content: center;
  }

  .brand img {
    width: clamp(150px, 22vw, 210px);
    max-height: 40px;
  }

  .hero-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .section-label {
    position: static;
  }

  .collaborations-content,
  .work-box {
    max-width: 100%;
  }

  .brand-cards {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner {
    gap: 10px;
    padding: 12px 0 14px;
  }

  .header-left .social-row {
    gap: 10px;
  }

  .header-left .platform-icon {
    width: 36px;
    height: 36px;
  }

  .header-left .platform-icon svg {
    width: 14px;
    height: 14px;
  }

  .header-left .platform-icon.discord svg {
    width: 16px;
    height: 16px;
    transform: scale(0.85);
  }

  .brand {
    padding: 0;
  }

  .brand img {
    width: clamp(138px, 42vw, 188px);
    max-height: 34px;
  }

  .top-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .spotify-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .discord-cta {
    max-width: 100%;
  }

  .discord-btn {
    padding: 15px 16px;
  }

  .collab-group + .collab-group {
    margin-top: 30px;
  }

  .collab-tools {
    padding-top: 22px;
  }

  .brand-cards {
    gap: 22px;
    padding: 18px 6px 10px;
  }

  .brand-card,
  .brand-card-inner {
    min-height: 180px;
  }

  .brand-card::before {
    width: 72%;
    border-radius: 22px;
  }

  .brand-card::after {
    inset: -14px;
    filter: blur(30px);
  }

  .brand-card:hover::before {
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .brand-card:hover::after {
    filter: blur(38px);
    transform: translate3d(0, 0, 0) scale(1.015);
  }

  .brand-card-inner {
    padding: 14px 16px;
    gap: 8px;
  }

  .brand-card-logo {
    min-height: 44px;
  }

  .brand-card-logo img {
    max-height: 24px;
  }

  .tool-cards {
    gap: 14px;
  }

  .tool-card {
    min-height: 82px;
    padding: 13px 16px;
  }

  .tool-card-logo img {
    max-height: 18px;
  }

  .work-box {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .work-content {
    min-height: auto;
    gap: 12px;
  }

  .work-heading {
    font-size: clamp(28px, 9vw, 46px);
  }

  .work-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .work-cta {
    font-size: clamp(18px, 7vw, 30px);
  }
}

@media (max-width: 600px) {
  .eyebrow {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .header-inner {
    gap: 8px;
    padding: 10px 0 12px;
  }

  .brand img {
    width: clamp(132px, 40vw, 170px);
    max-height: 30px;
  }

  .top-nav {
    gap: 10px 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero {
    padding-top: 28px;
  }

  .discord-inner {
    gap: 14px;
  }

  .discord-icon {
    width: 42px;
    height: 42px;
  }

  .discord-icon svg {
    width: 22px;
    height: 22px;
  }

  .collab-group + .collab-group {
    margin-top: 28px;
  }

  .collab-label {
    margin-bottom: 12px;
  }

  .brand-cards {
    gap: 12px;
    padding: 12px 4px 6px;
  }

  .brand-card {
    min-height: 112px;
    border-radius: 12px;
  }

  .brand-card::before {
    width: 68%;
    border-radius: 16px;
  }

  .brand-card::after {
    inset: -8px;
    border-radius: 18px;
    filter: blur(18px);
  }

  .brand-card:hover::before {
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .brand-card:hover::after {
    filter: blur(24px);
    transform: translate3d(0, 0, 0) scale(1.01);
  }

  .brand-card-inner {
    min-height: 112px;
    border-radius: 12px;
    padding: 10px 12px;
    gap: 4px;
  }

  .brand-card-logo {
    min-height: 0;
    padding-inline: 0;
  }

  .brand-card-logo img {
    max-height: 14px;
  }

  .brand-card-text {
    max-width: 22ch;
    font-size: 11px;
    line-height: 1.35;
  }

  .tool-cards {
    gap: 12px;
  }

  .tool-card {
    min-height: 76px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .tool-card-logo img {
    max-height: 17px;
  }

  .tool-card-text {
    font-size: 11px;
  }

  .work-box {
    padding: 24px 16px;
    border-radius: 24px;
  }

  .work-content {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================
   Drop-in restructuring overrides
   ========================================= */

.top-nav {
  gap: 20px;
}

#work,
#contact,
#stream,
#music,
#about,
#community,
#instagram {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section.collaborations {
  padding-top: clamp(24px, 5vw, 44px);
}

.work {
  margin-top: clamp(28px, 5vw, 56px);
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section#music,
.section#instagram {
  padding-top: clamp(72px, 10vw, 132px);
}

@media (max-width: 720px) {
  .header-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "social";
    gap: 12px;
    padding-block: 10px 14px;
  }

  .header-left,
  .header-right,
  .brand {
    justify-content: center;
  }

  .site-header {
    min-height: auto;
  }

  .top-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
}
