@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
  /* Colors */
  --bg-pure: #030008;
  --bg-deep: #080314;
  --bg-card: rgba(18, 10, 32, 0.55);
  --bg-card-hover: rgba(26, 15, 46, 0.75);
  
  --accent-purple: #8f3bf0;
  --accent-purple-glow: rgba(143, 59, 240, 0.4);
  --accent-purple-light: #b37ffd;
  
  --accent-gold: #d4af37;
  --accent-gold-glow: rgba(212, 175, 55, 0.35);
  --accent-gold-light: #f3e5ab;
  --accent-gold-dark: #aa8417;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(143, 59, 240, 0.25);
  --border-gold-glow: rgba(212, 175, 55, 0.3);
  
  --text-primary: #ffffff;
  --text-secondary: #b6b0c2;
  --text-muted: #726c80;
  
  /* Fonts */
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;
  
  /* Layout & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-neon-purple: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 15px 0 var(--accent-purple-glow);
  --shadow-neon-gold: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 15px 0 var(--accent-gold-glow);
  --glass-blur: blur(20px);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-pure);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-pure);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(15, 5, 30, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(40, 10, 75, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(10, 2, 20, 0.9) 0%, transparent 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-pure);
}
::-webkit-scrollbar-thumb {
  background: rgba(143, 59, 240, 0.3);
  border: 2px solid var(--bg-pure);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

/* Selection */
::selection {
  background-color: var(--accent-purple);
  color: var(--text-primary);
}

/* ==========================================
   DYNAMIC BACKGROUND NEBULA
   ========================================== */
.background-nebula-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.nebula-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  mix-blend-mode: screen;
  animation: nebulaFloat 20s infinite alternate ease-in-out;
}

.nebula-light-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-duration: 25s;
}

.nebula-light-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4b0082 0%, transparent 70%);
  bottom: 10%;
  left: -10%;
  animation-duration: 30s;
}

.nebula-light-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
  top: 40%;
  left: 45%;
  opacity: 0.08;
  animation-duration: 22s;
}

@keyframes nebulaFloat {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(50px, -50px) scale(1.15) rotate(180deg);
  }
}

/* ==========================================
   TYPOGRAPHY UTILITIES
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

p {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  line-height: 1.6;
}

.text-gold {
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-purple {
  color: var(--accent-purple-light);
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }

/* ==========================================
   GLASSMORPHISM & LAYOUT COMPONENTS
   ========================================== */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.glass-panel:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-neon-purple);
}

.glass-panel-gold {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.glass-panel-gold:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-neon-gold);
}

/* ==========================================
   BUTTONS & ACTIONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--bg-pure);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn-primary:hover {
  box-shadow: 0 0 25px var(--accent-gold-glow);
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  transform: translate(150%) skewX(-20deg);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  box-shadow: 0 0 0 transparent;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 15px var(--accent-gold-glow);
  transform: translateY(-2px);
}

.btn-outline-purple {
  background: transparent;
  color: var(--accent-purple-light);
  border: 1px solid var(--accent-purple);
}

.btn-outline-purple:hover {
  background: rgba(143, 59, 240, 0.1);
  box-shadow: 0 0 15px var(--accent-purple-glow);
  transform: translateY(-2px);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-color var(--transition-normal);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(5, 2, 12, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-color: var(--border-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  text-decoration: none;
}

.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.2));
}

.logo span {
  font-weight: 400;
}

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

.nav-link {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Button */
.burger-menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  left: 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal), background-color var(--transition-normal);
}

.burger-menu span:nth-child(1) { top: 0; }
.burger-menu span:nth-child(2) { top: 9px; }
.burger-menu span:nth-child(3) { top: 18px; }

.burger-menu.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger-menu.open span:nth-child(2) {
  opacity: 0;
}
.burger-menu.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(10, 5, 20, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid var(--border-light);
  z-index: 99;
  padding: 8rem 2.5rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
}

.mobile-overlay.open {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--accent-gold);
}

/* ==========================================
   LAYOUT SECTIONS
   ========================================== */
section {
  position: relative;
  z-index: 10;
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
#home {
  padding-top: 10rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  min-height: 90vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--accent-gold);
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================
   INTERACTIVE DASHBOARD WIDGET
   ========================================== */
.hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-widget {
  width: 100%;
  max-width: 580px;
  overflow: hidden;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 50px 1fr 180px;
  gap: 1rem;
  position: relative;
}

/* Dashboard Sidebar */
.dash-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 0 10px rgba(143, 59, 240, 0.3);
}

.dash-nav-icon {
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.dash-nav-icon:hover, .dash-nav-icon.active {
  color: var(--accent-purple-light);
  background-color: rgba(143, 59, 240, 0.1);
}

/* Dashboard Main Panel */
.dash-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dash-search {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 140px;
}

/* Waveform Panel */
.dash-waveform-card {
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dash-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-waveform-container {
  height: 60px;
  width: 100%;
  position: relative;
}

.dash-waveform-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Stats Row */
.dash-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.dash-mini-card {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dash-stat-val {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.dash-stat-val span {
  font-size: 0.7rem;
  color: #00ff66;
}

.dash-stat-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Charts Card */
.dash-chart-card {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dash-chart-svg {
  width: 100%;
  height: 50px;
}

/* Dashboard Right Panel (Player) */
.dash-player {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dash-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.dash-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-gold) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dash-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-profile-info {
  display: flex;
  flex-direction: column;
}

.dash-profile-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.dash-profile-handle {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Track List */
.dash-tracklist {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 180px;
  overflow-y: auto;
}

.dash-tracklist::-webkit-scrollbar {
  width: 4px;
}

.dash-track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dash-track-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

.dash-track-item.active {
  background: rgba(143, 59, 240, 0.1);
  border-color: rgba(143, 59, 240, 0.2);
}

.dash-track-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
}

.dash-play-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-purple);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.6rem;
  cursor: pointer;
}

.dash-track-item.active .dash-play-btn {
  background: var(--accent-gold);
  color: var(--bg-pure);
}

.dash-track-info {
  display: flex;
  flex-direction: column;
}

.dash-track-title {
  font-weight: 500;
  color: var(--text-primary);
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-track-artist {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.dash-track-time {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Global Reach (World Map Simulation) */
.dash-global-reach {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: auto;
}

.dash-map-container {
  height: 50px;
  position: relative;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 6px 6px;
  border-radius: 4px;
}

.dash-map-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-purple-light);
  box-shadow: 0 0 8px var(--accent-purple);
  animation: mapPulse 2s infinite ease-in-out;
}

.dash-map-dot-1 { top: 30%; left: 25%; }
.dash-map-dot-2 { top: 40%; left: 70%; animation-delay: 0.5s; }
.dash-map-dot-3 { top: 60%; left: 50%; animation-delay: 1s; }

@keyframes mapPulse {
  0% { transform: scale(1); opacity: 0.6; box-shadow: 0 0 0 0 rgba(143, 59, 240, 0.7); }
  50% { transform: scale(1.5); opacity: 1; box-shadow: 0 0 8px 3px rgba(143, 59, 240, 0); }
  100% { transform: scale(1); opacity: 0.6; box-shadow: 0 0 0 0 rgba(143, 59, 240, 0); }
}

/* Decorative flares around widget */
.hero-glow-flare {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 59, 240, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.hero-glow-flare-1 {
  top: -10%;
  left: -10%;
}

.hero-glow-flare-2 {
  bottom: -15%;
  right: -10%;
}

/* ==========================================
   TRUST BAR & PLATFORM TICKER
   ========================================== */
.trust-container {
  margin-top: 5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trust-bar {
  text-align: center;
  padding: 1.5rem 2rem;
}

.trust-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.trust-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-feature-item {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-feature-item::before {
  content: '✦';
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* Platform Ticker Layout */
.platform-ticker-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: rgba(18, 10, 32, 0.25);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 2.2rem 0;
}

/* Fade masks on edges */
.platform-ticker-section::before,
.platform-ticker-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.platform-ticker-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-pure), transparent);
}
.platform-ticker-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-pure), transparent);
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
}

/* The track holds two identical sets of logos side-by-side.
   Animation moves 50% (= one full set) so it loops seamlessly. */
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
  gap: 4rem;
  align-items: center;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 36px;
  transition: all var(--transition-fast);
}

.ticker-item svg {
  height: 100%;
  width: auto;
  max-width: 120px;
  fill: var(--text-muted);
  opacity: 0.4;
  filter: grayscale(1);
  transition: all 0.35s ease;
}

.ticker-item:hover svg {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 0 8px var(--accent-purple-glow));
  transform: scale(1.08);
}

/* Brand colors on hover */
.ticker-item.spotify:hover svg   { fill: #1DB954; }
.ticker-item.apple:hover svg     { fill: #FC3C44; }
.ticker-item.youtube:hover svg   { fill: #FF0000; }
.ticker-item.amazon:hover svg    { fill: #00A8E1; }
.ticker-item.tidal:hover svg     { fill: #FFFFFF; }
.ticker-item.deezer:hover svg    { fill: #EF5466; }
.ticker-item.tiktok:hover svg    { fill: #00F2FE; filter: drop-shadow(-2px 0 0 #FE2C55) drop-shadow(2px 0 0 #00F2FE) grayscale(0); }
.ticker-item.instagram:hover svg { fill: #E1306C; }
.ticker-item.soundcloud:hover svg{ fill: #FF5500; }
.ticker-item.pandora:hover svg   { fill: #00A0EE; }

/* Move exactly half the total width (one full set of logos) */
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
  }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-headline {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.about-paragraph {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.about-mission-card {
  padding: 1.5rem;
  border-left: 3px solid var(--accent-gold);
}

.about-mission-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.values-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.values-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-purple);
}

.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.value-item {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.value-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(143, 59, 240, 0.1);
  border: 1px solid rgba(143, 59, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple-light);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.value-item:hover .value-icon-box {
  background: var(--accent-purple);
  color: white;
  box-shadow: 0 0 15px var(--accent-purple-glow);
  transform: scale(1.05);
}

.value-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.value-name {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
}

.service-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.3rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--bg-pure);
  box-shadow: 0 0 20px var(--accent-gold-glow);
  transform: rotateY(180deg);
}

.service-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 650;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================
   WHY ROYAL P'S — CALLOUT BANNER
   ========================================== */
.why-royalps-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, rgba(15, 5, 30, 0.95) 0%, rgba(30, 8, 60, 0.9) 50%, rgba(10, 3, 20, 0.95) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding: 6rem 2rem;
  overflow: hidden;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.why-royalps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(143, 59, 240, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-quote {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  position: relative;
  padding-left: 1.5rem;
}

.why-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.2em;
  font-size: 3.5rem;
  color: var(--accent-gold);
  font-family: var(--font-serif);
  line-height: 1;
  opacity: 0.6;
}

.why-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-stat-card {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

.why-stat-card:hover {
  transform: translateY(-5px);
}

.why-stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.why-stat-card:hover::after {
  opacity: 1;
}

.why-stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 60%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.why-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .why-right {
    grid-template-columns: 1fr 1fr;
  }
  .why-quote {
    font-size: 1.65rem;
  }
}

@media (max-width: 480px) {
  .why-right {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -2rem;
  margin-bottom: 3.5rem;
  gap: 1rem;
}

.pricing-toggle-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-toggle-label.active {
  color: var(--text-primary);
}

.pricing-switch {
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  position: relative;
  transition: background-color var(--transition-fast);
}

.pricing-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gold);
  transition: transform var(--transition-normal);
}

.pricing-switch.active::after {
  transform: translateX(24px);
}

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

.pricing-card {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  color: var(--bg-pure);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pricing-tier {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-sans);
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: baseline;
}

.pricing-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  min-height: 40px;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  margin-top: auto;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-feature svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: var(--accent-purple-light);
  margin-top: 0.2rem;
}

.pricing-card.premium .pricing-feature svg {
  fill: var(--accent-gold);
}

.pricing-btn {
  width: 100%;
}

.pricing-footer-terms {
  text-align: center;
  margin-top: 3.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-family: var(--font-serif);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pricing-term-dot {
  color: var(--accent-purple-light);
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-it-works-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.how-it-works-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, rgba(143, 59, 240, 0.1) 0%, rgba(143, 59, 240, 0.6) 50%, rgba(212, 175, 55, 0.4) 100%);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: 1.25rem;
}

.step-num-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
}

.timeline-step:hover .step-num-box {
  transform: scale(1.08);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-neon-purple);
  color: var(--accent-purple-light);
}

.timeline-step:nth-child(even):hover .step-num-box {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-neon-gold);
  color: var(--accent-gold);
}

.step-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 220px;
}

/* ==========================================
   APPLICATION FORM (APPLY)
   ========================================== */
.apply-container {
  max-width: 750px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-purple);
  box-shadow: 0 0 10px rgba(143, 59, 240, 0.2);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b6b0c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.5rem;
}

.form-input-spotify {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%231DB954'%3E%3Cpath d='M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm4.586 14.424c-.18.295-.565.387-.86.207-2.377-1.454-5.37-1.783-8.893-.982-.336.075-.668-.135-.744-.47-.077-.337.135-.668.47-.743 3.856-.88 7.15-.502 9.822 1.13.295.18.387.563.205.858zm1.225-2.72c-.226.367-.707.487-1.074.26-2.72-1.672-6.87-2.157-10.075-1.182-.413.125-.85-.107-.975-.52-.125-.413.107-.85.52-.975 3.66-1.11 8.223-.57 11.343 1.35.367.227.487.708.26 1.075zm.106-2.833C14.382 8.87 8.575 8.68 5.216 9.7c-.51.156-1.044-.135-1.2-.647-.156-.51.135-1.043.647-1.2 3.86-1.17 10.283-.95 14.335 1.46.46.273.61.87.337 1.33-.274.46-.87.61-1.33.336z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1rem center;
  padding-left: 2.5rem;
}

.apply-btn {
  align-self: center;
  padding: 1rem 3.5rem;
  margin-top: 1rem;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  border-top: 1px solid var(--border-light);
  background: #040108;
  padding: 4rem 2rem 2rem 2rem;
  z-index: 10;
  position: relative;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  font-size: 1.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-social-icon:hover {
  background: var(--accent-purple);
  color: white;
  border-color: var(--accent-purple);
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-item a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-link-item a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.footer-legal-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* ==========================================
   SUCCESS MODAL
   ========================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 0, 8, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.success-modal {
  max-width: 500px;
  width: 90%;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transform: scale(0.8) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.open .success-modal {
  transform: scale(1) translateY(0);
}

.success-crown-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 20px var(--accent-gold-glow);
  animation: modalIconCrown 1.5s infinite alternate ease-in-out;
}

@keyframes modalIconCrown {
  0% { transform: scale(1) rotate(0); box-shadow: 0 0 15px var(--accent-gold-glow); }
  100% { transform: scale(1.08) rotate(5deg); box-shadow: 0 0 25px rgba(212, 175, 55, 0.5); }
}

.success-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.success-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   SCROLL-REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-down {
  transform: translateY(-40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Cascade Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  #home {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
    padding-top: 8rem;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    gap: 2.5rem;
  }
  
  .how-it-works-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .how-it-works-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .nav-menu, .header-cta .btn {
    display: none;
  }
  
  .burger-menu {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .apply-container {
    padding: 2.5rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .how-it-works-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .dashboard-widget {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .dash-sidebar {
    flex-direction: row;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    padding-top: 0;
  }
  
  .dash-player {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 0;
    padding-top: 1rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
}
