/* ===== BACKGROUND BLOBS ===== */
.bg-mesh {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.55;
}
.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,16,46,0.7) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: drift1 18s ease-in-out infinite;
}
.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,79,216,0.65) 0%, transparent 70%);
  top: 10%; right: -150px;
  animation: drift2 22s ease-in-out infinite;
}
.blob-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.45) 0%, transparent 70%);
  bottom: 20%; left: 30%;
  animation: drift3 26s ease-in-out infinite;
}
.blob-4 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(27,79,216,0.5) 0%, transparent 70%);
  bottom: -150px; right: 10%;
  animation: drift1 20s ease-in-out infinite reverse;
}
.blob-5 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(180,30,70,0.35) 0%, transparent 70%);
  top: 50%; left: -100px;
  animation: drift2 24s ease-in-out infinite reverse;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, -80px) scale(1.05); }
  66%       { transform: translate(-40px, 60px) scale(0.95); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-70px, 50px) scale(1.08); }
  66%       { transform: translate(50px, -40px) scale(0.97); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -60px) scale(1.04); }
}

/* ===== WELCOME SPLASH ===== */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: stretch;
  overflow: hidden;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.splash.hiding {
  opacity: 0; transform: translateY(-16px); pointer-events: none;
}
.splash-blobs {
  position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.splash-inner {
  position: relative; z-index: 1;
  flex: 1; display: grid;
  grid-template-columns: 1fr 1px 1fr;
  max-width: 1200px; width: 100%;
  margin: 0 auto; padding: 0 48px;
  animation: splashFadeIn 0.7s ease forwards;
}
@keyframes splashFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== LEFT COLUMN ===== */
.splash-left {
  display: flex; flex-direction: column;
  justify-content: center; padding: 48px 48px 48px 0;
  border-right: 1px solid var(--line);
}
.splash-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.splash-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); line-height: 0.9; margin-bottom: 12px;
}
.splash-logo span {
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.splash-sub {
  font-size: 0.8rem; color: var(--muted); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 36px;
}
.splash-vdivider {
  width: 40px; height: 2px;
  background: var(--red); margin-bottom: 28px;
}
.splash-insta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.splash-insta > span:first-child { font-size: 1.3rem; }
.splash-insta div { display: flex; flex-direction: column; gap: 2px; }
.splash-insta strong {
  font-size: 0.85rem; color: var(--white); font-weight: 600;
}
.splash-insta span {
  font-size: 0.75rem; color: var(--muted);
}
.splash-enter {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px; border: none;
  cursor: pointer; width: fit-content;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.splash-enter:hover {
  background: var(--red2); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,16,46,0.4);
}
.splash-arrow { transition: transform 0.2s; display: inline-block; }
.splash-enter:hover .splash-arrow { transform: translateX(4px); }

/* ===== COLUMN DIVIDER ===== */
.splash-col-line { background: var(--line); }

/* ===== RIGHT COLUMN ===== */
.splash-right {
  display: flex; flex-direction: column;
  justify-content: center; padding: 48px 0 48px 48px;
}
.splash-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 800; line-height: 1.15; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--white); margin-bottom: 0;
}
.splash-heading em { color: var(--red); font-style: normal; }
.splash-hdivider {
  width: 100%; height: 1px; background: var(--line); margin: 24px 0;
}
.splash-body { display: flex; flex-direction: column; gap: 14px; }
.splash-body p {
  font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75;
}
.splash-body p strong { color: var(--white); font-weight: 600; }
.splash-closer { color: var(--white) !important; font-weight: 600 !important; }

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #06080f;
  color: #ffffff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* ===== PALETTE ===== */
:root {
  --red:   #C8102E;
  --red2:  #a50d24;
  --blue:  #1B4FD8;
  --blue2: #1640b0;
  --white: #ffffff;
  --bg:    #06080f;
  --bg2:   #0a0d18;
  --line:  rgba(255,255,255,0.1);
  --muted: rgba(255,255,255,0.45);
}

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  isolation: isolate;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 64px;
  background: rgba(6,8,15,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white);
}
/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex; gap: 3px; align-items: center;
  margin-left: auto; margin-right: 14px;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.35);
  border-radius: 4px; padding: 4px 9px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 1px;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
}
.lang-btn:hover { border-color: rgba(200,16,46,0.5); color: var(--white); }
.lang-btn.active {
  border-color: var(--red); color: var(--red);
  background: rgba(200,16,46,0.08);
}

.logo span {
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo { font-size: 2rem; }
.burger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--line); border-radius: 6px;
  padding: 9px 10px; cursor: pointer; z-index: 1100;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
  display: none; position: fixed; top: 64px; right: 0; bottom: 0;
  width: 280px; background: #0a0d18;
  border-left: 1px solid var(--line);
  padding: 40px 32px; z-index: 1000;
}
.nav-drawer.open { display: block; }
.nav-drawer ul { display: flex; flex-direction: column; gap: 8px; }
.nav-drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  padding: 10px 0; border-bottom: 1px solid var(--line);
  display: block; transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--red); }

/* ===== BUTTONS ===== */
.btn-main {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px; border: none;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.btn-main:hover { background: var(--red2); transform: translateY(-2px); }
.btn-main.wide { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px; border: none; cursor: pointer;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 30px; border: 1px solid var(--line); border-radius: 4px;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ===== DIVIDER ===== */
.divider {
  width: 100%; height: 1px;
  background: var(--line);
  margin: 32px 0;
}

/* ===== SECTIONS ===== */
.page-section {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 100px 0 0;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 1;
}
.section-alt { background: rgba(10,13,24,0.55); }
.section-inner {
  max-width: 900px; margin: 0 auto;
  padding: 0 40px 80px;
  width: 100%;
}

/* ===== EYEBROW ===== */
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}

/* ===== TITLES ===== */
.hero-title, .section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -1px; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
}
.hero-title em, .section-title em {
  color: var(--red); font-style: normal;
}
.hero-title span, .section-title span {
  color: var(--blue);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 100px 0 0;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 1;
}
.hero-content {
  max-width: 900px; margin: 0 auto;
  padding: 40px 40px 80px; width: 100%;
}

/* ===== STATEMENTS ===== */
.hero-statement, .section-statement {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white);
}
.accent-red { color: var(--red); }
.accent-blue { color: var(--blue); }

/* ===== BODY TEXT ===== */
.hero-body, .section-body {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 760px;
  margin-bottom: 20px;
}
.hero-body strong, .section-body strong { color: var(--white); font-weight: 600; }
.hl-red { color: var(--red); font-weight: 500; }
.hl-blue { color: #6b9fff; font-weight: 500; }

/* ===== HERO CTAS ===== */
.hero-ctas { display: flex; align-items: center; gap: 8px; margin-top: 36px; }

/* ===== SECTION BOTTOM NAV ===== */
.section-nav-bottom {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 40px;
  border-top: 1px solid var(--line);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
}
.snb-num { color: var(--red); font-weight: 700; }
.snb-arrow { margin-left: auto; }

/* ===== STATS ===== */
.stats-row {
  display: flex; align-items: center; gap: 32px;
  margin: 40px 0;
  padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 900; color: var(--red);
}
.stat-plus {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--red);
}
.stat p { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.stat-div { width: 1px; height: 60px; background: var(--line); }

/* ===== ARTIST GRID ===== */
.artists-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  margin-top: 32px;
}
.artist-card {
  background: var(--bg); padding: 0;
  transition: background 0.2s;
}
.artist-card:hover { background: #0e1220; }
.artist-img {
  width: 100%; height: 200px; object-fit: cover;
  display: block;
}
.artist-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, #0d1228 0%, #1a0a14 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.artist-body { padding: 20px; }
.artist-pkg {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 8px;
}
.artist-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.atag {
  font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); background: rgba(255,255,255,0.05);
  padding: 3px 8px; border-radius: 3px;
}
.artist-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.artist-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
.artist-links { display: flex; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.alink {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 7px 14px;
  border: 1px solid var(--line); border-radius: 3px; color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.alink:hover { color: var(--red); border-color: var(--red); }
.empty-state { text-align: center; padding: 60px 0; }

/* ===== PACKAGES ===== */
.wide-inner { max-width: 1100px; }

.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; margin-top: 32px;
}
.pkg-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  transition: background 0.2s;
}
.pkg-card:hover { background: #0d1022; }
.pkg-card-hot {
  background: rgba(200,16,46,0.06);
  border: 1px solid rgba(200,16,46,0.25);
  margin: -1px; z-index: 2;
  border-radius: 4px;
}
.pkg-card-premium {
  background: rgba(27,79,216,0.06);
}
.pkg-card-top { margin-bottom: 20px; }
.pkg-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.1); display: block; margin-bottom: 4px;
}
.pkg-card-num.accent-red { color: var(--red); }
.pkg-hot-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 50px;
  background: rgba(200,16,46,0.2); color: var(--red);
  border: 1px solid rgba(200,16,46,0.3); margin-bottom: 8px;
}
.pkg-hot-badge.blue {
  background: rgba(27,79,216,0.2); color: #6b9fff;
  border-color: rgba(27,79,216,0.3);
}
.pkg-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.pkg-card-top > p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.pkg-platforms {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.plat {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
}

.pkg-features {
  flex: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px;
}
.pkg-features li {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  padding-left: 16px; position: relative; line-height: 1.4;
}
.pkg-features li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--red); font-weight: 700; font-size: 0.75rem;
}

.pkg-meta {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px;
}
.meta-pill {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 10px; border-radius: 50px;
  background: rgba(255,255,255,0.04); color: var(--muted);
  border: 1px solid var(--line);
}
.meta-pill.red { color: var(--red); border-color: rgba(200,16,46,0.3); background: rgba(200,16,46,0.08); }

.pkg-btn { width: 100%; text-align: center; margin-top: auto; }

/* ===== CONTACT ===== */
.contact-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.contact-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 50px;
  padding: 10px 22px; font-size: 0.875rem; color: var(--white);
  transition: border-color 0.2s, color 0.2s;
}
.contact-pill:hover { border-color: var(--red); color: var(--red); }
.contact-form {
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  border-radius: 8px; padding: 36px;
}
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white); margin-bottom: 24px;
}

/* ===== FORMS ===== */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.fg label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}
.fg input, .fg textarea, .fg select {
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  border-radius: 4px; padding: 12px 14px;
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none; border-color: var(--red);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg select option { background: #0a0d18; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-actions { display: flex; gap: 12px; margin-top: 8px; }

/* ===== ADMIN ===== */
.admin-lock { padding: 20px 0; }
.lock-row { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.lock-row input {
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  border-radius: 4px; padding: 12px 16px;
  color: var(--white); font-size: 0.95rem; flex: 1; min-width: 220px;
}
.lock-row input:focus { outline: none; border-color: var(--red); }
.admin-err { color: var(--red); font-size: 0.85rem; margin-top: 12px; }
.artist-form {
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  border-radius: 8px; padding: 32px; margin-bottom: 24px;
}
.posted-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.posted-item {
  background: var(--bg); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.posted-item strong { color: var(--white); font-size: 0.95rem; display: block; }
.posted-item span { font-size: 0.8rem; color: var(--muted); }
.del-btn {
  background: none; border: 1px solid rgba(200,16,46,0.3);
  color: var(--red); border-radius: 4px; padding: 6px 12px;
  cursor: pointer; font-size: 0.8rem; transition: background 0.2s;
}
.del-btn:hover { background: rgba(200,16,46,0.1); }

/* ===== SOCIAL PILLS (contact section) ===== */
.social-pill { display: inline-flex; align-items: center; gap: 8px; }
.social-pill-icon { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }
.insta-pill:hover { border-color: #E1306C; color: #E1306C; }
.tiktok-pill:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--line); background: rgba(3,4,10,0.85); position: relative; z-index: 1; }
.footer-stripe { display: flex; height: 4px; }
.fs.r { background: var(--red); flex: 2; }
.fs.w { background: rgba(255,255,255,0.3); flex: 1; }
.fs.b { background: var(--blue); flex: 3; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 48px 40px 32px;
  display: flex; flex-direction: column; gap: 32px;
}
.footer-top-row {
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start;
}
.footer-brand-col p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-top: 12px; }
.footer-socials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; align-items: start;
}
.footer-socials-label {
  grid-column: 1 / -1;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.footer-social-link {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s; min-width: 210px;
}
.footer-social-link:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.07); }
.footer-social-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.footer-social-icon img { width: 22px; height: 22px; object-fit: contain; }
.insta-bg   { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tiktok-bg  { background: #010101; border: 1px solid rgba(255,255,255,0.1); }
.x-bg       { background: #000000; border: 1px solid rgba(255,255,255,0.12); }
.youtube-bg { background: #FF0000; }
.facebook-bg{ background: #1877F2; }
.footer-social-link strong { display: block; font-size: 0.875rem; color: var(--white); font-weight: 600; }
.footer-social-link span { font-size: 0.75rem; color: var(--muted); }
.footer-bottom-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
@media (max-width: 680px) {
  .footer-top-row { grid-template-columns: 1fr; }
  .footer-inner { padding: 40px 24px 28px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; }
}

/* ===== ARTIST TEASER ===== */
.teaser-count-row {
  display: flex; align-items: center; gap: 32px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--line); flex-wrap: wrap;
}
.teaser-stat strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem; font-weight: 900; color: var(--red); line-height: 1;
}
.teaser-stat span {
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 4px; display: block;
}

/* ===== PAYMENT METHODS ===== */
.pay-group { margin-top: 40px; }
.pay-group-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.pay-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.pay-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: default;
  transition: transform 0.2s;
}
.pay-card:hover { transform: translateY(-4px); }
.pay-logo-wrap {
  width: 72px; height: 72px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: box-shadow 0.2s;
}
.pay-card:hover .pay-logo-wrap {
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.pay-logo {
  width: 36px; height: 36px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.pay-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white);
}
.pay-ticker {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 1px;
  color: var(--muted); text-transform: uppercase;
  margin-top: -6px;
}
.pay-note {
  display: flex; align-items: flex-start; gap: 14px;
  margin-top: 40px; padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6;
}
.pay-note > span { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.pay-note a { font-weight: 600; }

/* ===== UTILS ===== */
.hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .wide-inner { max-width: 900px; }
}
@media (max-width: 860px) {
  .splash-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    overflow-y: auto;
  }
  .splash-col-line { display: none; }
  .splash-left {
    padding: 40px 0 24px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .splash-right { padding: 24px 0 40px; }
  .splash-logo { font-size: clamp(3rem, 12vw, 5rem); }
}
@media (max-width: 760px) {
  .section-inner { padding: 0 24px 60px; }
  .hero-content { padding: 24px 24px 60px; }
  .section-nav-bottom { padding: 16px 24px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card-hot { margin: -1px 0; }
  .form-row-2 { grid-template-columns: 1fr; }
  .stats-row { gap: 16px; }
  .hero-ctas { flex-wrap: wrap; }
  .footer-inner { padding: 40px 24px 32px; }
  #navbar { padding: 0 20px; }
}
