:root {
  --red-900: #2d0208;
  --red-800: #4d0610;
  --red-700: #740d19;
  --red-600: #9f1726;
  --black: #070609;
  --black-soft: #121014;
  --page-bg: #16070c;
  --blue-100: #d9efff;
  --blue-200: #a9d9f7;
  --white: #fff8f8;
  --muted: rgba(255, 248, 248, 0.68);
  --line: rgba(217, 239, 255, 0.18);
  --shadow: 0 22px 70px rgba(7, 6, 9, 0.42);
  --glass-bg: rgba(255, 248, 248, 0.08);
  --glass-border: rgba(255, 248, 248, 0.22);
  --glass-shadow: 0 28px 80px rgba(7, 6, 9, 0.34), inset 0 1px 0 rgba(255, 248, 248, 0.18);
  --glass-shine: linear-gradient(145deg, rgba(255, 248, 248, 0.16), rgba(255, 248, 248, 0.035) 42%, rgba(7, 6, 9, 0.1));
}

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

html {
  min-height: 100%;
  background: var(--page-bg);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: "Rajdhani", Arial, sans-serif;
  background: var(--page-bg);
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: var(--page-bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: transparent;
}

.artist-site {
  min-height: 100vh;
  height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 20px);
}

.artist-screen {
  width: min(1180px, 100%);
  min-height: calc(100vh - clamp(32px, 5.8vw, 64px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(12px, 2.2vw, 22px);
  padding: clamp(14px, 3vw, 32px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(1.24);
  -webkit-backdrop-filter: blur(22px) saturate(1.24);
  overflow: hidden;
  position: relative;
}

.artist-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--glass-shine);
}

.site-topline,
.hero-layout,
.content-strip {
  position: relative;
  z-index: 1;
}

.site-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(217, 239, 255, 0.24);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
}

.quick-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  min-width: 0;
}

.quick-nav a,
.platform-row a,
.strip-feature a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(217, 239, 255, 0.18);
  background: rgba(7, 6, 9, 0.35);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.quick-nav a:hover,
.platform-row a:hover,
.strip-feature a:hover,
.action-button:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 239, 255, 0.72);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  min-height: 0;
}

.portrait-panel {
  position: relative;
  min-height: clamp(270px, 50svh, 560px);
  display: grid;
  align-content: center;
}

.portrait-aura {
  position: absolute;
  inset: 10% 0 4%;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 239, 255, 0.28), transparent 24%),
    linear-gradient(160deg, rgba(217, 239, 255, 0.2), rgba(116, 13, 25, 0.22) 42%, rgba(7, 6, 9, 0.72));
  transform: skewY(-4deg);
}

.portrait-card {
  width: min(300px, 72vw);
  aspect-ratio: 4 / 5;
  justify-self: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 239, 255, 0.28);
  background: var(--black);
  box-shadow: 0 30px 70px rgba(7, 6, 9, 0.5);
  transform: translate(var(--tilt-x, 0), var(--tilt-y, 0));
  transition: transform 0.25s ease;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(217, 239, 255, 0.08), transparent 34%),
    linear-gradient(90deg, transparent, rgba(217, 239, 255, 0.11), transparent),
    linear-gradient(180deg, transparent 42%, rgba(7, 6, 9, 0.74));
  z-index: 2;
}

.portrait-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(1.08) contrast(1.06);
}

.portrait-caption {
  width: min(300px, 72vw);
  justify-self: center;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.portrait-caption strong {
  color: var(--blue-100);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: clamp(12px, 2.2vw, 22px);
}

.eyebrow {
  margin: 0;
  color: var(--blue-100);
  font-family: "Space Mono", monospace;
  font-size: clamp(10px, 2.2vw, 12px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(86px, 18vw, 188px);
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.balanced-title-i,
.home-title-i {
  display: inline-block;
  font-size: 0.88em;
  line-height: 0.78;
  transform: translateY(-0.015em);
  transform-origin: center bottom;
  vertical-align: bottom;
}

.lead {
  width: min(560px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 22px);
  line-height: 1.35;
  font-weight: 500;
}

.primary-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(570px, 100%);
}

.action-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(217, 239, 255, 0.18);
  background: rgba(7, 6, 9, 0.46);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.action-primary {
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  border-color: rgba(217, 239, 255, 0.36);
}

.action-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--black);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(570px, 100%);
}

.signal-tile {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: clamp(10px, 2vw, 16px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 248, 248, 0.14);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.tile-value {
  color: var(--blue-100);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 0.9;
}

.tile-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 10px;
}

.site-credit {
  position: absolute;
  right: clamp(12px, 2vw, 22px);
  bottom: 6px;
  z-index: 2;
  color: rgba(217, 239, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.strip-block {
  min-width: 0;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: clamp(12px, 2vw, 18px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 248, 248, 0.14);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.strip-kicker {
  color: var(--blue-100);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strip-block strong {
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.05;
}

.strip-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.strip-feature {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.strip-feature .strip-kicker,
.strip-feature strong,
.strip-feature .strip-note {
  grid-column: 1;
}

.strip-feature a {
  grid-row: 1 / span 3;
  grid-column: 2;
  background: rgba(159, 23, 38, 0.72);
}

.spotify-player {
  display: none;
  grid-column: 1 / -1;
  width: 100%;
  border: 0;
  border-radius: 0;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.strip-bio p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

footer {
  display: none;
}

.subpage-shell {
  min-height: 100vh;
  padding: clamp(14px, 3vw, 36px);
  color: var(--white);
}

.subpage-hero {
  width: min(1180px, 100%);
  margin: 0 auto clamp(14px, 3vw, 28px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(14px, 3vw, 28px);
  align-items: end;
  padding: clamp(18px, 3vw, 34px);
}

.subpage-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.subpage-nav a,
.subpage-cta,
.page-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(217, 239, 255, 0.18);
  background: rgba(7, 6, 9, 0.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.subpage-nav a:hover,
.subpage-cta:hover,
.page-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 239, 255, 0.72);
}

.subpage-cta,
.page-actions a:first-child {
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
}

.subpage-copy {
  min-width: 0;
}

.subpage-copy h1,
.embed-copy h2,
.link-panel h2,
.profile-text h2 {
  margin: 0;
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
}

.subpage-copy h1 {
  font-size: clamp(60px, 12vw, 136px);
  line-height: 0.86;
}

.media-grid,
.profile-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 14px;
}

.spotify-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.embed-card,
.link-panel,
.profile-photo-card {
  min-width: 0;
}

.embed-card-large {
  grid-row: span 2;
}

.embed-frame {
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.embed-frame iframe,
.spotify-embed iframe {
  width: 100%;
  border: 0;
  display: block;
}

.embed-frame iframe {
  height: 100%;
}

.embed-copy,
.link-panel {
  padding: clamp(14px, 2.4vw, 24px);
}

.embed-copy {
  display: grid;
  gap: 8px;
}

.embed-copy h2,
.link-panel h2,
.profile-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
}

.embed-copy p,
.link-panel p,
.profile-text p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.profile-layout {
  grid-template-columns: minmax(240px, 0.54fr) minmax(0, 1fr);
  align-items: stretch;
}

.profile-photo-card {
  overflow: hidden;
  min-height: 440px;
}

.profile-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 18%;
}

.profile-text {
  display: grid;
  align-content: center;
  gap: 12px;
}

.blog-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-card {
  min-width: 0;
  color: var(--white);
  text-decoration: none;
  display: grid;
}

.blog-card img,
.blog-article-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.blog-card img {
  aspect-ratio: 16 / 10;
}

.blog-card-body,
.blog-article {
  padding: clamp(14px, 2.4vw, 24px);
}

.blog-card h2,
.blog-article h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: 0.95;
}

.blog-card h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.blog-card p,
.blog-article p {
  color: var(--muted);
  line-height: 1.5;
}

.blog-detail-wrap {
  width: min(940px, 100%);
  margin: 0 auto;
}

.subpage-hero,
.embed-card,
.link-panel,
.profile-photo-card,
.blog-card,
.blog-detail-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(1.24);
  -webkit-backdrop-filter: blur(22px) saturate(1.24);
  overflow: hidden;
  position: relative;
}

.subpage-hero::before,
.embed-card::before,
.link-panel::before,
.profile-photo-card::before,
.blog-card::before,
.blog-detail-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--glass-shine);
}

.subpage-hero>*,
.embed-card>*,
.link-panel>*,
.profile-photo-card>*,
.blog-card>*,
.blog-detail-wrap>* {
  position: relative;
  z-index: 1;
}

.blog-article-image img {
  max-height: 460px;
}

.blog-article h1 {
  font-size: clamp(54px, 10vw, 112px);
}

.blog-content {
  white-space: pre-line;
}

@media (min-width: 841px) {

  .view-index,
  .view-index .artist-site {
    height: calc(100vh - 25px);
    min-height: calc(100vh - 25px);
  }
}

@media (max-width: 840px) {
  .artist-site {
    align-items: start;
    padding: 10px;
  }

  .artist-screen {
    min-height: calc(100svh - 24px);
    padding: 12px;
    gap: 10px;
  }

  .site-topline {
    align-items: flex-start;
  }

  .quick-nav {
    max-width: 100%;
    margin-left: auto;
    justify-content: flex-end;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .quick-nav::-webkit-scrollbar {
    display: none;
  }

  .quick-nav a {
    min-height: 36px;
    white-space: nowrap;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 10px;
    align-content: center;
  }

  .portrait-panel {
    min-height: 0;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .portrait-aura {
    inset: -8px 42% -8px -8px;
  }

  .portrait-card {
    width: 92px;
    aspect-ratio: 1;
    justify-self: start;
  }

  .portrait-photo {
    object-position: 50% 18%;
  }

  .portrait-caption {
    width: auto;
    justify-self: stretch;
    padding: 0;
    display: grid;
    gap: 4px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(74px, 26vw, 116px);
  }

  .lead {
    font-size: 16px;
    line-height: 1.28;
  }

  .primary-actions,
  .artist-grid {
    width: 100%;
  }

  .primary-actions {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .action-button {
    min-height: 44px;
  }

  .artist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .signal-tile {
    padding: 10px 8px;
  }

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

  .strip-block {
    padding: 10px;
  }

  .strip-feature {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .platform-row a,
  .strip-feature a {
    min-height: 34px;
  }

  .subpage-shell {
    padding: 10px;
  }

  .subpage-hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 14px;
  }

  .subpage-copy h1 {
    font-size: clamp(52px, 18vw, 92px);
  }

  .subpage-cta {
    width: 100%;
  }

  .media-grid,
  .spotify-grid,
  .profile-layout,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .embed-card-large {
    grid-row: auto;
  }

  .profile-photo-card {
    min-height: 340px;
  }
}

@media (max-width: 390px),
(max-width: 840px) and (max-height: 780px) {
  .artist-screen {
    gap: 8px;
    padding: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .quick-nav a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .portrait-card {
    width: 70px;
  }

  .portrait-panel {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 9px;
  }

  .eyebrow {
    font-size: 10px;
  }

  h1 {
    font-size: clamp(62px, 24vw, 92px);
  }

  .lead {
    font-size: 13px;
  }

  .action-button {
    min-height: 38px;
    font-size: 13px;
  }

  .tile-value {
    font-size: 28px;
  }

  .tile-label,
  .strip-bio p,
  .strip-note {
    font-size: 11px;
  }

  .strip-block {
    gap: 4px;
    padding: 8px;
  }

  .strip-note {
    display: none;
  }

  .platform-row {
    gap: 6px;
  }

  .platform-row a,
  .strip-feature a {
    min-height: 30px;
    padding: 0 9px;
    font-size: 11px;
  }
}

@media (min-width: 1040px) and (min-height: 850px) {
  .content-strip {
    grid-template-columns: 1.18fr 0.86fr 0.96fr;
  }

  .spotify-player {
    display: block;
  }
}

@media (min-width: 841px) and (max-height: 760px) {
  .portrait-panel {
    min-height: 420px;
  }

  .portrait-card {
    width: min(280px, 38vw);
  }

  .portrait-caption {
    width: min(280px, 38vw);
  }

  h1 {
    font-size: clamp(86px, 15vw, 142px);
  }

  .lead {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
