/* ============================================
   MsDee360 Studio LLC — Global Styles
   Dark · Immersive · Jewel Tones
   ============================================ */

:root {
  --black:       #060608;
  --deep:        #0d0d14;
  --surface:     #13131e;
  --surface2:    #1a1a2a;
  --border:      rgba(255,255,255,0.07);

  --gold:        #d4a843;
  --gold-light:  #f0c86a;
  --magenta:     #c0367a;
  --magenta-glow:#e0428e;
  --purple:      #7b35c2;
  --purple-light:#9d5fe0;
  --teal:        #1ecfb3;

  --text:        #f0eef8;
  --text-muted:  #8a87a0;
  --text-dim:    #5a576e;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --max-w:       1200px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(6,6,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--text);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(123,53,194,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(192,54,122,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(212,168,67,0.12) 0%, transparent 50%),
    var(--black);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 {
  width: 500px; height: 500px;
  background: rgba(123,53,194,0.15);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb2 {
  width: 350px; height: 350px;
  background: rgba(192,54,122,0.12);
  bottom: 0; left: 10%;
  animation-delay: -3s;
}
.orb3 {
  width: 250px; height: 250px;
  background: rgba(212,168,67,0.1);
  top: 40%; right: 20%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 0.9em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  color: var(--black);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============================================
   MUSIC SECTION
   ============================================ */

.music-section {
  padding: 8rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.album-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(123,53,194,0.2);
}

.album-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.album-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-art-1 {
  background: linear-gradient(135deg, #c8b89a 0%, #e8d9b8 40%, #b8a882 100%);
}
.album-art-2 {
  background: linear-gradient(135deg, #3d1a6e 0%, #6b35b8 50%, #2a1050 100%);
}

.album-art-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  color: rgba(0,0,0,0.6);
  padding: 1rem;
}
.album-art-2 .album-art-text { color: rgba(255,255,255,0.8); }

.album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.album-cover:hover .album-overlay { opacity: 1; }

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.play-btn:hover { transform: scale(1.1); }

.album-info {
  padding: 1.5rem;
}

.album-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.album-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.track-list-preview {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--surface2);
  border-radius: var(--radius);
}

.track-list-preview span {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--border);
}
.track-list-preview span:last-child { border-bottom: none; }
.track-more { color: var(--gold) !important; font-style: italic; }

.album-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Platforms */
.platforms {
  text-align: center;
  margin-bottom: 3rem;
}
.platforms-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.platform-badge {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.platform-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   AD SLOT
   ============================================ */

.ad-slot {
  margin: 2rem auto;
  max-width: 728px;
  min-height: 90px;
  text-align: center;
}

/* ============================================
   TOOLS SECTION
   ============================================ */

.tools-section {
  padding: 8rem 2rem;
  background: var(--deep);
}

.tools-section .section-header { margin-bottom: 3rem; }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}

.tool-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  cursor: pointer;
}
.tool-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(123,53,194,0.2);
}

.tool-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tool-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.tool-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.tool-link {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.tool-card:hover .tool-link { color: var(--gold-light); }

/* ============================================
   360 SYSTEM SECTION
   ============================================ */

.system-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--black) 0%, #1a0a2e 50%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}
.system-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,53,194,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.system-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.system-text .section-title { text-align: left; margin-bottom: 1rem; }
.system-text .section-eyebrow { text-align: left; }

.system-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.system-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.system-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.system-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.system-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.system-badge {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(123,53,194,0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 60px rgba(123,53,194,0.4); }
  50% { box-shadow: 0 0 100px rgba(123,53,194,0.6); }
}

.badge-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--text);
  line-height: 1;
}
.badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.4;
}

/* ============================================
   MERCH SECTION
   ============================================ */

.merch-section {
  padding: 8rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.merch-coming {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}
.merch-icon { font-size: 3rem; margin-bottom: 1rem; }
.merch-coming h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.merch-coming p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-email {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,6,8,0.98);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: block; z-index: 101; }

  .hero-title { font-size: clamp(4rem, 15vw, 6rem); }

  .system-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .system-text .section-title,
  .system-text .section-eyebrow { text-align: center; }
  .system-desc { margin-left: auto; margin-right: auto; }
  .system-features { align-items: center; }
  .system-visual { margin-top: 2rem; }

  .albums-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}
