/* ==========================================================================
   IrieVybz AI — Artist Landing Page Stylesheet
   Dark cinematic demo pages for AI social media management.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Artist Theme Variables
   -------------------------------------------------------------------------- */
.theme-protoje {
  --accent: #D4A017;
  --accent-secondary: #2D5016;
  --bg-hero: #0a1205;
  --bg-body: #0c0d08;
  --bg-section-alt: #12140c;
  --bg-card: #1a1c12;
  --accent-glow: rgba(212, 160, 23, 0.4);
  --accent-secondary-glow: rgba(45, 80, 22, 0.5);
  --gradient-artist: linear-gradient(135deg, var(--accent-secondary), var(--accent));
}

.theme-lila-ike {
  --accent: #00E5FF;
  --accent-secondary: #00BCD4;
  --bg-hero: #030a0e;
  --bg-body: #060c10;
  --bg-section-alt: #081216;
  --bg-card: #0c1a20;
  --accent-glow: rgba(0, 229, 255, 0.5);
  --accent-secondary-glow: rgba(0, 188, 212, 0.55);
  --accent-warm: rgba(255, 107, 157, 0.3);
  --gradient-artist: linear-gradient(135deg, var(--accent-secondary), var(--accent));
}

/* --------------------------------------------------------------------------
   1. Base & Resets (artist pages)
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  background: var(--bg-body, #0a0a14);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input, textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* --------------------------------------------------------------------------
   2. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.section-title .accent-text {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}

.cta-content .accent-text {
  text-shadow: 0 0 50px var(--accent-glow);
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -2rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
}

/* --------------------------------------------------------------------------
   3. Navigation
   -------------------------------------------------------------------------- */
.artist-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-nav.scrolled {
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 0.6rem 0;
}

.theme-protoje .artist-nav.scrolled {
  background: rgba(12, 13, 8, 0.94);
}

.theme-lila-ike .artist-nav.scrolled {
  background: rgba(7, 14, 18, 0.94);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-brand .gradient-text {
  background: linear-gradient(135deg, #009B3A, #FFD700, #CE1126);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent);
}

/* Mobile nav */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-body, #0a0a14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  padding: 0.75rem 0;
  transition: color 0.3s;
}

.mobile-link:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.artist-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-hero);
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  will-change: transform;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -15%;
  left: -10%;
  animation: auroraFloat1 14s ease-in-out infinite;
}

.hero-orb--2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-secondary-glow), transparent 70%);
  top: 30%;
  right: -8%;
  animation: auroraFloat2 18s ease-in-out infinite;
}

.hero-orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  bottom: -10%;
  left: 40%;
  animation: auroraFloat3 16s ease-in-out infinite;
}

@keyframes auroraFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(30px, 40px) scale(1.05); }
}

@keyframes auroraFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-50px, 20px) scale(1.08); }
  50% { transform: translate(30px, -40px) scale(0.92); }
  75% { transform: translate(-20px, -20px) scale(1.1); }
}

@keyframes auroraFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -20px) scale(1.12); }
  66% { transform: translate(-40px, 30px) scale(0.9); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 30%, var(--bg-hero) 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-artist-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-powered {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transform: translateY(20px);
}

.hero-powered span {
  background: linear-gradient(135deg, #009B3A, #FFD700, #CE1126);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   5. (Capabilities removed — replaced by Statement section)
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   6. Post Gallery Section — Instagram Feed Style
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 6rem 0 7rem;
  background: var(--bg-body, #0a0a14);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
  opacity: 0.07;
  pointer-events: none;
  filter: blur(60px);
}

.gallery-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.post-card {
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6),
              0 0 40px -10px var(--accent-glow);
  border-color: rgba(255, 255, 255, 0.18);
}

/* IG post header */
.post-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: #000;
}

.post-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  padding: 2px;
  flex-shrink: 0;
}

.post-card-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  color: #fff;
  border: 1.5px solid #000;
}

.post-card-username {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
}

.post-card-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  background: #3797f0;
  border-radius: 50%;
  font-size: 0.5rem;
  color: #fff;
  margin-left: 3px;
  vertical-align: middle;
}

.post-card-menu {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  letter-spacing: 3px;
  cursor: pointer;
}

/* Post Image */
.post-image {
  width: 100%;
  position: relative;
  background: #000;
  overflow: hidden;
}
.post-image iframe.post-iframe {
  width: 1080px;
  height: 1080px;
  border: none;
  transform-origin: top left;
  pointer-events: none;
  display: block;
}

/* IG action bar */
.post-actions {
  display: flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  background: #000;
  gap: 0.9rem;
}

.post-actions svg {
  width: 24px;
  height: 24px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

.post-actions svg:hover {
  opacity: 0.6;
}

.post-action-bookmark {
  margin-left: auto;
}

.post-likes {
  padding: 0 0.85rem 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: #000;
}

/* IG caption */
.post-caption {
  padding: 0 0.85rem 0.5rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  background: #000;
}

.post-caption strong {
  color: #fff;
  font-weight: 600;
  margin-right: 0.25rem;
}

.post-caption-hashtags {
  display: block;
  color: var(--accent);
  opacity: 0.7;
  margin-top: 0.3rem;
  font-size: 0.78rem;
}

.post-card-time {
  padding: 0 0.85rem 0.65rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #000;
}

/* --------------------------------------------------------------------------
   7. Chat Widget Section — Instagram DM Style
   -------------------------------------------------------------------------- */
.chat-section {
  padding: 6rem 0 7rem;
  background: var(--bg-section-alt, #0e0e1c);
  position: relative;
  overflow: hidden;
}

.chat-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--accent-secondary-glow), transparent 70%);
  opacity: 0.08;
  pointer-events: none;
  filter: blur(80px);
}

.chat-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.2;
}

.chat-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.chat-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  text-align: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chat-disclaimer-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.chat-container {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: none;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.chat-wrapper:hover .chat-container {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px -10px var(--accent-glow);
}

.chat-container.collapsed .chat-messages,
.chat-container.collapsed .chat-input-wrap,
.chat-container.collapsed .chat-chips {
  display: none;
}

/* IG-style header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  background: #000;
}

.chat-avatar-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  padding: 2px;
  flex-shrink: 0;
}

.chat-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #000;
}

.chat-header-info {
  flex: 1;
}

.chat-header-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.chat-status {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

.chat-status-dot {
  display: none;
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chat-header-actions svg {
  width: 24px;
  height: 24px;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.chat-header-actions svg:hover {
  opacity: 1;
}

.chat-toggle {
  display: none;
}

/* Messages — IG style */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem;
  min-height: 300px;
  max-height: 420px;
  overflow-y: auto;
  background: #000;
}

.chat-messages::-webkit-scrollbar {
  width: 0;
}

.chat-msg {
  max-width: 75%;
  padding: 0.6rem 0.85rem;
  border-radius: 22px;
  line-height: 1.45;
  font-size: 0.88rem;
}

.chat-msg.ai {
  align-self: flex-start;
  background: #262626;
  border: none;
  border-radius: 22px;
  border-bottom-left-radius: 4px;
  color: #fff;
}

.chat-msg.user {
  align-self: flex-end;
  background: #3797f0;
  border-radius: 22px;
  border-bottom-right-radius: 4px;
  color: #fff;
}

/* Typing indicator — IG style */
.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.65rem 0.9rem;
  align-self: flex-start;
  background: #262626;
  border: none;
  border-radius: 22px;
  border-bottom-left-radius: 4px;
}

.typing-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dots .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Chat Input — IG pill style */
.chat-input-wrap {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  gap: 0.5rem;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.chat-input-pill {
  flex: 1;
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  padding: 0 0.35rem 0 0;
  overflow: hidden;
}

.chat-input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.88rem;
  color: #fff;
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.chat-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  color: #3797f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  font-weight: 700;
  font-size: 0.85rem;
}

.chat-send:hover {
  color: #60adf5;
}

.chat-send svg {
  width: 22px;
  height: 22px;
}

/* IG quick-reply chips */
.chat-chips {
  display: flex;
  gap: 0.4rem;
  padding: 0 1rem 0.75rem;
  overflow-x: auto;
  flex-wrap: nowrap;
  background: #000;
}

.chat-chips::-webkit-scrollbar {
  display: none;
}

.chat-chip {
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.chat-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   8. CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 8rem 0 6rem;
  background: var(--bg-body, #0a0a14);
  position: relative;
  overflow: hidden;
}

.cta-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}

.cta-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -30%;
  left: 15%;
  animation: auroraFloat1 13s ease-in-out infinite;
}

.cta-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-secondary-glow), transparent 70%);
  bottom: -25%;
  right: 5%;
  animation: auroraFloat2 16s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-accent {
  color: #fff;
  background: var(--gradient-artist);
  border: none;
}

.btn-accent:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-ghost {
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cta-branding {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.cta-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */
.artist-footer {
  padding: 3.5rem 0 2.5rem;
  background: var(--bg-hero, #08081a);
  border-top: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.artist-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.15;
}

.artist-footer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.artist-footer a {
  color: var(--accent);
  transition: opacity 0.3s;
}

.artist-footer a:hover {
  opacity: 0.7;
}

.footer-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   10. Image-based Hero (replaces aurora orbs)
   -------------------------------------------------------------------------- */
.artist-hero--img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.theme-protoje .artist-hero--img {
  background-position: center 30%;
}

.theme-lila-ike .artist-hero--img {
  background-position: center top;
}

.hero-overlay--img {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0.2) 55%,
    var(--bg-hero) 100%
  );
  pointer-events: none;
}

/* Protoje: album cover is bright, needs stronger overlay */
.theme-protoje .hero-overlay--img {
  background: linear-gradient(
    180deg,
    rgba(10, 18, 5, 0.75) 0%,
    rgba(10, 18, 5, 0.4) 35%,
    rgba(10, 18, 5, 0.35) 55%,
    #0a1205 100%
  );
}

/* Lila: photo positioned top, blend at bottom */
.theme-lila-ike .hero-overlay--img {
  background: linear-gradient(
    180deg,
    rgba(3, 10, 14, 0.4) 0%,
    rgba(3, 10, 14, 0.15) 30%,
    rgba(3, 10, 14, 0.25) 60%,
    #030a0e 100%
  );
}

/* --------------------------------------------------------------------------
   10b. Lila Ike — Theme-specific glow boosts
   -------------------------------------------------------------------------- */

/* Stronger ambient glows for teal (cooler color needs more intensity) */
.theme-lila-ike .gallery-section::before {
  opacity: 0.12;
  width: 900px;
  height: 900px;
}

.theme-lila-ike .statement-section::after {
  opacity: 0.1;
  width: 800px;
  height: 800px;
}

.theme-lila-ike .chat-section::before {
  opacity: 0.12;
}

/* Electric teal CTA orbs */
.theme-lila-ike .cta-orb--1 {
  opacity: 0.55;
  width: 650px;
  height: 650px;
}

.theme-lila-ike .cta-orb--2 {
  opacity: 0.5;
  width: 550px;
  height: 550px;
}

/* Warm pink secondary glow — adds depth beyond single-color teal */
.theme-lila-ike .cta-aurora::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.25), transparent 70%);
  top: 40%;
  left: 55%;
  filter: blur(100px);
  animation: auroraFloat3 16s ease-in-out infinite;
}

/* Teal marquee glow stronger */
.theme-lila-ike .marquee-strip {
  box-shadow: 0 6px 40px rgba(0, 229, 255, 0.5),
              0 -6px 40px rgba(0, 229, 255, 0.5);
}

/* Post card hover — electric teal edge glow */
.theme-lila-ike .post-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6),
              0 0 50px -8px rgba(0, 229, 255, 0.35);
  border-color: rgba(0, 229, 255, 0.2);
}

/* Chat container glow */
.theme-lila-ike .chat-wrapper:hover .chat-container {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 50px -8px rgba(0, 229, 255, 0.3);
}

/* Streaming links row */
.hero-streaming {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.streaming-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.streaming-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* "Powered by" badge — bottom right of hero */
.hero-powered-badge {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 3;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  opacity: 0;
  transform: translateY(10px);
}

.hero-powered-badge span {
  background: linear-gradient(135deg, #009B3A, #FFD700, #CE1126);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   11. Artist Statement Section (replaces capabilities grid)
   -------------------------------------------------------------------------- */
.statement-section {
  padding: 7rem 0;
  background: var(--bg-section-alt, #0e0e1c);
  position: relative;
  overflow: hidden;
}

.statement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-artist);
  border-radius: 2px;
}

.statement-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
  opacity: 0.06;
  pointer-events: none;
  filter: blur(80px);
}

.artist-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  position: relative;
  padding-top: 1rem;
  opacity: 0;
  transform: translateY(30px);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.artist-quote::before {
  content: '\201C';
  display: block;
  font-family: 'Outfit', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  text-align: center;
  margin-bottom: -2rem;
  text-shadow: 0 0 60px var(--accent-glow);
}

.statement-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.statement-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
}

.stat-pill {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.7rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-pill:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 25px -5px var(--accent-glow);
  transform: translateY(-2px);
}

.stat-pill strong {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   12. Marquee Strip
   -------------------------------------------------------------------------- */
.marquee-strip {
  background: var(--accent);
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
  box-shadow: 0 4px 30px var(--accent-glow),
              0 -4px 30px var(--accent-glow);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
}

.marquee-track span::after {
  content: ' \2022';
  margin-left: 1.5rem;
  opacity: 0.4;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   13. Parallax Image Breaks
   -------------------------------------------------------------------------- */
.image-break {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 300px;
  max-height: 500px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Fallback for mobile (fixed attachment not supported) */
@supports not (background-attachment: fixed) {
  .image-break {
    background-attachment: scroll;
  }
}

.image-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg-section-alt) 0%,
    rgba(0, 0, 0, 0.3) 15%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.3) 85%,
    var(--bg-body) 100%
  );
  pointer-events: none;
}

.image-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, var(--bg-body) 100%);
  opacity: 0.5;
  pointer-events: none;
}

.image-break-text {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  opacity: 0;
}

.image-break-text span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

/* Second break blends into alt background */
.image-break--to-alt::before {
  background: linear-gradient(
    180deg,
    var(--bg-body) 0%,
    rgba(0, 0, 0, 0.3) 15%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.3) 85%,
    var(--bg-section-alt) 100%
  );
}

/* --------------------------------------------------------------------------
   14. GSAP Reveal Defaults
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .post-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-artist-name {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-streaming {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-powered-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    text-align: center;
  }

  .chat-wrapper {
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .statement-stats {
    gap: 0.6rem;
  }

  .stat-pill {
    font-size: 0.8rem;
    padding: 0.5rem 1.1rem;
  }

  .image-break {
    height: 35vh;
    min-height: 220px;
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .chat-chips {
    gap: 0.4rem;
  }

  .chat-chip {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }

  .artist-quote {
    font-size: 1.3rem;
  }
}
