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

/* ═════════════════════════════════════════════════════════════════════════
   BEKOFY - UNIFIED OBSIDIAN & EMERALD DESIGN SYSTEM
   ═════════════════════════════════════════════════════════════════════════ */

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

:root {
  /* Clean Obsidian & Spotify Green Palette */
  --bg-black: #050507;
  --bg-surface: #0c0d12;
  --bg-card: #12141d;
  --bg-card-hover: #1a1d2b;
  
  --emerald: #1ED760;
  --emerald-dark: #128a3c;
  
  --text-white: #ffffff;
  --text-gray: #9299a9;
  --text-muted: #575c6a;
  
  --border-color: #1e2230;
  --border-active: #1ED760;
  
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-code: 'Space Grotesk', monospace;
  
  --radius-card: 20px;
  --radius-pill: 999px;
}

html {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-sans);
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100%;
}

body {
  min-height: 100vh;
  height: auto !important;
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  position: relative;
}

/* GSAP Top Scroll Bar */
#gsap-scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--emerald);
  z-index: 10000;
}

/* ═════════════════════════════════════════════════════════════════════════
   UNIFIED HEADER NAVBAR
   ═════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 7, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  width: min(1200px, 92%);
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-white);
}

.logo-badge {
  width: 36px;
  height: 36px;
  background: var(--emerald);
  color: #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-minimal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--emerald);
  color: #000000;
  font-weight: 700;
}

.btn-primary:hover {
  background: #25f470;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-color: var(--border-color);
}

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

/* ═════════════════════════════════════════════════════════════════════════
   LANDING PAGE FLOWING SECTIONS & SCROLLABLE LAYOUT
   ═════════════════════════════════════════════════════════════════════════ */
.landing-main-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 80px;
  z-index: 5;
}

.hero-stage-layout {
  position: relative;
  width: min(1200px, 92%);
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 5;
}

.hero-text-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(30, 215, 96, 0.08);
  border: 1px solid rgba(30, 215, 96, 0.25);
  color: var(--emerald);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.1);
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
}

.text-emerald {
  color: var(--emerald);
}

.text-emerald-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #1ED760 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-glow {
  position: relative;
  box-shadow: 0 0 25px rgba(30, 215, 96, 0.35);
}

.btn-glow:hover {
  box-shadow: 0 0 40px rgba(30, 215, 96, 0.6);
}

.minimal-player-card {
  background: rgba(18, 20, 29, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(30, 215, 96, 0.08);
  transition: border-color 0.3s ease;
}

.minimal-player-card:hover {
  border-color: rgba(30, 215, 96, 0.3);
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.player-status {
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

.player-bitrate {
  font-family: var(--font-code);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.player-track {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.track-cover {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #181b28, #0e1019);
  border: 1px solid rgba(30, 215, 96, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.track-meta {
  flex: 1;
}

.track-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.track-artist {
  font-size: 14px;
  color: var(--text-gray);
}

/* Equalizer animation */
.eq-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  padding: 0 4px;
}

.eq-bar {
  width: 3px;
  background: var(--emerald);
  border-radius: 2px;
  animation: eqBounce 1.2s infinite ease-in-out alternate;
  box-shadow: 0 0 6px var(--emerald);
}

.bar-1 { height: 40%; animation-delay: 0s; }
.bar-2 { height: 100%; animation-delay: 0.25s; }
.bar-3 { height: 65%; animation-delay: 0.4s; }
.bar-4 { height: 90%; animation-delay: 0.15s; }

@keyframes eqBounce {
  0% { height: 25%; }
  100% { height: 100%; }
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 24px;
  overflow: hidden;
}

.progress-bar-fill {
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, #128a3c, #1ED760);
  border-radius: 4px;
  box-shadow: 0 0 12px var(--emerald);
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ctrl-btn:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(30, 215, 96, 0.12);
  transform: scale(1.08);
}

.ctrl-play-btn {
  width: 50px;
  height: 50px;
  background: var(--emerald);
  color: #000;
  border: none;
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.4);
}

.ctrl-play-btn:hover {
  background: #25f470;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(30, 215, 96, 0.7);
}

/* Elegant Vector Music Note Stage */
.spinning-note-stage {
  position: relative;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 80px;
  opacity: 1;
  pointer-events: auto;
}

.spinning-music-note-svg {
  width: 200px;
  height: 200px;
  color: var(--emerald);
  filter: drop-shadow(0 0 30px rgba(30, 215, 96, 0.4));
  will-change: transform;
}

/* Landing Features Grid & Story Feature Cards */
.landing-features-grid {
  position: relative;
  width: min(1200px, 92%);
  margin: 0 auto 140px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  z-index: 10;
}

.story-feature-card {
  position: relative;
  inset: auto;
  width: 100%;
  padding: 34px;
  background: rgba(14, 16, 24, 0.92);
  border: 1px solid rgba(30, 215, 96, 0.4);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.story-feature-card:hover {
  border-color: var(--emerald);
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(30, 215, 96, 0.2);
}

.story-card-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(30, 215, 96, 0.1);
  border: 1px solid rgba(30, 215, 96, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.15);
}

.story-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.story-card-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Master Stats Stage */
.master-stats-stage {
  position: relative;
  width: min(1200px, 92%);
  margin: 0 auto 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 15;
  opacity: 1;
  pointer-events: auto;
}

.stats-grid-master {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card-master {
  padding: 42px 24px;
  background: rgba(18, 20, 29, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.stat-card-master:hover {
  border-color: rgba(30, 215, 96, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(30, 215, 96, 0.15);
}

.stat-num-master {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--emerald);
  margin-bottom: 6px;
  text-shadow: 0 0 25px rgba(30, 215, 96, 0.4);
}

.stat-label-master {
  font-size: 15px;
  color: var(--text-gray);
  font-weight: 600;
}

/* Master Bento Stage */
.master-bento-stage {
  position: relative;
  width: min(1200px, 92%);
  margin: 0 auto 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 15;
  opacity: 1;
  pointer-events: auto;
}

.section-head-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  font-family: var(--font-code);
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
}

.bento-grid-master {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card-master {
  padding: 34px;
  background: rgba(18, 20, 29, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card-master:hover {
  border-color: rgba(30, 215, 96, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(30, 215, 96, 0.12);
}

.bento-card-wide {
  grid-column: span 2;
}

.card-num-chip {
  font-family: var(--font-code);
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 14px;
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(30, 215, 96, 0.1);
  border: 1px solid rgba(30, 215, 96, 0.25);
  box-shadow: 0 0 12px rgba(30, 215, 96, 0.1);
}

.card-title-bento {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.card-text-bento {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Master Finale Stage */
.master-finale-stage {
  position: relative;
  width: min(1200px, 92%);
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  z-index: 15;
  opacity: 1;
  pointer-events: auto;
}

.compare-table-master {
  width: 100%;
  max-width: 960px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 29, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.compare-table-master th, .compare-table-master td {
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

.compare-table-master th {
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}

.compare-table-master .feature-col {
  text-align: left;
  font-weight: 700;
}

.compare-table-master .bekofy-col {
  color: var(--emerald);
  font-weight: 800;
  background: rgba(30, 215, 96, 0.08);
}

.badge-status {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.status-warn {
  background: rgba(255, 171, 0, 0.1);
  color: #ffab00;
  border: 1px solid rgba(255, 171, 0, 0.25);
}

.status-success {
  background: rgba(30, 215, 96, 0.15);
  color: var(--emerald);
  border: 1px solid rgba(30, 215, 96, 0.4);
}

.status-check {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-cross {
  background: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
  border: 1px solid rgba(255, 77, 77, 0.25);
}

.free-price-tag {
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px;
  text-shadow: 0 0 15px rgba(30, 215, 96, 0.5);
}

.cta-card-master {
  position: relative;
  width: 100%;
  max-width: 960px;
  padding: 48px;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #0e111a, #07090f);
  border: 1px solid rgba(30, 215, 96, 0.3);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(30, 215, 96, 0.15);
}

.cta-glow-bg {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--emerald);
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
}

.cta-title-master {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-subtext-master {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 28px;
}

/* ═════════════════════════════════════════════════════════════════════════
   AUTH PAGES (LOGIN & REGISTER)
   ═════════════════════════════════════════════════════════════════════════ */
.auth-page-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  background: radial-gradient(circle at 50% 30%, #0e121d 0%, #050507 80%);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(18, 20, 29, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 44px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(30, 215, 96, 0.08);
  transition: border-color 0.3s ease;
}

.auth-card:hover {
  border-color: rgba(30, 215, 96, 0.3);
}

.auth-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.auth-card-sub {
  font-size: 14px;
  color: var(--text-gray);
}

.btn-oauth-google {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 24px;
}

.btn-oauth-google:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.auth-field {
  margin-bottom: 20px;
}

.auth-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--text-white);
  font-size: 15px;
  outline: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.25);
  background: rgba(0, 0, 0, 0.7);
}

.btn-auth-submit {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  background: var(--emerald);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 10px;
  box-shadow: 0 0 25px rgba(30, 215, 96, 0.35);
}

.btn-auth-submit:hover {
  background: #25f470;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(30, 215, 96, 0.6);
}

.auth-footer-text {
  text-align: center;
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 20px;
}

.auth-footer-text a {
  color: var(--emerald);
  text-decoration: none;
  font-weight: 700;
}

/* Success & Error Alert Messages */
.success-msg, .error-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.success-msg { background: rgba(30, 215, 96, 0.15); color: var(--emerald); border: 1px solid var(--emerald); }
.error-msg { background: rgba(255, 77, 77, 0.15); color: #ff4d4d; border: 1px solid #ff4d4d; }

/* ═════════════════════════════════════════════════════════════════════════
   PREMIUM PRICING PAGE
   ═════════════════════════════════════════════════════════════════════════ */
.premium-page-wrapper {
  padding: 140px 0 100px;
  width: min(1100px, 92%);
  margin: 0 auto;
}

.premium-head {
  text-align: center;
  margin-bottom: 60px;
}

.premium-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.premium-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.premium-card.featured {
  border-color: var(--emerald);
  box-shadow: 0 0 35px rgba(30, 215, 96, 0.2);
}

.premium-card-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--emerald);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.premium-plan-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.premium-plan-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--emerald);
  margin-bottom: 24px;
}

.premium-plan-price span {
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 500;
}

.premium-features-list {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.premium-features-list li {
  font-size: 15px;
  color: var(--text-white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.premium-features-list li::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 800;
}

/* ═════════════════════════════════════════════════════════════════════════
   DASHBOARD PAGE
   ═════════════════════════════════════════════════════════════════════════ */
.dash-page-wrapper {
  padding: 130px 0 80px;
  width: min(1100px, 92%);
  margin: 0 auto;
}

.dash-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.dash-profile-card {
  grid-column: span 8;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.dash-avatar-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #1a1e2c;
  border: 2px solid var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--emerald);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
}

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

.dash-panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.col-span-4 { grid-column: span 4; }
.col-span-6 { grid-column: span 6; }
.col-span-12 { grid-column: span 12; }

/* ═════════════════════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ═════════════════════════════════════════════════════════════════════════ */
.checkout-page-wrapper {
  padding: 130px 20px 80px;
  max-width: 680px;
  margin: 0 auto;
}

.card-visual-preview {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background: linear-gradient(135deg, #12141d, #1e2230);
  border: 1px solid var(--border-color);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.card-chip-box {
  width: 42px;
  height: 30px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d4af37, #f0d060);
}

.card-number-text {
  font-family: var(--font-code);
  font-size: 20px;
  letter-spacing: 2px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
  z-index: 10;
}

@media (max-width: 900px) {
  .master-scroll-viewport { height: auto; overflow: visible; }
  .master-stage-container { position: relative; height: auto; flex-direction: column; gap: 80px; padding: 120px 0; }
  .hero-stage-layout, .master-stats-stage, .master-bento-stage, .master-finale-stage { position: relative; inset: auto; opacity: 1!important; pointer-events: auto!important; grid-template-columns: 1fr; }
  .spinning-note-stage { display: none; }
  .bento-grid-master { grid-template-columns: 1fr; }
  .bento-card-wide { grid-column: span 1; }
  .stats-grid-master { grid-template-columns: repeat(2, 1fr); }
  .story-feature-card { position: relative; inset: auto!important; width: 100%; opacity: 1!important; pointer-events: auto!important; }
  .premium-pricing-grid { grid-template-columns: 1fr; }
  .dash-profile-card, .col-span-4, .col-span-6 { grid-column: span 12; }
}
