:root {
  --bg: #02060d;
  --panel: rgba(5, 10, 20, 0.9);
  --panel-soft: rgba(8, 14, 25, 0.78);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(240, 180, 72, 0.28);
  --text: #f6f8fb;
  --muted: rgba(214, 222, 236, 0.72);
  --gold: #f2b63f;
  --gold-strong: #e19517;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --site-bg-image: url("/images/background-nyc.png");
  --launcher-mockup-image: url("/images/screenshot.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 124px;
  font-family: Inter, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(2, 6, 13, 0.98), rgba(2, 6, 13, 1)),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 78%);
}

body,
button,
a {
  font: inherit;
}

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

h1,
h2,
p {
  margin: 0;
}

.site-shell {
  width: min(80%, 1680px);
  margin: 0 auto;
  padding: 18px 0 34px;
}

.hero-frame,
.value-strip,
.section-panel,
.download-stage,
.quick-link {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 920px;
  border-radius: 18px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 6, 12, 0.22), rgba(3, 6, 12, 0.56)),
    linear-gradient(90deg, rgba(3, 6, 12, 0.68) 0%, rgba(3, 6, 12, 0.12) 40%, rgba(3, 6, 12, 0.6) 100%),
    var(--site-bg-image) center center / cover no-repeat;
  filter: saturate(1.08) contrast(1.06);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 13, 0.76));
}

.topbar,
.hero-layout {
  position: relative;
  z-index: 1;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-lockup img {
  width: 90px;
  display: block;
  filter:
    drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 16px rgba(240, 180, 72, 0.18));
}

.topnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topnav__link {
  position: relative;
  padding: 14px 16px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 241, 250, 0.82);
}

.topnav__link--active,
.topnav__link:hover {
  color: #fff;
}

.topnav__link--active::after,
.topnav__link:hover::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(242, 182, 63, 0.1));
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 12px;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.cta-button {
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #170e04;
  border: 1px solid rgba(255, 222, 152, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 234, 183, 0.18), rgba(255, 234, 183, 0)),
    linear-gradient(180deg, #ffc850, #e39b18);
  box-shadow:
    0 16px 34px rgba(227, 155, 24, 0.28),
    0 0 20px rgba(255, 200, 80, 0.12);
}

.cta-button--nav {
  min-height: 50px;
  padding: 0 20px;
  color: #fff2ce;
  background:
    linear-gradient(180deg, rgba(255, 200, 80, 0.1), rgba(255, 200, 80, 0.04)),
    rgba(14, 16, 22, 0.72);
  border-color: rgba(255, 200, 80, 0.34);
  box-shadow: none;
}

.ghost-button {
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0f4fb;
  background: rgba(9, 14, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-button:hover,
.ghost-button:hover,
.section-link:hover,
.quick-link:hover {
  transform: translateY(-1px);
}

.cta-button.is-disabled,
.ghost-button.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
  padding: 88px 44px 72px;
}

.hero-copy {
  max-width: 760px;
  padding-top: 64px;
}

.hero-copy__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 246, 251, 0.82);
}

.hero-copy__meta span {
  position: relative;
}

.hero-copy__meta span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -11px;
  color: rgba(255, 255, 255, 0.34);
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: none;
}

.hero-logo {
  display: block;
  width: min(100%, 480px);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.42));
}

.hero-tagline {
  max-width: 360px;
  margin-top: 22px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 560px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 86px;
}

.hero-status-panel {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(5, 10, 19, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.hero-status-panel__item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 4px;
}

.hero-status-panel__item strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.hero-status-panel__item p {
  margin-top: 4px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(218, 226, 238, 0.62);
}

.hero-radio {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  margin-top: 8px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(8, 12, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-radio__art {
  min-height: 108px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 215, 135, 0.14), rgba(255, 215, 135, 0)),
    rgba(15, 22, 36, 0.9);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-radio__body {
  display: grid;
  align-content: start;
  gap: 8px;
}

.hero-radio__eyebrow {
  color: var(--gold);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-radio__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 32px;
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.hero-radio__artist {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.hero-radio__controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 222, 152, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 234, 183, 0.18), rgba(255, 234, 183, 0)),
    linear-gradient(180deg, #ffc850, #e39b18);
  color: #170e04;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.radio-button--ghost {
  background: rgba(9, 14, 24, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f0f4fb;
}

.hero-radio__audio {
  display: none;
}

.status-dot,
.status-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #21d16a;
  box-shadow: 0 0 18px rgba(33, 209, 106, 0.45);
}

.status-icon {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.status-icon--pin,
.status-icon--clock {
  background: rgba(242, 182, 63, 0.34);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(2, 6, 13, 0.38), rgba(2, 6, 13, 0.72)),
    url("/images/bar-bgn.jpg") center center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.value-strip__item {
  position: relative;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 9, 18, 0.92);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.value-strip__item:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 182, 63, 0.26);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.32);
}

.value-strip__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.intel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  margin-top: 18px;
}

.section-panel,
.download-stage,
.site-footer {
  border-radius: 16px;
}

.section-panel {
  padding: 20px;
}

.updates-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(4, 9, 18, 0.96);
  border-radius: 28px;
}

.updates-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 0 42px rgba(242, 182, 63, 0.08);
}

.updates-hero {
  position: relative;
  min-height: 132px;
  margin-top: 14px;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 6, 13, 0.82) 0%, rgba(2, 6, 13, 0.28) 54%, rgba(2, 6, 13, 0.82) 100%),
    url("/images/bar-bgn.jpg") center center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0;
}

.updates-hero__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 13, 0.18), rgba(2, 6, 13, 0.4));
}

.updates-hero__scribble {
  position: absolute;
  right: 20px;
  top: 12px;
  max-width: 260px;
  color: rgba(208, 216, 229, 0.54);
  font-family: "Caveat", cursive;
  font-size: 54px;
  line-height: 0.88;
  text-align: right;
  text-transform: uppercase;
  transform: rotate(-6deg);
}

.updates-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: -8px;
  padding: 18px;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(4, 9, 18, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 22px 56px rgba(0, 0, 0, 0.22);
}

.updates-feature__image {
  min-height: 258px;
  border-radius: 18px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 8px 0 0 rgba(255, 201, 89, 0.92),
    0 20px 44px rgba(0, 0, 0, 0.26);
}

.updates-feature__body {
  display: grid;
  align-content: start;
  gap: 10px;
}

.updates-feature__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.updates-feature__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(40px, 3.3vw, 58px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.updates-feature__subtitle {
  color: #d4dde9;
  font-size: 15px;
  line-height: 1.4;
}

.updates-feature__text {
  max-width: 34ch;
  color: rgba(220, 227, 237, 0.8);
  font-size: 15px;
  line-height: 1.5;
}

.updates-feature__topics {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.updates-feature__topics span {
  position: relative;
  padding-left: 26px;
  color: rgba(226, 232, 241, 0.82);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.updates-feature__topics span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #ffd15f, #ed9f18);
  box-shadow: 0 0 14px rgba(237, 159, 24, 0.22);
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-header h2 {
  margin-top: 8px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 54px;
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-subtitle {
  margin-top: 8px;
  color: rgba(224, 230, 239, 0.7);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-link {
  padding-top: 14px;
  font-family: Rajdhani, Inter, sans-serif;
  color: #e9c46d;
  font-size: 15px;
  font-weight: 700;
}

.section-link--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 201, 89, 0.1), rgba(255, 201, 89, 0.04)),
    rgba(10, 15, 26, 0.88);
  border: 1px solid rgba(255, 201, 89, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.updates-list,
.community-feed,
.media-grid,
.quick-links {
  display: grid;
  gap: 14px;
}

.updates-list,
.community-feed {
  margin-top: 14px;
}

.update-row,
.feed-row,
.media-card,
.quick-link {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 10, 19, 0.72);
}

.update-row {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(6, 11, 21, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.update-row:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 180, 72, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 44px rgba(0, 0, 0, 0.26);
}

.update-row::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 182, 63, 0.36), rgba(242, 182, 63, 0));
}

.update-row--featured {
  grid-template-columns: minmax(280px, 1.15fr) minmax(0, 0.9fr);
  min-height: 318px;
  background:
    linear-gradient(135deg, rgba(242, 182, 63, 0.12), rgba(242, 182, 63, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(5, 10, 19, 0.92);
}

.update-row--featured::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd86f, rgba(255, 216, 111, 0.08));
  box-shadow: 0 0 24px rgba(255, 216, 111, 0.24);
}

.update-row--support {
  grid-template-columns: 160px minmax(0, 1fr);
  padding-left: 22px;
}

.update-row--support::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 216, 111, 0.85), rgba(255, 216, 111, 0.12));
}

.update-row__image {
  min-height: 140px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 -34px 60px rgba(3, 6, 12, 0.2);
}

.update-row--featured .update-row__image {
  min-height: 280px;
  border-radius: 14px;
  box-shadow:
    inset 0 -120px 110px rgba(3, 6, 12, 0.42),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

.update-row--support .update-row__image {
  min-height: 132px;
}

.update-row__body {
  display: grid;
  gap: 10px;
  align-content: center;
}

.update-row--featured .update-row__body {
  align-content: end;
  padding: 8px 4px 4px 2px;
}

.update-row__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.update-row__tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: #130d03;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffcf61, #f0a91d);
}

.update-row__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 46px;
  line-height: 0.94;
  letter-spacing: 0.01em;
}

.update-row--featured .update-row__title {
  font-size: clamp(52px, 4vw, 74px);
}

.update-row--support .update-row__title {
  font-size: clamp(34px, 2.7vw, 44px);
}

.update-row--featured .update-row__text {
  max-width: 38ch;
  font-size: 16px;
}

.update-row--support .update-row__text {
  max-width: 50ch;
  font-size: 15px;
}

.update-row__text,
.feed-row__text,
.media-card p,
.quick-link span,
.download-stage__description,
.download-meta span {
  color: var(--muted);
  line-height: 1.6;
}

.update-row__date,
.feed-row__time {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(229, 235, 244, 0.58);
}

.feed-panel {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(4, 9, 18, 0.96);
}

.feed-panel .section-header h2 {
  font-size: 50px;
}

.feed-row {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.feed-row:hover,
.feed-row--active {
  transform: translateY(-1px);
  border-color: rgba(255, 201, 89, 0.26);
  background: rgba(8, 14, 25, 0.92);
}

.feed-row--active {
  box-shadow: inset 4px 0 0 rgba(255, 201, 89, 0.96);
}

.feed-row__avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 215, 135, 0.18), rgba(255, 215, 135, 0)),
    rgba(18, 24, 38, 0.9);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  color: #ffd581;
}

.feed-row__avatar--image {
  color: transparent;
}

.feed-row__header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.feed-row__badge {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(98, 129, 255, 0.18);
  color: #b9c9ff;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-row__name {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.feed-row__text {
  margin-top: 4px;
  font-size: 14px;
}

.feed-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 201, 89, 0.08), rgba(255, 201, 89, 0.02)),
    rgba(10, 15, 26, 0.9);
  border: 1px solid rgba(255, 201, 89, 0.24);
  color: #f4f6fb;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.download-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(242, 182, 63, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(4, 8, 16, 0.94);
}

.download-stage__copy h2 {
  margin-top: 12px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 82px;
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.download-stage__description {
  max-width: 440px;
  margin-top: 16px;
}

.download-stage__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.download-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 16, 29, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 242, 249, 0.84);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #f1f4f9;
  font-size: 18px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd15f, #ed9f18);
}

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

.download-stage__status {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.download-meta {
  min-width: 220px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(7, 12, 22, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.download-meta strong {
  display: block;
  margin-top: 5px;
  font-size: 24px;
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.launcher-preview__shell {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 13, 23, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
}

.launcher-preview__visual {
  position: absolute;
  inset: 0;
  background: var(--launcher-mockup-image) center center / contain no-repeat;
  background-color: rgba(8, 13, 23, 0.96);
}

.launcher-preview__visual::after {
  display: none;
}

.launcher-preview__glass {
  display: none;
}

.media-stage {
  margin-top: 18px;
}

.media-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.media-card {
  display: grid;
  gap: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.media-card__image {
  min-height: 218px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.media-card__body {
  padding: 16px;
}

.media-card__label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-card__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 34px;
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.quick-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.quick-link {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 14px;
}

.quick-link strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 38px;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  padding: 8px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(226, 232, 241, 0.72);
}

.site-footer__brand img {
  width: 52px;
}

.site-footer__credit {
  color: #f2b63f;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-footer__credit:hover {
  color: #ffd37a;
}

.floating-player {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  width: min(1180px, calc(100vw - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(6, 11, 21, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.floating-player__art {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 215, 135, 0.14), rgba(255, 215, 135, 0)),
    rgba(15, 22, 36, 0.9);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.floating-player__body {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.floating-player__eyebrow {
  color: var(--gold);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-player__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 34px;
  line-height: 0.94;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-player__artist {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-player__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.floating-player__audio {
  display: none;
}

@media (max-width: 1280px) {
  .hero-layout,
  .intel-grid,
  .download-stage,
  .media-grid,
  .quick-links {
    grid-template-columns: 1fr;
  }

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

  .hero-radio {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .updates-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .site-shell {
    width: min(100%, calc(100% - 24px));
    padding: 12px 0 28px;
  }

  .topbar,
  .launcher-preview__overlay {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .topnav {
    justify-content: flex-start;
  }

  .hero-layout,
  .download-stage,
  .community-feed,
  .media-grid,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .launcher-preview__shell {
    aspect-ratio: auto;
    min-height: 0;
  }

  .section-header h2,
  .download-stage__copy h2 {
    font-size: 46px;
  }

  .section-subtitle {
    letter-spacing: 0.12em;
    font-size: 15px;
  }

  .hero-logo {
    width: min(100%, 360px);
  }

  .value-strip {
    grid-template-columns: 1fr;
  }

  .hero-radio {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .launcher-preview__glass {
    display: none;
  }

  .updates-panel,
  .feed-panel {
    padding: 20px;
  }

  .updates-hero {
    min-height: 138px;
  }

  .updates-hero__scribble {
    right: 16px;
    top: 14px;
    font-size: 42px;
    max-width: 180px;
  }

  .updates-feature {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .updates-feature__image {
    min-height: 220px;
  }

  .updates-feature__title {
    font-size: clamp(42px, 10vw, 58px);
  }

  .feed-row {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 14px;
  }

  .feed-row__avatar {
    width: 54px;
    height: 54px;
  }

  .feed-cta {
    min-height: 56px;
    font-size: 16px;
  }

  .floating-player {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
  }

  .floating-player__art {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }

  .floating-player__controls {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .floating-player__title {
    font-size: 28px;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero-actions {
    margin-top: 42px;
  }
}
