/* ==========================================================================
   DISTROFLEET — DESIGN SYSTEM
   ========================================================================== */

/* ----- TOKENS ----- */
:root {
  --bg:           #f8fafc;
  --bg-2:         #f1f5f9;
  --surface:      #ffffff;
  --surface-2:    #f8fafc;
  --surface-3:    #e2e8f0;
  --border:       rgba(15, 23, 42, 0.08);
  --border-2:     rgba(15, 23, 42, 0.15);
  --text:         #0f172a;
  --text-2:       #334155;
  --muted:        #64748b;
  --muted-2:      #94a3b8;
  --accent:       #2563eb;
  --accent-2:     #1d4ed8;
  --accent-3:     #1e40af;
  --gradient:     linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  --gradient-2:   linear-gradient(135deg, #1d4ed8 0%, #3730a3 100%);
  --danger:       #ef4444;
  --warning:      #f59e0b;
  --success:      #10b981;
  --info:         #06b6d4;
  --radius:       16px;
  --radius-sm:    12px;
  --radius-lg:    24px;
  --shadow:       0 12px 40px rgba(37, 99, 235, 0.08);
  --shadow-sm:    0 6px 20px rgba(37, 99, 235, 0.05);
  --sidebar-w:    256px;
  --header-h:     110px;
  --container:    1240px;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --easing:       cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.5s var(--easing), color 0.5s var(--easing);
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--easing); }
a:hover { color: var(--accent); }

button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

.text-white, .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
  color: #ffffff !important;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { color: var(--text-2); }

::selection { background: var(--accent); color: #ffffff; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-2); }

/* ----- LAYOUT ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-2);
  padding: 6px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.03);
  border-radius: 99px;
  margin-bottom: 16px;
  transition: all 0.3s var(--easing);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing), background 0.35s var(--easing), color 0.35s var(--easing), border-color 0.35s var(--easing), opacity 0.35s var(--easing);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.btn-primary:hover {
  background: var(--accent-3);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-gradient {
  background: var(--gradient);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.btn-gradient:hover { color: #ffffff; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28); }

.btn-ghost {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: rgba(0, 0, 0, 0.07); color: var(--text); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #b30303; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #066b31; }

/* ----- CARDS ----- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.4s var(--easing), border-color 0.4s var(--easing), box-shadow 0.4s var(--easing);
}
.card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.card-glow { position: relative; overflow: hidden; }
.card-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 0, 0, 0.04), transparent 40%);
  opacity: 0;
  transition: opacity 0.45s var(--easing);
  pointer-events: none;
}
.card-glow:hover::before { opacity: 1; }

/* ----- BADGES ----- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--easing);
}
.badge-accent { background: rgba(0, 0, 0, 0.06); color: var(--accent); border: 1px solid rgba(0, 0, 0, 0.15); }
.badge-info { background: rgba(26, 92, 200, 0.08); color: var(--info); border: 1px solid rgba(26, 92, 200, 0.2); }
.badge-success { background: rgba(10, 126, 62, 0.08); color: var(--success); border: 1px solid rgba(10, 126, 62, 0.2); }
.badge-warning { background: rgba(224, 123, 0, 0.08); color: var(--warning); border: 1px solid rgba(224, 123, 0, 0.2); }
.badge-danger { background: rgba(212, 4, 4, 0.08); color: var(--danger); border: 1px solid rgba(212, 4, 4, 0.2); }
.badge-muted { background: rgba(0, 0, 0, 0.04); color: var(--muted); border: 1px solid var(--border); }

/* ----- FORMS ----- */
.field { display: block; margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
}
.input, .select, .textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14.5px;
  transition: border-color 0.3s var(--easing), box-shadow 0.3s var(--easing), background 0.3s var(--easing);
  outline: none;
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.015);
}
.textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%238e8e9a' stroke-width='1.6' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

.input-group { position: relative; }
.input-group .input { padding-left: 44px; }
.input-group .input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }

/* ----- FLASH MESSAGES ----- */
.flash {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 500;
  max-width: 360px;
  animation: slideIn 0.4s var(--easing);
}
.flash.success { border-color: rgba(10, 126, 62, 0.35); color: var(--success); }
.flash.error { border-color: rgba(212, 4, 4, 0.35); color: var(--danger); }
.flash.info { border-color: rgba(26, 92, 200, 0.35); color: var(--info); }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   PUBLIC SITE — HEADER
   ============================================================ */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--easing), background 0.4s var(--easing), box-shadow 0.4s var(--easing);
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
.site-header:has(.site-nav.open) {
  background: var(--surface);
  border-bottom-color: var(--border);
}

.site-header .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  white-space: nowrap;
  transition: opacity 0.3s var(--easing);
}
.brand-mark {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.brand-name { color: var(--text); transition: color 0.3s var(--easing); }
.brand-name span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.site-nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: color 0.3s var(--easing), background 0.3s var(--easing);
}
.site-nav a:hover { color: var(--text); background: rgba(0, 0, 0, 0.04); }
.site-nav a.active { color: var(--accent); background: rgba(0, 0, 0, 0.04); }

.site-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

@media (max-width: 480px) {
  .site-actions .btn {
    padding: 7px 11px;
    font-size: 12px;
  }
  .site-actions .btn-ghost {
    padding: 7px 10px;
  }
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--easing), border-color 0.3s var(--easing);
}

@media (max-width: 1023px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 24px 24px !important;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    gap: 4px;
    transform: translateY(-10px);
    transition: transform 0.3s var(--easing), opacity 0.3s var(--easing), visibility 0.3s var(--easing);
    z-index: 999;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    flex: unset;
    justify-content: flex-start;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  .site-nav a { padding: 12px 16px; border-radius: 12px; font-size: 14px; font-weight: 700; color: #1e293b; background: transparent; }
  .site-nav a:hover { background: #f1f5f9; color: #000000; }
  .site-nav.open { display: flex !important; transform: translateY(0) !important; opacity: 1 !important; visibility: visible !important; background: #ffffff !important; background-color: #ffffff !important; }
  .auth-mobile-only { display: block !important; }
  .nav-toggle { display: inline-flex; }
}

.auth-mobile-only { display: none; }


/* ============================================================
   PUBLIC SITE — HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(0, 0, 0, 0.03), transparent 60%),
    radial-gradient(ellipse 50% 40% at 82% 70%, rgba(0, 0, 0, 0.03), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .gradient-text { display: inline-block; }
.hero p { color: var(--muted); font-size: 18px; max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-stat .v { font-family: var(--font-display); font-size: 32px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat .l { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

@media (max-width: 720px) { .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

/* ----- PLATFORM LOGOS STRIP ----- */
.platforms {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.platforms::before,
.platforms::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.platforms::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-2), transparent);
}
.platforms::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-2), transparent);
}
.platforms .label { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 28px; }
.platform-strip { display: flex; flex-wrap: wrap; gap: 32px 48px; justify-content: center; align-items: center; }
.platform-strip img { height: 30px; width: auto; opacity: 0.65; filter: grayscale(1); transition: opacity 0.4s var(--easing), filter 0.4s var(--easing), transform 0.4s var(--easing); }
.platform-strip img:hover { opacity: 1; filter: grayscale(0); transform: translateY(-2px); }

.platform-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.platform-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}
.platform-track:hover {
  animation-play-state: paused;
}
.platform-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}
.platform-group img {
  height: 24px;
  width: 24px;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: none;
}
.platform-group span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 15px;
  opacity: 0.85;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.platform-group span:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.platform-group span:hover img {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----- HOW IT WORKS ----- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.45s var(--easing), border-color 0.45s var(--easing), box-shadow 0.45s var(--easing);
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(0, 0, 0, 0.2); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
  transition: background 0.35s var(--easing), transform 0.35s var(--easing);
}
.step-card:hover .step-num { transform: scale(1.05); }
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 14.5px; line-height: 1.7; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr !important; } }

/* ----- FEATURE GRID ----- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.45s var(--easing), border-color 0.45s var(--easing), box-shadow 0.45s var(--easing);
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.03));
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  transition: background 0.4s var(--easing), border-color 0.4s var(--easing), transform 0.4s var(--easing);
}
.feature-card:hover .feature-icon { transform: scale(1.05); }
.feature-card h3 { margin-bottom: 8px; font-size: 17px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr !important; } }

/* ----- STATS ----- */
.stats-band { background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 16px; transition: transform 0.4s var(--easing); }
.stat:hover { transform: translateY(-2px); }
.stat .n {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .l { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 10px; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr) !important; } }

/* ----- ARTIST CAROUSEL ----- */
.artist-rail {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.artist-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: rail 40s linear infinite;
}
.artist-rail:hover .artist-track { animation-play-state: paused; }
@keyframes rail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.artist-card {
  width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.45s var(--easing), border-color 0.45s var(--easing), box-shadow 0.45s var(--easing);
}
.artist-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.artist-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--surface-2); }
.artist-meta { padding: 14px; text-align: center; }
.artist-meta h4 { font-size: 14px; }
.artist-meta p { color: var(--muted); font-size: 12px; margin-top: 2px; }

/* ----- CTA BOX ----- */
.cta-box {
  position: relative;
  text-align: center;
  padding: 80px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 32px;
  overflow: hidden;
  transition: box-shadow 0.5s var(--easing), border-color 0.5s var(--easing);
}
.cta-box:hover { border-color: rgba(0, 0, 0, 0.2); box-shadow: var(--shadow); }
.cta-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  filter: blur(80px);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { color: var(--muted); max-width: 560px; margin: 0 auto 32px; }

/* ----- FAQ ----- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
.faq-item.open { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.3s var(--easing);
}
.faq-q .chev { transition: transform 0.4s var(--easing), color 0.4s var(--easing); color: var(--muted); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--easing);
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a p { color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* ----- PAGE BANNER (sub-pages) ----- */
.page-banner {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(0, 0, 0, 0.04), transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(0, 0, 0, 0.02), transparent 60%);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { margin-bottom: 18px; }
.page-banner p { color: var(--muted); font-size: 18px; max-width: 640px; margin: 0 auto; }

/* ----- TWO-COL (left/right with text + image) ----- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col .text-col h2 { margin-bottom: 18px; }
.two-col .text-col p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }
.two-col .visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.45s var(--easing), border-color 0.45s var(--easing);
}
.two-col .visual:hover { border-color: rgba(0, 0, 0, 0.18); box-shadow: var(--shadow-sm); }
.two-col .visual svg { width: 60%; max-width: 320px; height: auto; color: var(--accent); opacity: 0.7; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ----- TIMELINE ----- */
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
  opacity: 0.3;
}
.tl-item { position: relative; padding-left: 64px; margin-bottom: 28px; transition: transform 0.4s var(--easing); }
.tl-item:hover { transform: translateX(4px); }
.tl-item::before {
  content: '';
  position: absolute;
  left: 16px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.4s var(--easing);
}
.tl-item .tl-year { color: var(--accent-2); font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 1px; margin-bottom: 4px; }
.tl-item h3 { margin-bottom: 6px; }
.tl-item p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   PUBLIC SITE — FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: var(--gradient);
  filter: blur(120px);
  opacity: 0.04;
  pointer-events: none;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 18px 0 24px; max-width: 320px; }
.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 14px; transition: color 0.3s var(--easing); }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background 0.3s var(--easing), color 0.3s var(--easing), transform 0.3s var(--easing), border-color 0.3s var(--easing);
}
.footer-social a:hover { background: var(--accent); color: #ffffff; border-color: var(--accent); transform: translateY(-3px); }
.footer-bottom {
  position: relative; z-index: 1;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted-2);
  font-size: 13px;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand p { margin: 18px auto 24px; }
  .footer-social { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
}
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  position: relative;
  overflow: hidden;
}
.auth-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(0, 0, 0, 0.03), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(0, 0, 0, 0.02), transparent 60%);
  z-index: 0;
}
.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.5s var(--easing);
}
.auth-card:hover { box-shadow: 0 24px 70px rgba(0, 0, 0, 0.09); }
.auth-card .brand { margin-bottom: 24px; }
.auth-card h1 { font-size: 26px; margin-bottom: 8px; }
.auth-card .subtitle { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.auth-card .form-foot { margin-top: 22px; text-align: center; color: var(--muted); font-size: 13.5px; }
.auth-card .form-foot a { color: var(--accent); font-weight: 600; }
.auth-card .alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 18px; font-size: 13.5px; }
.auth-card .alert.error { background: rgba(212, 4, 4, 0.06); border: 1px solid rgba(212, 4, 4, 0.2); color: var(--danger); }
.auth-card .alert.success { background: rgba(10, 126, 62, 0.06); border: 1px solid rgba(10, 126, 62, 0.2); color: var(--success); }
.pw-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: transparent; border: 0; color: var(--muted); cursor: pointer; padding: 4px; transition: color 0.3s var(--easing); }
.pw-toggle:hover { color: var(--text); }

/* ============================================================
   DASHBOARD (user) + ADMIN SHELL (shared)
   ============================================================ */
.app-shell {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
  transition: background 0.5s var(--easing);
}

.sidebar {
  width: var(--sidebar-w);
  height: 100vh;
  position: fixed;
  top: 0; left: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: calc(20px + env(safe-area-inset-top, 0px)) 14px 20px;
  z-index: 50;
  overflow-y: auto;
  transition: left 0.45s var(--easing), box-shadow 0.45s var(--easing);
}
.sidebar .brand { padding: 4px 8px 20px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.sidebar-label { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; color: var(--muted-2); text-transform: uppercase; padding: 12px 10px 6px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.25s var(--easing), color 0.25s var(--easing);
  white-space: nowrap;
}
.sidebar-nav a:hover { background: rgba(0, 0, 0, 0.04); color: var(--text); }
.sidebar-nav a.active { background: rgba(0, 0, 0, 0.06); color: var(--accent); font-weight: 600; }
.sidebar-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-nav a.logout { color: var(--danger); margin-top: 28px; margin-bottom: 24px; }
.sidebar-nav a.logout:hover { background: rgba(212, 4, 4, 0.06); }

.app-main { margin-left: var(--sidebar-w); flex: 1; min-width: 0; }

.app-topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 40;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 18px 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.app-topbar .menu-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--easing), border-color 0.3s var(--easing);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 45;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: opacity 0.4s var(--easing);
}
.sidebar-overlay.open { display: block; }

.app-content { padding: 28px 32px 48px; }

.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.page-head h1 { font-size: 24px; font-weight: 800; letter-spacing: -0.4px; }
.page-head p { color: var(--muted); font-size: 14px; margin-top: 4px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-bottom: 24px; }
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing), border-color 0.4s var(--easing);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--border-2); }
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--easing);
}
.stat-card:hover .stat-icon { transform: scale(1.08); }
.stat-icon.s-blue   { background: rgba(26, 92, 200, 0.08); color: var(--info); }
.stat-icon.s-orange { background: rgba(224, 123, 0, 0.08); color: var(--warning); }
.stat-icon.s-green  { background: rgba(10, 126, 62, 0.08); color: var(--success); }
.stat-icon.s-red    { background: rgba(212, 4, 4, 0.08); color: var(--danger); }
.stat-icon.s-accent { background: rgba(0, 0, 0, 0.06); color: var(--accent); }
.stat-text small { display: block; color: var(--muted); font-size: 12px; font-weight: 500; }
.stat-text .v { font-family: var(--font-display); font-size: 24px; font-weight: 800; line-height: 1.1; }

.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.panel-head h2 { font-size: 16px; font-weight: 700; }

table.data {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
table.data th, table.data td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); }
table.data th { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
table.data tr:last-child td { border-bottom: 0; }
table.data tr:hover td { background: rgba(0, 0, 0, 0.015); transition: background 0.3s var(--easing); }

@media (max-width: 900px) {
  .sidebar { left: -100%; }
  .sidebar.open { left: 0; box-shadow: 4px 0 30px rgba(0,0,0,0.08); }
  .app-main { margin-left: 0; }
  .app-topbar { display: flex; }
}

/* ====================================================/* ==========================================
   SPOTLIGHT 3D COVERFLOW CAROUSEL (ULTRA SMOOTH)
========================================== */
.spotlight-carousel-wrapper {
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.spotlight-track {
  transform-style: preserve-3d;
}

.spotlight-card {
  user-select: none;
  transform-origin: center center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  will-change: transform, opacity, filter, box-shadow;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-card.active {
  transform: translateX(0) translateZ(120px) scale(1.16);
  z-index: 20;
  opacity: 1;
  box-shadow: 0 32px 80px rgba(37, 99, 235, 0.25);
}

.spotlight-card.active img {
  filter: grayscale(0%) brightness(108%);
}

.spotlight-card.prev-1 {
  transform: translateX(-175px) translateZ(-40px) rotateY(16deg) scale(0.88);
  z-index: 10;
  opacity: 0.75;
  filter: grayscale(50%);
}

.spotlight-card.next-1 {
  transform: translateX(175px) translateZ(-40px) rotateY(-16deg) scale(0.88);
  z-index: 10;
  opacity: 0.75;
  filter: grayscale(50%);
}

.spotlight-card.prev-2 {
  transform: translateX(-300px) translateZ(-140px) rotateY(28deg) scale(0.72);
  z-index: 5;
  opacity: 0.4;
  filter: grayscale(75%);
}

.spotlight-card.next-2 {
  transform: translateX(300px) translateZ(-140px) rotateY(-28deg) scale(0.72);
  z-index: 5;
  opacity: 0.4;
  filter: grayscale(75%);
}

.spotlight-card.hidden-card {
  transform: translateX(0) translateZ(-350px) scale(0.45);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.pulse { animation: pulse 2.8s var(--easing) infinite; }

/* Decorative blob used in hero */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.6s var(--easing);
}
.blob-1 { width: 380px; height: 380px; background: rgba(0, 0, 0, 0.06); opacity: 0.5; top: -120px; left: -120px; }
.blob-2 { width: 320px; height: 320px; background: rgba(0, 0, 0, 0.04); opacity: 0.4; bottom: -80px; right: -80px; }

/* ============================================================
   MOBILE RESPONSIVENESS PATCHES
   ============================================================ */
@media (max-width: 900px) {
  .app-shell {
    flex-direction: column !important;
  }
}

@media (max-width: 600px) {
  /* brand name removed */
}

@media (max-width: 400px) {
  .site-actions {
    gap: 6px !important;
  }
  .site-actions .btn {
    padding: 6px 8px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 768px) {
  .app-content {
    padding: 16px 12px 32px !important;
  }
  
  .page-head {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  
  .page-head div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .panel {
    padding: 16px !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 10px !important;
  }
  
  .stat-card {
    padding: 12px 14px !important;
    gap: 10px !important;
  }
  
  .stat-text .v {
    font-size: 20px !important;
  }

  .btn-wrap {
    flex-direction: column;
    width: 100%;
  }
  .btn-wrap .btn {
    width: 100%;
  }

  table.data {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .field {
    margin-bottom: 16px !important;
  }
  
  .auth-card {
    padding: 24px 18px !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 480px) {
  .stat-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ----- MONOCHROME COVERAGE SECTION ----- */
.coverage-section-pink {
  padding: 90px 0 80px;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.coverage-dots {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 550px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.12) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}
.coverage-dots-left  { left: -80px; }
.coverage-dots-right { right: -80px; }

.coverage-side-wave {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 520px;
  width: 250px;
  pointer-events: none;
  z-index: 1;
}
.coverage-side-wave.left-wave  { left: 0; }
.coverage-side-wave.right-wave { right: 0; }

.pink-coverage-top {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.pink-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 6px 22px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.03);
  transition: border-color 0.4s var(--easing), background 0.4s var(--easing);
}

.pink-coverage-top h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 18px;
}

.pink-gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pink-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 auto;
}

.pink-coverage-box {
  position: relative;
  background: var(--surface);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  min-height: 480px;
  padding: 48px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
  transition: border-color 0.5s var(--easing), box-shadow 0.5s var(--easing);
}
.pink-coverage-box:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
}

.pink-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pink-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 3;
}
.pink-col-right {
  align-items: flex-end;
}

.pnode {
  background: var(--surface);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 10px 24px 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--easing);
  width: fit-content;
  cursor: default;
}
.pnode:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.25);
  transform: scale(1.04);
}

.pnode-icon-bg {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pnode-icon-bg img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.pnode-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.pnode-text sup {
  font-size: 10px;
  opacity: 0.7;
}

.pnode-vevo {
  padding: 14px 32px;
}
.vevo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  text-transform: lowercase;
  font-family: var(--font-display);
  line-height: 1;
}

.pink-hub-container {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.pink-hub-outer-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.04) 50%, transparent 75%);
  animation: mono-pulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes mono-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.5; }
}

.pink-hub-circle {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 90px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.15), 0 0 70px rgba(0, 0, 0, 0.08);
}

.pink-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ps-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 22px;
  transition: all 0.4s var(--easing);
}
.ps-item:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.ps-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.03);
  transition: background 0.4s var(--easing), border-color 0.4s var(--easing);
}
.ps-icon svg {
  width: 22px;
  height: 22px;
  transition: transform 0.4s var(--easing);
}
.ps-item:hover .ps-icon svg { transform: scale(1.1); }

.ps-text {
  display: flex;
  flex-direction: column;
}

.ps-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.5px;
}

.ps-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .pink-coverage-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px;
  }
  .pink-lines-svg, .coverage-dots, .coverage-side-wave { display: none; }
  .pink-col { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .pink-col-right { align-items: center; }
  .pink-stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .pink-stats-bar { grid-template-columns: 1fr; }
}


/* Decorative wave SVGs */
.deco-wave {
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.deco-wave-left  { left: 0;  width: 160px; }
.deco-wave-right { right: 0; width: 160px; }

.coverage-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.coverage-top {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.coverage-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.03);
}

.coverage-top h2 {
  margin-bottom: 16px;
}

.coverage-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.coverage-box {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  align-items: center;
  min-height: 440px;
  padding: 44px 56px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.03);
  transition: border-color 0.5s var(--easing), box-shadow 0.5s var(--easing);
}
.coverage-box:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.05);
}

.coverage-box::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.01) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.coverage-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.coverage-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.coverage-col-right {
  align-items: flex-end;
}

.platform-node {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  transition: border-color 0.35s var(--easing), box-shadow 0.35s var(--easing), transform 0.35s var(--easing);
  width: fit-content;
  cursor: default;
}
.platform-node:hover {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateX(-4px);
}
.coverage-col-right .platform-node:hover {
  transform: translateX(4px);
}

.pnode-right {
  flex-direction: row-reverse;
  padding: 10px 10px 10px 18px;
}

.pnode-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.pnode-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.platform-node span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.platform-node sup {
  font-size: 9px;
  opacity: 0.6;
}

.coverage-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.hub-bg-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.03) 50%, transparent 75%);
  animation: hub-glow-mono 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes hub-glow-mono {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.5; }
}

.hub-ring {
  position: absolute;
  border-radius: 50%;
  animation: hub-pulse-mono 3s ease-in-out infinite;
  z-index: 1;
}

.hub-r1 { width: 96px;  height: 96px;  animation-delay: 0s;    border: 1.5px solid rgba(0,0,0,0.2); }
.hub-r2 { width: 136px; height: 136px; animation-delay: 0.7s;  border: 1px   solid rgba(0,0,0,0.1); }
.hub-r3 { width: 176px; height: 176px; animation-delay: 1.4s;  border: 1px   solid rgba(0,0,0,0.06); }

@keyframes hub-pulse-mono {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(1.05); }
}

.hub-core {
  position: relative;
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12), 0 0 60px rgba(0, 0, 0, 0.06), 0 0 0 4px rgba(0, 0, 0, 0.04);
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cs-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  transition: border-color 0.3s var(--easing), box-shadow 0.3s var(--easing), transform 0.3s var(--easing);
}
.cs-item:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.cs-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-2);
}

.cs-icon svg {
  width: 20px;
  height: 20px;
}

.cs-text {
  display: flex;
  flex-direction: column;
}

.cs-text strong {
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cs-text span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .coverage-box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
    min-height: auto;
  }
  .coverage-svg { display: none; }
  .coverage-col, .coverage-col-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .pnode-right { flex-direction: row; padding: 10px 18px 10px 10px; }
  .coverage-hub { margin: 0; }
  .coverage-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .coverage-stats { grid-template-columns: 1fr; }
  .coverage-col { flex-direction: column; }
  .platform-node { width: 100%; }
}

/* ----- PRICING SECTION ----- */
.pricing-section {
  padding: 96px 0 80px;
  position: relative;
  background: var(--bg);
}

.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-display);
  margin-bottom: 14px;
}
.pricing-pill span {
  color: var(--accent-2);
}

.pricing-header h2 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.pricing-header .highlight-purple {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
}
.pricing-subtitle .highlight-cyan {
  color: var(--accent-2);
  font-weight: 600;
}

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

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.pricing-card.is-popular {
  border-color: rgba(0, 0, 0, 0.22);
  background: var(--surface-2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(0, 0, 0, 0.01);
}
.pricing-card.is-popular:hover {
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08), 0 20px 40px rgba(0, 0, 0, 0.07);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 28px;
  background: var(--accent);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  line-height: 1.2;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.plan-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--easing);
}
.pricing-card:hover .plan-icon { transform: scale(1.06); }
.plan-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.plan-icon.starter {
  background: rgba(0, 0, 0, 0.04);
  color: var(--accent-2);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.plan-icon.pro {
  background: rgba(0, 0, 0, 0.08);
  color: var(--accent);
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.plan-icon.premium {
  background: rgba(0, 0, 0, 0.04);
  color: var(--accent-3);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.plan-title-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.plan-title-box .starter-title { color: var(--accent-2); }
.plan-title-box .pro-title     { color: var(--accent); }
.plan-title-box .premium-title { color: var(--accent-3); }

.plan-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.plan-price-box {
  margin-bottom: 20px;
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  font-family: var(--font-display);
}
.plan-price span.period {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
}

.plan-tagline {
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}
.plan-tagline.starter-tag { color: var(--muted-2); }
.plan-tagline.pro-tag     { color: var(--accent-2); }
.plan-tagline.premium-tag { color: var(--muted-2); }

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0 24px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.4;
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.4s var(--easing);
}
.pricing-card:hover .feature-check { transform: scale(1.08); }
.feature-check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.feature-check.starter {
  background: rgba(0, 0, 0, 0.05);
  color: var(--accent-2);
}
.feature-check.pro {
  background: rgba(0, 0, 0, 0.08);
  color: var(--accent);
}
.feature-check.premium {
  background: rgba(0, 0, 0, 0.05);
  color: var(--accent-3);
}

.plan-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: all 0.35s var(--easing);
  display: inline-block;
  cursor: pointer;
}

.btn-starter-plan {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--accent-2);
}
.btn-starter-plan:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.35);
  color: var(--text);
}

.btn-pro-plan {
  background: var(--accent);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.btn-pro-plan:hover {
  background: var(--accent-3);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  color: #ffffff;
}

.btn-premium-plan {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--accent-3);
}
.btn-premium-plan:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.35);
  color: var(--text);
}

.plan-btn.btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  letter-spacing: 0.5px;
}

/* Bottom Trust Bar */
.pricing-trust-card {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: border-color 0.4s var(--easing);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.4s var(--easing), border-color 0.4s var(--easing);
}
.trust-item:hover .trust-icon-wrap { border-color: rgba(0, 0, 0, 0.2); }
.trust-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.trust-text {
  display: flex;
  flex-direction: column;
}
.trust-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.trust-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.2;
}

.trust-footer-note {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.2px;
  text-align: center;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.is-popular {
    transform: none;
  }
  .pricing-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pricing-trust-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pricing-trust-card {
    padding: 24px 20px;
  }
}


/* ----- REDESIGNED INDEX LANDING PAGE STYLES ----- */
.hero-v2 {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(30, 80, 255, 0.06) 0%, transparent 60%),
              radial-gradient(circle at 85% 60%, rgba(130, 0, 255, 0.05) 0%, transparent 50%);
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}

.badge-pill-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
}

.badge-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 2s infinite ease-in-out;
}

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

.hero-headline-v2 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-headline-gradient {
  background: linear-gradient(135deg, #0b142b 0%, #2563eb 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc-v2 {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 36px;
}

@media (max-width: 1024px) {
  .hero-desc-v2 {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .hero-actions-v2 {
    justify-content: center;
  }
}

.btn-v2-glow {
  background: #000000;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-v2-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  color: #ffffff;
}

.btn-v2-glass {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text);
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-v2-glass:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* Floating Mockup Card */
.hero-mockup-container {
  position: relative;
  perspective: 1000px;
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: transform 0.5s ease;
}

.hero-glass-card:hover {
  transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
}

.track-preview-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.track-cover-art {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* Continuous Infinite Marquee Strip */
.marquee-strip-v2 {
  padding: 36px 0;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.marquee-content-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: grayscale(40%);
}

.marquee-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.marquee-item img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.marquee-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* Feature Cards Redesign */
.feature-card-v2 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #000000 0%, #3b82f6 50%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

.feature-card-v2:hover::before {
  opacity: 1;
}

.feature-icon-v2 {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card-v2:hover .feature-icon-v2 {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

/* How It Works Steps */
.steps-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

@media (max-width: 900px) {
  .steps-v2-grid {
    grid-template-columns: 1fr;
  }
}

.step-card-v2 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
}

.step-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 0, 0, 0.2);
}

.step-number-pill {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #000000;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* -------------------------------------------------------------------------
   PERMANENTLY SUPPRESS FLOATING LIVE CHAT WIDGETS
   ------------------------------------------------------------------------- */
.crisp-client,
#crisp-chatbox,
.crisp-1e3l9k1,
.crisp-k45z6p,
[id^="crisp-"],
[class*="crisp-"],
.tawk-min-container,
#tawk-bubble-container,
#chat-widget-container,
#tidio-chat,
#tidio-chat-iframe,
.chatra--live-chat,
.intercom-lightweight-app,
.intercom-launcher,
.zEWidget-launcher,
#chat-button,
.floating-chat,
.live-chat-btn,
.chat-bubble,
.chat-widget-float {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 0 !important;
  height: 0 !important;
}

