/* ============================================================
   STUDIO HURAIRA — DESIGN SYSTEM
   Single source of truth for the public site, dashboard, and admin.
   ============================================================ */

/* ----- TOKENS ----- */
:root {
  --bg:           #07070B;
  --bg-2:         #0B0B14;
  --surface:      #0F0F17;
  --surface-2:    #161622;
  --surface-3:    #1E1E2C;
  --border:       rgba(255, 255, 255, 0.07);
  --border-2:     rgba(255, 255, 255, 0.12);
  --text:         #F5F5F7;
  --text-2:       #D7D7E0;
  --muted:        #9A9AAE;
  --muted-2:      #6B6B7E;
  --accent:       #B7FF1C;
  --accent-2:     #00E0FF;
  --accent-3:     #7AFFB7;
  --gradient:     linear-gradient(135deg, #B7FF1C 0%, #00E0FF 100%);
  --gradient-2:   linear-gradient(135deg, #B7FF1C 0%, #7AFFB7 100%);
  --danger:       #FF5470;
  --warning:      #FFB020;
  --success:      #25E08A;
  --info:         #5BB3FF;
  --radius:       14px;
  --radius-sm:    10px;
  --radius-lg:    22px;
  --shadow:       0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-sm:    0 8px 24px rgba(0, 0, 0, 0.25);
  --sidebar-w:    256px;
  --header-h:     72px;
  --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;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s; }
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);
}

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: var(--bg); }

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

/* ----- 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);
  padding: 6px 14px;
  border: 1px solid rgba(183, 255, 28, 0.25);
  background: rgba(183, 255, 28, 0.06);
  border-radius: 99px;
  margin-bottom: 16px;
}

.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.2s var(--easing), box-shadow 0.2s var(--easing), background 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #0A0A0A;
  box-shadow: 0 6px 20px rgba(183, 255, 28, 0.25);
}
.btn-primary:hover {
  background: #C4FF45;
  color: #0A0A0A;
  box-shadow: 0 10px 30px rgba(183, 255, 28, 0.35);
}

.btn-gradient {
  background: var(--gradient);
  color: #0A0A0A;
  box-shadow: 0 6px 20px rgba(0, 224, 255, 0.25);
}
.btn-gradient:hover { color: #0A0A0A; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); 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-success { background: var(--success); color: #06140E; }

/* ----- CARDS ----- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s var(--easing), border-color 0.3s, box-shadow 0.3s;
}
.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(183, 255, 28, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  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;
}
.badge-accent { background: rgba(183, 255, 28, 0.1); color: var(--accent); border: 1px solid rgba(183, 255, 28, 0.2); }
.badge-info { background: rgba(91, 179, 255, 0.1); color: var(--info); border: 1px solid rgba(91, 179, 255, 0.2); }
.badge-success { background: rgba(37, 224, 138, 0.1); color: var(--success); border: 1px solid rgba(37, 224, 138, 0.2); }
.badge-warning { background: rgba(255, 176, 32, 0.1); color: var(--warning); border: 1px solid rgba(255, 176, 32, 0.2); }
.badge-danger { background: rgba(255, 84, 112, 0.1); color: var(--danger); border: 1px solid rgba(255, 84, 112, 0.2); }
.badge-muted { background: rgba(255, 255, 255, 0.05); 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(255, 255, 255, 0.03);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14.5px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  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(183, 255, 28, 0.15);
  background: rgba(255, 255, 255, 0.05);
}
.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='%239A9AAE' 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-2);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 500;
  max-width: 360px;
  animation: slideIn 0.3s var(--easing);
}
.flash.success { border-color: rgba(37, 224, 138, 0.4); color: var(--success); }
.flash.error { border-color: rgba(255, 84, 112, 0.4); color: var(--danger); }
.flash.info { border-color: rgba(91, 179, 255, 0.4); 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(7, 7, 11, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
  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(7, 7, 11, 0.92);
}
.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: 10px;
  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;
}
.brand-mark {
  width: 36px; height: 36px;
  background-color: var(--accent);
  -webkit-mask-image: url("../../uploader/uploads/1784057558_1778945570_0000.png");
  mask-image: url("../../uploader/uploads/1784057558_1778945570_0000.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  border-radius: 50%;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(183, 255, 28, 0.25);
}
.brand-name { color: var(--text); }
.brand-name span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* On very small screens keep the S mark, hide the text label */
@media (max-width: 420px) {
  .brand-name { display: none; }
}

.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.2s, background 0.2s;
}
.site-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.site-nav a.active { color: var(--accent); }

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

/* On mobile, shrink action buttons so brand + Login + Get Started + ☰ all fit */
@media (max-width: 480px) {
  .site-actions .btn {
    padding: 7px 11px;
    font-size: 12px;
  }
  .site-actions .btn-ghost {
    /* Keep Login visible but ultra-compact */
    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;
}

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 2px;
    transform: translateY(-110%);
    transition: transform 0.3s var(--easing), opacity 0.3s, visibility 0.3s;
    z-index: 99;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    /* Reset nav from desktop flex centering */
    flex: unset;
    justify-content: flex-start;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
  }
  .site-nav a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .auth-mobile-only { display: block !important; }
  .nav-toggle { display: inline-flex; }
}

/* auth-mobile-only hidden on desktop */
.auth-mobile-only { display: none; }


/* ============================================================
   PUBLIC SITE — HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(183, 255, 28, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 82% 70%, rgba(0, 224, 255, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 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.6;
}
.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.55; filter: grayscale(1) brightness(1.2); transition: opacity 0.25s, filter 0.25s, transform 0.25s; }
.platform-strip img:hover { opacity: 1; filter: none; 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: 64px;
  padding-right: 64px;
}
.platform-group img {
  height: 36px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s;
  cursor: pointer;
}
.platform-group img:hover,
.platform-group img:active,
.platform-group img.active-color {
  opacity: 1;
  transform: translateY(-2px);
}
.platform-group span {
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
  opacity: 0.6;
  transition: opacity 0.25s, transform 0.25s;
}
.platform-group span:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@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.3s var(--easing), border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(183, 255, 28, 0.4); box-shadow: 0 20px 50px rgba(183, 255, 28, 0.08); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(183, 255, 28, 0.1);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}
.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.3s var(--easing), border-color 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(183, 255, 28, 0.14), rgba(0, 224, 255, 0.14));
  border: 1px solid rgba(183, 255, 28, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
  font-size: 22px;
}
.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: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 16px; }
.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.3s var(--easing), border-color 0.3s, box-shadow 0.3s;
}
.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:
    linear-gradient(135deg, rgba(183, 255, 28, 0.08), rgba(0, 224, 255, 0.08)),
    var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 32px;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  filter: blur(60px);
  opacity: 0.18;
  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.2s;
}
.faq-item.open { border-color: var(--border-2); }
.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;
}
.faq-q .chev { transition: transform 0.3s 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.3s 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;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(183, 255, 28, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(0, 224, 255, 0.05), 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:
    linear-gradient(135deg, rgba(183, 255, 28, 0.12), rgba(0, 224, 255, 0.12)),
    var(--surface);
  border: 1px solid var(--border-2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.two-col .visual svg { width: 60%; max-width: 320px; height: auto; color: var(--accent); opacity: 0.85; }
@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.4;
}
.tl-item { position: relative; padding-left: 64px; margin-bottom: 28px; }
.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(183, 255, 28, 0.15);
}
.tl-item .tl-year { color: var(--accent); 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.12;
  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; }
.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.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--accent); color: #0A0A0A; 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(183, 255, 28, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(0, 224, 255, 0.06), transparent 60%);
  z-index: 0;
}
.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: rgba(15, 15, 23, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.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(255, 84, 112, 0.08); border: 1px solid rgba(255, 84, 112, 0.25); color: var(--danger); }
.auth-card .alert.success { background: rgba(37, 224, 138, 0.08); border: 1px solid rgba(37, 224, 138, 0.25); 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; }
.pw-toggle:hover { color: var(--text); }

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

.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.3s 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.18s, color 0.18s;
  white-space: nowrap;
}
.sidebar-nav a:hover { background: rgba(255, 255, 255, 0.04); color: var(--text); }
.sidebar-nav a.active { background: rgba(183, 255, 28, 0.10); 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(255, 84, 112, 0.08); }

.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;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 45;
  backdrop-filter: blur(2px);
}
.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.2s, box-shadow 0.2s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon.s-blue   { background: rgba(91, 179, 255, 0.14); color: var(--info); }
.stat-icon.s-orange { background: rgba(255, 176, 32, 0.14); color: var(--warning); }
.stat-icon.s-green  { background: rgba(37, 224, 138, 0.14); color: var(--success); }
.stat-icon.s-red    { background: rgba(255, 84, 112, 0.14); color: var(--danger); }
.stat-icon.s-accent { background: rgba(183, 255, 28, 0.14); 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(255, 255, 255, 0.02); }

@media (max-width: 900px) {
  .sidebar { left: -100%; }
  .sidebar.open { left: 0; }
  .app-main { margin-left: 0; }
  .app-topbar { display: flex; }
}

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

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

/* Decorative blob used in hero */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 380px; height: 380px; background: var(--accent); opacity: 0.12; top: -120px; left: -120px; }
.blob-2 { width: 320px; height: 320px; background: var(--accent-2); opacity: 0.10; bottom: -80px; right: -80px; }

/* ============================================================
   MOBILE RESPONSIVENESS PATCHES (Global Fixes)
   ============================================================ */
@media (max-width: 900px) {
  /* Stack the header on top and the content below */
  .app-shell {
    flex-direction: column !important;
  }
}

@media (max-width: 600px) {
  /* Hide the brand text on mobile so buttons fit side-by-side */
  .brand-name {
    display: none !important;
  }
}

@media (max-width: 400px) {
  /* Shrink padding and gap on narrow mobile screens */
  .site-actions {
    gap: 6px !important;
  }
  .site-actions .btn {
    padding: 6px 8px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 768px) {
  /* Reduce outer padding of the app shell to give content more room */
  .app-content {
    padding: 16px 12px 32px !important;
  }
  
  /* Stack headers vertically */
  .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;
  }

  /* Force panels containing tables/wide content to scroll horizontally instead of stretching the viewport */
  .panel {
    padding: 16px !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Adjust stat grid column counts to prevent squeeze */
  .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;
  }

  /* Adjust button layouts */
  .btn-wrap {
    flex-direction: column;
    width: 100%;
  }
  .btn-wrap .btn {
    width: 100%;
  }

  /* Prevent data tables from breaking layouts by enforcing table wrapper behavior */
  table.data {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  /* Ensure form layouts stand out properly */
  .field {
    margin-bottom: 16px !important;
  }
  
  /* Auth card padding reduction */
  .auth-card {
    padding: 24px 18px !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 480px) {
  /* On very small devices, force stat grid to single column */
  .stat-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ----- PINK NEON COVERAGE SECTION (EXACT REPLICA DESIGN) ----- */
.coverage-section-pink {
  padding: 90px 0 80px;
  position: relative;
  background: #06030a;
  overflow: hidden;
}

/* Side Dotted Mesh */
.coverage-dots {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 550px;
  background-image: radial-gradient(rgba(255, 42, 117, 0.3) 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; }

/* Side Glowing Wave Lines */
.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: #ffffff;
  border: 1.5px solid #ff2a75;
  border-radius: 999px;
  padding: 6px 22px;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(255, 42, 117, 0.3);
  background: rgba(255, 42, 117, 0.08);
}

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

.pink-gradient-text {
  background: linear-gradient(135deg, #ff2a75 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pink-desc {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.75;
  margin: 0 auto;
}

/* Container Box */
.pink-coverage-box {
  position: relative;
  background: rgba(12, 7, 18, 0.95);
  border: 1.5px solid #ff2a75;
  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 50px rgba(255, 42, 117, 0.25), inset 0 0 50px rgba(255, 42, 117, 0.05);
}

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

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

/* Platform Nodes (Pills) */
.pnode {
  background: rgba(18, 11, 26, 0.95);
  border: 1.5px solid #ff2a75;
  border-radius: 999px;
  padding: 10px 24px 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 0 18px rgba(255, 42, 117, 0.2);
  transition: all 0.3s ease;
  width: fit-content;
  cursor: default;
}
.pnode:hover {
  box-shadow: 0 0 30px rgba(255, 42, 117, 0.5);
  border-color: #ff5595;
  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: #ffffff;
  white-space: nowrap;
}
.pnode-text sup {
  font-size: 10px;
  opacity: 0.7;
}

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

/* Central Hub Logo Circle */
.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(255, 42, 117, 0.6) 0%, rgba(255, 42, 117, 0.15) 50%, transparent 75%);
  animation: pink-pulse 3s ease-in-out infinite;
  z-index: 1;
}

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

.pink-hub-circle {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px #ff2a75, 0 0 70px rgba(255, 42, 117, 0.5);
}

/* Bottom Feature Stats Bar */
.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: rgba(14, 8, 20, 0.7);
  border: 1px solid rgba(255, 42, 117, 0.25);
  border-radius: 20px;
  padding: 20px 22px;
  transition: all 0.3s ease;
}
.ps-item:hover {
  border-color: #ff2a75;
  box-shadow: 0 0 20px rgba(255, 42, 117, 0.25);
  transform: translateY(-2px);
}

.ps-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ff2a75;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 42, 117, 0.08);
  box-shadow: 0 0 12px rgba(255, 42, 117, 0.3);
}
.ps-icon svg {
  width: 22px;
  height: 22px;
}

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

.ps-title {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.ps-sub {
  font-size: 12px;
  color: #a1a1aa;
  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 pinned to left/right inside the box */
.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; }

/* Centered pill */
.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);
  border: 1px solid rgba(183, 255, 28, 0.3);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 20px;
  background: rgba(183, 255, 28, 0.06);
}

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

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

/* The dark box with platforms + hub */
.coverage-box {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(183, 255, 28, 0.15);
  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 80px rgba(183, 255, 28, 0.06), 0 0 120px rgba(0, 224, 255, 0.04), inset 0 0 60px rgba(183, 255, 28, 0.02);
}

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

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

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

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

/* Platform node pill */
.platform-node {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(30, 30, 44, 0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  width: fit-content;
  cursor: default;
  backdrop-filter: blur(8px);
}

.platform-node:hover {
  border-color: rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 16px rgba(0, 224, 255, 0.1);
  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: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

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

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

/* Radial glow blob behind hub */
.hub-bg-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,255,28,0.18) 0%, rgba(0,224,255,0.08) 50%, transparent 75%);
  animation: hub-glow-breathe 4s ease-in-out infinite;
  z-index: 0;
}

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

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

.hub-r1 { width: 96px;  height: 96px;  animation-delay: 0s;    border: 1.5px solid rgba(183,255,28,0.5); }
.hub-r2 { width: 136px; height: 136px; animation-delay: 0.7s;  border: 1px   solid rgba(183,255,28,0.22); }
.hub-r3 { width: 176px; height: 176px; animation-delay: 1.4s;  border: 1px   solid rgba(0,224,255,0.12); }

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

.hub-core {
  position: relative;
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(183, 255, 28, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(183, 255, 28, 0.4), 0 0 60px rgba(0, 224, 255, 0.2), 0 0 0 4px rgba(183, 255, 28, 0.1);
}

/* Coverage bottom stats */
.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.2s, box-shadow 0.2s;
}

.cs-item:hover {
  border-color: rgba(183, 255, 28, 0.2);
  box-shadow: 0 4px 20px rgba(183, 255, 28, 0.06);
}

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

.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);
}

.pricing-header h2 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  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.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 255, 28, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(183, 255, 28, 0.08);
}

/* Pro / Popular Card Glow */
.pricing-card.is-popular {
  border-color: rgba(183, 255, 28, 0.4);
  background: var(--surface-2);
  box-shadow: 0 0 40px rgba(183, 255, 28, 0.1), inset 0 0 30px rgba(183, 255, 28, 0.03);
}
.pricing-card.is-popular:hover {
  border-color: rgba(183, 255, 28, 0.7);
  box-shadow: 0 0 50px rgba(183, 255, 28, 0.2), 0 20px 40px rgba(0, 0, 0, 0.5);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 28px;
  background: var(--gradient);
  color: var(--bg);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(183, 255, 28, 0.35);
  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;
}
.plan-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Starter = cyan */
.plan-icon.starter {
  background: rgba(0, 224, 255, 0.1);
  color: var(--accent-2);
  border: 1px solid rgba(0, 224, 255, 0.25);
}
/* Pro = lime green */
.plan-icon.pro {
  background: rgba(183, 255, 28, 0.12);
  color: var(--accent);
  border: 1px solid rgba(183, 255, 28, 0.3);
}
/* Premium = mint green */
.plan-icon.premium {
  background: rgba(122, 255, 183, 0.1);
  color: var(--accent-3);
  border: 1px solid rgba(122, 255, 183, 0.25);
}

.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: #ffffff;
  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(--accent-2); }
.plan-tagline.pro-tag     { color: var(--accent); }
.plan-tagline.premium-tag { color: var(--accent-3); }

.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;
}
.feature-check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.feature-check.starter {
  background: rgba(0, 224, 255, 0.15);
  color: var(--accent-2);
}
.feature-check.pro {
  background: rgba(183, 255, 28, 0.15);
  color: var(--accent);
}
.feature-check.premium {
  background: rgba(122, 255, 183, 0.15);
  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.2s ease;
  display: inline-block;
  cursor: pointer;
}

/* Starter = cyan outline */
.btn-starter-plan {
  background: transparent;
  border: 1px solid rgba(0, 224, 255, 0.4);
  color: var(--accent-2);
}
.btn-starter-plan:hover {
  background: rgba(0, 224, 255, 0.1);
  border-color: var(--accent-2);
  color: #ffffff;
}

/* Pro = solid gradient */
.btn-pro-plan {
  background: var(--gradient);
  color: var(--bg);
  border: none;
  box-shadow: 0 4px 20px rgba(183, 255, 28, 0.3);
}
.btn-pro-plan:hover {
  background: var(--gradient-2);
  box-shadow: 0 6px 28px rgba(183, 255, 28, 0.5);
  color: var(--bg);
}

/* Premium = mint outline */
.btn-premium-plan {
  background: transparent;
  border: 1px solid rgba(122, 255, 183, 0.4);
  color: var(--accent-3);
}
.btn-premium-plan:hover {
  background: rgba(122, 255, 183, 0.1);
  border-color: var(--accent-3);
  color: #ffffff;
}

.plan-btn.btn-disabled {
  opacity: 0.85;
  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;
}

.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(183, 255, 28, 0.06);
  border: 1px solid rgba(183, 255, 28, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.trust-text {
  display: flex;
  flex-direction: column;
}
.trust-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  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;
  }
}


/* ----- CONTACT GRID ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
