/* ==========================================
   Indie Tamil Music Production - Stylesheet
   ========================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- Design Tokens / Variables --- */
:root {
  --bg-dark: #08090c;
  --bg-dark-secondary: #0d0f14;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.15);
  --color-text-primary: #ffffff;
  --color-text-secondary: #a0aec0;
  --color-text-muted: #718096;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default Theme (Royal Blue & Cyber Cyan) */
body, body.theme-blue {
  --color-cyan: #00f0ff;
  --color-blue: #0066ff;
  --color-orange: #0066ff;
  --color-amber: #00f0ff;
  --grad-primary: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
  --grad-hero: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

/* Orange Theme (Cyber Orange & Glow Amber) */
body.theme-orange {
  --color-cyan: #ffb700;
  --color-blue: #ff6a00;
  --color-orange: #ff6a00;
  --color-amber: #ffb700;
  --grad-primary: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
  --grad-hero: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Gradients (Disabled for clean 2D styling) */
body::before {
  display: none;
}

body::after {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-cyan);
}

/* --- Reusable Components & Typography --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: var(--grad-hero);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--grad-primary);
  color: #000000;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 4px 25px rgba(255, 42, 95, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--color-text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--color-cyan);
  transform: translateY(-2px);
}

.glass-card {
  background: var(--grad-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-5px);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Header / Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.logo img {
  height: 70px;
  width: auto;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text-primary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
  padding: 12rem 0 8rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.05) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--color-cyan);
  margin-bottom: 0.2rem;
}

.stat-item p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Media & Visualizer Mockup */
.hero-media {
  position: relative;
}

.visualizer-card {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visualizer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.85));
  z-index: 1;
}

.visualizer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: var(--transition-slow);
}

.visualizer-header {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.visualizer-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visualizer-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.now-playing {
  margin-bottom: 1.5rem;
}

.now-playing h4 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.now-playing p {
  color: var(--color-cyan);
  font-size: 0.95rem;
}

.visualizer-waves {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}

.wave-bar {
  flex: 1;
  background: var(--color-cyan);
  border-radius: 3px;
  height: 10%;
  animation: bounce 1.2s ease-in-out infinite alternate;
}

/* Varied wave speeds and heights */
.wave-bar:nth-child(2) { animation-delay: 0.2s; height: 15%; background: var(--color-blue); }
.wave-bar:nth-child(3) { animation-delay: 0.4s; height: 25%; background: var(--color-orange); }
.wave-bar:nth-child(4) { animation-delay: 0.1s; height: 40%; background: var(--color-amber); }
.wave-bar:nth-child(5) { animation-delay: 0.3s; height: 10%; background: var(--color-cyan); }
.wave-bar:nth-child(6) { animation-delay: 0.6s; height: 35%; background: var(--color-orange); }
.wave-bar:nth-child(7) { animation-delay: 0.5s; height: 50%; background: var(--color-blue); }
.wave-bar:nth-child(8) { animation-delay: 0.2s; height: 20%; background: var(--color-amber); }

/* --- Trusted By Brands --- */
.trusted {
  padding: 6rem 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(13, 15, 20, 0.4);
}

.trusted-title {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
  align-items: center;
  justify-items: center;
}

.brand-logo {
  height: 45px;
  max-width: 180px;
  opacity: 0.4;
  filter: grayscale(1);
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  opacity: 0.9;
  filter: grayscale(0);
}

/* --- Features Section --- */
.features {
  padding: 10rem 0;
  position: relative;
}

.features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70%;
  height: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  border: 1px solid var(--border-glass);
  color: var(--color-cyan);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--grad-primary);
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* --- Featured Artists --- */
.artists {
  padding: 6rem 0 10rem 0;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.artist-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 0.8;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid var(--border-glass);
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 12, 0.95) 0%, rgba(8, 9, 12, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.artist-card:hover .artist-img {
  transform: scale(1.08);
}

.artist-card:hover .artist-overlay {
  background: linear-gradient(to top, rgba(8, 9, 12, 1) 0%, rgba(0, 102, 255, 0.3) 50%, rgba(8, 9, 12, 0.1) 100%);
}

.artist-genre {
  color: var(--color-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
}

.artist-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.artist-tracks {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Play Indicator inside card */
.artist-play-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-smooth);
  z-index: 3;
}

.artist-card:hover .artist-play-btn {
  opacity: 1;
  transform: scale(1);
  background: var(--color-cyan);
  color: #000000;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  border-color: transparent;
}

/* --- Contact Us Section --- */
.contact {
  padding: 8rem 0;
  background: var(--bg-dark-secondary);
  border-top: 1px solid var(--border-glass);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 30%, rgba(255, 42, 95, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h2 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

.contact-info p.lead {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-magenta);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.contact-method-text p {
  color: var(--color-text-secondary);
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--color-cyan);
  color: #000000;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* Contact Form */
.contact-form-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.01);
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--color-cyan);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.form-label {
  position: absolute;
  left: 1.2rem;
  top: 1rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.75rem;
  background: var(--bg-dark-secondary);
  padding: 0 0.4rem;
  color: var(--color-cyan);
  font-weight: 600;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  display: none;
}
.form-status.success {
  color: #2ed573;
  display: block;
}
.form-status.error {
  color: var(--color-magenta);
  display: block;
}

/* --- Onboarding Process Section --- */
.process {
  padding: 8rem 0;
  background: var(--bg-dark-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 2.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-cyan), var(--color-blue), var(--color-magenta));
  z-index: 1;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.process-step:nth-child(2) .step-number {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.process-step:nth-child(3) .step-number {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.process-step:nth-child(4) .step-number {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.process-step:nth-child(5) .step-number {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.step-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.process-step:hover .step-number {
  transform: scale(1.1);
}

.process-step:hover .step-content {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateX(10px);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .process-timeline::before {
    left: 2rem;
  }
  .process-step {
    gap: 1.5rem;
  }
  .step-number {
    width: 4rem;
    height: 4rem;
    font-size: 1.25rem;
  }
}

/* --- Footer --- */
.footer {
  padding: 5rem 0 3rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-cyan);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-cyan);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-legal-links a:hover {
  color: var(--color-text-primary);
}

/* --- Login Page specific styles --- */
.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.login-back-btn {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.login-back-btn:hover {
  color: var(--color-cyan);
  transform: translateX(-3px);
}

.login-container {
  width: 100%;
  max-width: 480px;
  z-index: 10;
}

.login-card {
  padding: 3.5rem 3rem;
  background: rgba(255, 255, 255, 0.015);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-header .logo {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.login-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.login-form .form-group {
  margin-bottom: 1.5rem;
}

.login-form .form-input:focus ~ .form-label,
.login-form .form-input:not(:placeholder-shown) ~ .form-label {
  background: #090a0f; /* Match average dark bg behind card */
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-container input {
  cursor: pointer;
}

.forgot-password-link:hover {
  color: var(--color-cyan);
}

.login-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-glass);
}

.divider:not(:empty)::before {
  margin-right: .75em;
}

.divider:not(:empty)::after {
  margin-left: .75em;
}

.oauth-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.oauth-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-cyan);
}

.oauth-btn svg {
  width: 18px;
  height: 18px;
}

.signup-link {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.signup-link a {
  color: var(--color-cyan);
  font-weight: 600;
}

.signup-link a:hover {
  text-decoration: underline;
}

/* --- Legal Page specific styles --- */
.legal-header-sec {
  padding: 10rem 0 4rem 0;
  background: var(--bg-dark-secondary);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
}

.legal-header-sec h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.legal-header-sec p {
  color: var(--color-text-secondary);
}

.legal-content-sec {
  padding: 6rem 0;
}

.legal-content-card {
  padding: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.legal-text h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.2rem 0;
  color: var(--color-cyan);
}

.legal-text h2:first-of-type {
  margin-top: 0;
}

.legal-text p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.legal-text ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-text ul li {
  font-size: 1.05rem;
}

/* --- Animations --- */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounce {
  from { height: 10%; }
  to { height: 90%; }
}

/* Entrance transitions */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .logo {
    font-size: 1.1rem;
    gap: 0.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 2.5rem auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-info {
    text-align: center;
  }
  .contact-methods {
    align-items: center;
  }
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .logo {
    font-size: 0.95rem;
    gap: 0.4rem;
  }
  
  .logo img {
    height: 50px;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(8, 9, 12, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    padding: 3rem;
    transition: var(--transition-slow);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-actions {
    margin-right: 3rem;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .process-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .process-timeline::before {
    display: none;
  }
  .step-number {
    width: 4rem;
    height: 4rem;
    font-size: 1.25rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .artists-grid {
    grid-template-columns: 1fr;
  }
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .legal-content-card {
    padding: 2.5rem 1.5rem;
  }
  .login-card {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .oauth-buttons {
    grid-template-columns: 1fr;
  }
}
