/* =========================================================================
   THE SKYLINE POP — Official Artist Website
   Dark · cinematic · premium · minimal
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #07080c;
  --bg-2: #0c0e15;
  --bg-3: #12141d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --fg: #f4f5f8;
  --fg-soft: #c9ccd6;
  --muted: #8b90a0;
  --muted-2: #5f6474;

  --accent: #7c8cff;        /* cool electric blue-violet */
  --accent-2: #b48cff;      /* violet */
  --accent-glow: rgba(124, 140, 255, 0.35);
  --accent-glow-2: rgba(180, 140, 255, 0.28);

  --font-head: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --container: 1140px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(72px, 12vw, 150px);
  --radius: 18px;
  --radius-sm: 12px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd, dt, figure { margin: 0; }
h1, h2, h3 { font-family: var(--font-head); color: var(--fg); letter-spacing: -0.01em; }
.mono { font-family: var(--font-mono); font-size: 0.92em; letter-spacing: 0.02em; }

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--fg); color: var(--bg);
  padding: 10px 14px; border-radius: 8px; font-weight: 600; z-index: 1000;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ---------- Typography helpers ---------- */
.label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.lead {
  font-family: var(--font-head);
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.45;
  color: var(--fg);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.note {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  --btn-border: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .35s var(--ease-out), background .25s, border-color .25s, box-shadow .35s, color .25s;
  will-change: transform;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  --btn-bg: var(--fg);
  --btn-fg: #0a0b10;
  --btn-border: var(--fg);
  box-shadow: 0 10px 30px -12px rgba(244, 245, 248, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 16px 40px -12px rgba(124, 140, 255, 0.55), 0 0 0 1px rgba(124, 140, 255, 0.3);
}
.btn-ghost {
  --btn-bg: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { --btn-border: rgba(255, 255, 255, 0.4); --btn-bg: rgba(255, 255, 255, 0.07); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.btn.is-disabled {
  --btn-bg: rgba(255, 255, 255, 0.06);
  --btn-fg: var(--muted);
  --btn-border: var(--line);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.actions.center { flex-direction: column; align-items: center; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 8, 12, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 36px; height: 36px; border-radius: 50%; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--fg);
}

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav ul { display: flex; gap: 28px; }
.site-nav ul a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.site-nav ul a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--fg); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}
.site-nav ul a:hover, .site-nav ul a.is-active { color: var(--fg); }
.site-nav ul a:hover::after, .site-nav ul a.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
}
.nav-toggle-bar {
  position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--fg);
  transition: transform .3s var(--ease-out), top .3s var(--ease-out);
}
.nav-toggle-bar:nth-child(1) { top: 17px; }
.nav-toggle-bar:nth-child(2) { top: 25px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 40px) 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .9;
  transform: translate3d(var(--px, 0), var(--py, 0), 0);
  transition: transform 1.2s var(--ease-out);
}
.glow-a {
  width: 60vmax; height: 60vmax;
  left: -18vmax; top: -22vmax;
  background: radial-gradient(closest-side, rgba(96, 120, 255, 0.34), rgba(96, 120, 255, 0) 70%);
  animation: drift-a 22s ease-in-out infinite alternate;
}
.glow-b {
  width: 55vmax; height: 55vmax;
  right: -20vmax; bottom: -18vmax;
  background: radial-gradient(closest-side, rgba(170, 120, 255, 0.26), rgba(170, 120, 255, 0) 70%);
  animation: drift-b 26s ease-in-out infinite alternate;
}
@keyframes drift-a { to { transform: translate3d(6vmax, 4vmax, 0) scale(1.08); } }
@keyframes drift-b { to { transform: translate3d(-5vmax, -6vmax, 0) scale(1.06); } }

/* thin skyline "horizon" — an abstract line of light instead of a stock city photo */
.horizon {
  position: absolute; left: 0; right: 0; top: 68%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 140, 255, 0.55) 30%, rgba(244, 245, 248, 0.7) 50%, rgba(180, 140, 255, 0.5) 70%, transparent);
  opacity: .45;
}
.horizon::before {
  content: ""; position: absolute; left: 0; right: 0; top: -140px; height: 280px;
  background: linear-gradient(to bottom, transparent, rgba(124, 140, 255, 0.07) 50%, transparent);
}
.horizon::after {
  content: ""; position: absolute; left: 0; right: 0; top: 1px; height: 40vh;
  background: linear-gradient(to bottom, rgba(7, 8, 12, 0), var(--bg));
}

.lights { position: absolute; inset: 0; }
.lights i {
  position: absolute; left: var(--x); top: var(--y);
  width: 3px; height: 3px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px 2px rgba(180, 190, 255, 0.55);
  opacity: .2;
  animation: twinkle 5.5s ease-in-out infinite;
  animation-delay: var(--d);
}
.lights i:nth-child(odd) { width: 2px; height: 2px; }
@keyframes twinkle { 0%, 100% { opacity: .15; } 50% { opacity: .85; } }

.grain {
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  opacity: .045;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1.4s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -4%); } 75% { transform: translate(-1%, 3%); } 100% { transform: translate(0, 0); }
}

.hero-inner { text-align: center; position: relative; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}

/* small, quiet "Official Artist Website" marker above the name */
.hero-official {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -6px auto 30px;
  padding: 7px 14px;
  border: 1px solid rgba(124, 140, 255, 0.28);
  border-radius: 999px;
  background: rgba(124, 140, 255, 0.05);
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-official::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-title {
  font-size: clamp(46px, 11.5vw, 132px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -0.035em;
  color: var(--fg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 .22em;
  text-shadow: 0 0 60px rgba(124, 140, 255, 0.18);
}
.hero-title .word { display: inline-block; }
.hero-title .word:nth-child(2) {
  background: linear-gradient(100deg, #fff 0%, #dfe3ff 45%, #b9bfff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.hero-tagline {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 14px;
  font-family: var(--font-head);
  font-size: clamp(13px, 1.5vw, 15px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.hero-tagline .dot { color: var(--accent); }

.hero-actions { margin-top: 44px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.hero-release {
  margin-top: 34px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.hero-release a { color: var(--fg); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; transition: border-color .2s; }
.hero-release a:hover { border-color: var(--fg); }
.hero-release em { font-style: normal; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; position: relative; }
.section + .section::before {
  content: ""; position: absolute; left: 50%; top: 0; width: min(100% - var(--gutter) * 2, var(--container));
  height: 1px; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.grid-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 40px 64px; align-items: start; }
.section-head.center { text-align: center; }

/* ---------- About ---------- */
.about { background: linear-gradient(to bottom, var(--bg), var(--bg-2)); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.pills li {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

/* ---------- Latest release ---------- */
.release { background: var(--bg-2); overflow: hidden; }
.release-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px 80px;
  align-items: center;
}
.artwork { position: relative; }
.artwork img {
  width: 100%;
  border-radius: var(--radius);
  position: relative; z-index: 1;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform .8s var(--ease-out);
}
.artwork:hover img { transform: translateY(-4px) scale(1.01); }
.artwork-glow {
  position: absolute; inset: 8% -6% -8% -6%;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(124, 140, 255, 0.35), transparent 70%),
    radial-gradient(60% 60% at 70% 80%, rgba(255, 150, 90, 0.22), transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

.release-title {
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -0.04em;
}
.release-artist {
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.release-desc {
  margin-top: 28px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 52ch;
}

.meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta dt {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.meta dd { font-size: 15px; color: var(--fg); font-weight: 500; }
.release .actions { margin-top: 32px; }

/* ---------- Music video ---------- */
.video { background: linear-gradient(to bottom, var(--bg-2), var(--bg)); }
.video .section-head { margin-bottom: 44px; }
.video-available {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(124, 140, 255, 0.28);
  border-radius: 999px;
  background: rgba(124, 140, 255, 0.05);
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.video-available::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.video-subtitle {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1040px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.9), 0 0 0 1px var(--line);
  isolation: isolate;
}
.video-frame picture, .video-frame img, .video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.video-poster {
  object-fit: cover;
  object-position: center 78%;
  transform: scale(1.03);
  filter: saturate(.85) brightness(.55);
  transition: transform 1.2s var(--ease-out), filter .6s;
}
.video-frame.is-playable { cursor: pointer; }
.video-frame.is-playable:hover .video-poster { transform: scale(1.06); filter: saturate(1) brightness(.7); }
.video-frame iframe { border: 0; z-index: 2; }

.video-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(7, 8, 12, 0.15), rgba(7, 8, 12, 0.55));
}
.play-ring {
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(7, 8, 12, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .4s var(--ease-out), background .3s, border-color .3s;
}
.play-ring svg { width: 30px; height: 30px; fill: var(--fg); margin-left: 3px; }
.video-frame.is-playable:hover .play-ring { transform: scale(1.08); background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.7); }
.video-status {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.video .actions { margin-top: 36px; }
.btn-youtube:not(.is-disabled):hover {
  box-shadow: 0 16px 40px -12px rgba(255, 60, 60, 0.45), 0 0 0 1px rgba(255, 80, 80, 0.25);
}

/* ---------- Platforms ---------- */
.platforms { background: var(--bg); }
.platforms .section-head { margin-bottom: 44px; }
.platform-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.platform-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon body" "cta cta";
  grid-template-rows: 1fr auto;
  gap: 20px 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  transition: border-color .3s, transform .5s var(--ease-out), box-shadow .5s;
}
.platform-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -40px rgba(124, 140, 255, 0.5);
}
.platform-icon {
  grid-area: icon;
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}
.platform-icon svg { width: 26px; height: 26px; fill: var(--fg); }
.platform-icon.spotify svg { fill: #1ed760; }
.platform-icon.youtube svg, .platform-icon.youtube-music svg { fill: #ff4b4b; }
.platform-body { grid-area: body; min-width: 0; }
.platform-body h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.platform-kind {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 8px;
  border: 1px solid rgba(124, 140, 255, 0.35);
  border-radius: 999px;
  vertical-align: middle;
}
.platform-channel { margin-top: 12px; font-weight: 600; color: var(--fg); }
.platform-url { margin-top: 10px; font-size: 14px; overflow-wrap: anywhere; }
.platform-url a { color: var(--fg-soft); border-bottom: 1px solid var(--line-strong); transition: color .2s, border-color .2s; }
.platform-url a:hover { color: var(--fg); border-color: var(--fg); }
.platform-id { margin-top: 8px; color: var(--muted-2); font-size: 12.5px; overflow-wrap: anywhere; }
.platform-card > .btn { grid-area: cta; justify-self: start; }
.platform-footnote {
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 70ch;
}

/* ---------- Contact ---------- */
.contact { background: linear-gradient(to bottom, var(--bg), var(--bg-2)); }
.contact-inner { text-align: center; }
.contact-email {
  display: inline-block;
  margin-top: 30px;
  font-family: var(--font-head);
  font-size: clamp(20px, 3.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  overflow-wrap: anywhere;
  position: relative;
  padding-bottom: 6px;
}
.contact-email::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(.35); transform-origin: center; opacity: .7;
  transition: transform .5s var(--ease-out), opacity .3s;
}
.contact-email:hover::after { transform: scaleX(1); opacity: 1; }
.contact-note { margin-top: 24px; font-size: 14px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  background: var(--bg-2);
}
.footer-inner { display: grid; gap: 34px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { border-radius: 50%; flex: none; }
.footer-name { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.22em; color: var(--fg); font-size: 14px; }
.footer-tag { margin-top: 4px; font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 13.5px; }
.footer-links a { color: var(--fg-soft); border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; overflow-wrap: anywhere; }
.footer-links a:hover { color: var(--fg); border-color: var(--line-strong); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted-2);
}
.footer-site a { color: var(--muted); }
.footer-site a:hover { color: var(--fg); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }
.hero .reveal:nth-child(1) { transition-delay: .05s; }
.hero .reveal:nth-child(2) { transition-delay: .15s; }
.hero .reveal:nth-child(3) { transition-delay: .3s; }
.hero .reveal:nth-child(4) { transition-delay: .42s; }
.hero .reveal:nth-child(5) { transition-delay: .55s; }
.hero .reveal:nth-child(6) { transition-delay: .65s; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 20px; }
  .release-grid { grid-template-columns: 1fr; gap: 44px; }
  .artwork { max-width: 520px; margin-inline: auto; width: 100%; }
  .platform-list { grid-template-columns: 1fr; }
}

@media (min-width: 961px) and (max-width: 1180px) {
  .platform-list { grid-template-columns: 1fr 1fr; }
  .platform-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --header-h: 64px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    padding: 36px var(--gutter);
    background: rgba(7, 8, 12, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, transform .35s var(--ease-out), visibility 0s .35s;
  }
  .site-nav.is-open { opacity: 1; transform: none; visibility: visible; transition-delay: 0s; }
  .site-nav ul { flex-direction: column; gap: 22px; }
  .site-nav ul a { font-family: var(--font-head); font-size: 24px; letter-spacing: 0; color: var(--fg); }
  .site-nav ul a::after { display: none; }
  .nav-cta { min-height: 50px; padding: 0 24px; font-size: 13px; }
  body.nav-open { overflow: hidden; }

  .hero { padding-bottom: 80px; }
  .hero-title { line-height: .95; }
  .hero-actions .btn { width: min(100%, 320px); }
  .platform-card { padding: 24px; grid-template-columns: 1fr; grid-template-areas: "icon" "body" "cta"; grid-template-rows: auto 1fr auto; gap: 16px; }
  .platform-card > .btn { width: 100%; }
  .meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-tagline { flex-direction: column; gap: 12px; }
  .hero-tagline .dot { display: none; }
  .release .actions .btn, .video .actions .btn { width: 100%; }
  .video-available { font-size: 10px; letter-spacing: 0.16em; padding: 7px 12px; }
}

@media (max-width: 420px) {
  .meta { grid-template-columns: 1fr; }
  .brand-name { font-size: 12px; letter-spacing: 0.18em; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .glow, .lights i, .grain { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .artwork img, .platform-card, .video-poster, .play-ring { transition: none; }
}
