/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #09090b;
  color: #e4e4e7;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all .2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,.4);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(99,102,241,.5); }
.btn-ghost { background: transparent; color: #a1a1aa; }
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,.06); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.15);
  color: #e4e4e7;
}
.btn-outline:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-white {
  background: #fff;
  color: #09090b;
}
.btn-white:hover { background: #f4f4f5; transform: translateY(-1px); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(9,9,11,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.logo-icon { font-size: 22px; color: #8b5cf6; }
.logo-accent { color: #8b5cf6; }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: #a1a1aa;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-cta { display: flex; gap: 10px; flex-shrink: 0; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #a1a1aa; border-radius: 2px; transition: .3s; }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  background: rgba(9,9,11,.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #a1a1aa;
  font-size: 15px;
}
.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-mobile .btn { margin-top: 8px; justify-content: center; }

/* ─── HERO ─── */
.hero {
  position: relative;
  padding-top: 100px;
  overflow: hidden;
  min-height: 100vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero .orb-1 { width: 600px; height: 600px; background: #6366f1; top: -200px; left: 50%; transform: translateX(-60%); }
.hero .orb-2 { width: 400px; height: 400px; background: #ec4899; top: 100px; right: -100px; }
.hero .orb-3 { width: 350px; height: 350px; background: #8b5cf6; bottom: 0; left: -100px; }

.hero-inner {
  position: relative;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.3);
  color: #a5b4fc;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 8px #6366f1;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }

.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: #a1a1aa;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: #71717a;
  font-size: 14px;
}
.proof-avatars {
  display: flex;
}
.proof-avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #09090b;
  margin-left: -8px;
  object-fit: cover;
}
.proof-avatars img:first-child { margin-left: 0; }
.hero-social-proof strong { color: #e4e4e7; }

/* ─── DASHBOARD PREVIEW ─── */
.hero-visual {
  position: relative;
  padding-bottom: 80px;
}
.dashboard-preview {
  background: rgba(24,24,27,.9);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
  max-width: 900px;
  margin: 0 auto;
  animation: floatUp .8s ease both;
}
@keyframes floatUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }

.dp-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dp-dots { display: flex; gap: 6px; }
.dp-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.dp-dots span:nth-child(1) { background: #ef4444; }
.dp-dots span:nth-child(2) { background: #f59e0b; }
.dp-dots span:nth-child(3) { background: #10b981; }
.dp-title { font-size: 12px; color: #52525b; flex: 1; text-align: center; }
.dp-status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #10b981; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: pulse 1.5s infinite; }

.dp-body { display: flex; min-height: 300px; }
.dp-sidebar {
  width: 150px;
  flex-shrink: 0;
  background: rgba(0,0,0,.2);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dp-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: #52525b;
  cursor: pointer;
  transition: .2s;
}
.dp-nav-item.active { background: rgba(99,102,241,.15); color: #a5b4fc; }
.dp-nav-item:hover:not(.active) { background: rgba(255,255,255,.04); color: #a1a1aa; }

.dp-main { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.dp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.dp-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px;
}
.dp-stat-label { font-size: 10px; color: #52525b; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.dp-stat-value { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.dp-stat-change { font-size: 10px; }
.dp-stat-change.up { color: #10b981; }
.dp-stat-change.neutral { color: #71717a; }

.dp-chart-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; flex: 1; }
.dp-chart {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px;
}
.dp-chart-label { font-size: 10px; color: #52525b; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em; }
.dp-bars { display: flex; align-items: flex-end; gap: 4px; height: 80px; }
.dp-bar {
  flex: 1;
  background: rgba(99,102,241,.25);
  border-radius: 4px 4px 0 0;
  height: var(--h);
  position: relative;
  transition: background .2s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.dp-bar.active { background: rgba(99,102,241,.7); }
.dp-bar span { font-size: 8px; color: #52525b; position: absolute; bottom: -14px; }

.dp-events-list {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px;
}
.dp-el-title { font-size: 10px; color: #52525b; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.dp-event-item { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.dp-event-item:last-child { border-bottom: none; }
.dp-ev-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dp-ev-name { font-size: 11px; color: #e4e4e7; margin-bottom: 2px; }
.dp-ev-date { font-size: 10px; color: #52525b; }
.dp-ev-badge {
  margin-left: auto;
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 100px;
  background: #eef2ff;
  color: #6366f1;
  font-weight: 600;
  white-space: nowrap;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(24,24,27,.95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: floatCard 4s ease-in-out infinite;
}
.float-card-1 { bottom: 160px; left: -20px; animation-delay: 0s; }
.float-card-2 { top: 40px; right: -20px; animation-delay: 1.5s; }
.float-card-3 { bottom: 80px; right: 60px; animation-delay: 0.8s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.fc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.fc-title { font-size: 12px; font-weight: 600; color: #fff; }
.fc-sub { font-size: 11px; color: #71717a; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: rgba(24,24,27,.6);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 40px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 0 48px; }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: 13px; color: #52525b; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.08); }

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-dark { background: rgba(0,0,0,.4); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.3);
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-tag.light {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: #71717a;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(24,24,27,.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(99,102,241,.05), transparent 60%);
  pointer-events: none;
}
.feature-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-2px); }

.feature-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
}
.fc-tag {
  display: inline-block;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.3);
  color: #34d399;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.feature-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: #71717a; line-height: 1.7; margin-bottom: 16px; }
.fc-list { display: flex; flex-direction: column; gap: 8px; }
.fc-list li {
  font-size: 13px;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-list li::before { content: '✓'; color: #10b981; font-weight: 700; }

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--c), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

/* Map visual */
.map-visual { display: flex; align-items: center; justify-content: center; }
.map-mock {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 240px;
  background: linear-gradient(135deg, rgba(14,14,20,.9), rgba(24,24,30,.9));
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pin-1 { top: 60px; left: 80px; }
.pin-2 { top: 120px; right: 70px; }
.pin-3 { bottom: 60px; left: 150px; }
.pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 16px currentColor;
  animation: pulse 2s infinite;
  position: relative;
}
.pin-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: .4;
  animation: ripple 2s infinite;
}
@keyframes ripple { 0%{transform:scale(1);opacity:.4} 100%{transform:scale(2);opacity:0} }
.pin-label {
  background: rgba(0,0,0,.7);
  color: #e4e4e7;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}

/* ─── ROLES TABS ─── */
.roles-tab-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.role-tab-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  color: #71717a;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.role-tab-btn.active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(99,102,241,.4);
}
.role-tab-btn:hover:not(.active) { border-color: rgba(255,255,255,.2); color: #e4e4e7; }

.role-panel { display: none; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.role-panel.active { display: grid; animation: fadeIn .4s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

.role-icon { font-size: 40px; margin-bottom: 16px; }
.role-info h3 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.role-info p { font-size: 15px; color: #71717a; line-height: 1.7; margin-bottom: 24px; }
.role-features { display: flex; flex-direction: column; gap: 10px; }
.role-features li {
  font-size: 14px;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  gap: 10px;
}
.role-features li::before { content: '✓'; color: #6366f1; font-weight: 700; width: 16px; flex-shrink: 0; }

/* Screen mocks */
.screen-mock {
  background: rgba(9,9,11,.8);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.sm-header {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Participant screen */
.sm-ticket {
  background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(139,92,246,.1));
  border: 1px solid rgba(99,102,241,.3);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sm-t-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.sm-t-date { font-size: 11px; color: #a1a1aa; margin-bottom: 2px; }
.sm-t-venue { font-size: 11px; color: #71717a; }
.qr-mock {
  width: 48px; height: 48px;
  background: repeating-conic-gradient(rgba(255,255,255,.3) 0% 25%, transparent 0% 50%) 0 0 / 8px 8px;
  border-radius: 4px;
}
.sm-rec-label { font-size: 11px; color: #52525b; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.sm-rec-list { display: flex; flex-direction: column; gap: 8px; }
.sm-rec-item { display: flex; align-items: center; gap: 10px; }
.sm-rec-img { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }
.sm-rec-name { font-size: 12px; color: #e4e4e7; font-weight: 500; }
.sm-rec-date { font-size: 11px; color: #52525b; }

/* Organizer screen */
.wizard-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  font-size: 11px;
}
.ws {
  padding: 6px 10px;
  border-radius: 100px;
  color: #52525b;
  font-weight: 500;
  white-space: nowrap;
}
.ws.active { background: rgba(99,102,241,.2); color: #a5b4fc; border: 1px solid rgba(99,102,241,.3); }
.ws-line { flex: 1; height: 1px; background: rgba(255,255,255,.08); }
.sm-form { display: flex; flex-direction: column; gap: 10px; }
.sf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sf-field { display: flex; flex-direction: column; gap: 4px; }
.sf-label { font-size: 10px; color: #52525b; text-transform: uppercase; letter-spacing: .05em; }
.sf-input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #e4e4e7;
}
.sf-select { cursor: pointer; }
.sm-continue {
  margin-top: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Volunteer screen */
.shift-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.shift-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 10px;
}
.shift-time { font-size: 10px; color: #71717a; width: 70px; flex-shrink: 0; }
.shift-task { font-size: 12px; color: #e4e4e7; font-weight: 500; margin-bottom: 2px; }
.shift-event { font-size: 10px; color: #52525b; }
.shift-badge {
  margin-left: auto;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  color: #71717a;
  font-weight: 600;
}
.active-badge { background: rgba(16,185,129,.15) !important; color: #10b981 !important; }
.cert-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(245,158,11,.1), rgba(251,191,36,.05));
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 12px;
  padding: 12px;
}
.cert-icon { font-size: 24px; }
.cert-title { font-size: 12px; font-weight: 600; color: #fbbf24; }
.cert-sub { font-size: 10px; color: #71717a; }
.cert-btn {
  margin-left: auto;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(245,158,11,.2);
  color: #fbbf24;
  cursor: pointer;
  border: 1px solid rgba(245,158,11,.3);
}

/* Member screen */
.member-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}
.mc-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  flex-shrink: 0;
}
.mc-name { font-size: 12px; font-weight: 600; color: #fff; }
.mc-plan { font-size: 10px; color: #71717a; }
.mc-badge {
  margin-left: auto;
  font-size: 10px;
  color: #10b981;
  background: rgba(16,185,129,.1);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(16,185,129,.2);
}
.me-label { font-size: 10px; color: #52525b; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.me-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.me-item:last-child { border: none; }
.me-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.me-name { font-size: 12px; color: #e4e4e7; flex: 1; }
.me-tag {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(99,102,241,.15);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,.2);
}

/* Admin screen */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.as-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.as-val { font-size: 16px; font-weight: 700; color: #fff; }
.as-label { font-size: 9px; color: #52525b; margin-top: 2px; }
.aq-label { font-size: 10px; color: #52525b; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.aq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  margin-bottom: 6px;
}
.aq-name { font-size: 12px; color: #e4e4e7; }
.aq-actions { display: flex; gap: 6px; }
.aq-btn {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
.aq-btn.approve { background: rgba(16,185,129,.15); color: #10b981; border: 1px solid rgba(16,185,129,.2); }
.aq-btn.reject { background: rgba(239,68,68,.1); color: #ef4444; border: 1px solid rgba(239,68,68,.2); }

/* ─── MODULES GRID ─── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.module-card {
  background: rgba(24,24,27,.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .2s;
}
.module-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.module-card:hover::before { opacity: 1; }
.module-icon { font-size: 28px; margin-bottom: 12px; }
.module-name { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.module-desc { font-size: 13px; color: #71717a; line-height: 1.6; }

/* ─── USP SECTION ─── */
.usp-section { background: transparent; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp-card {
  background: rgba(24,24,27,.5);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all .2s;
}
.usp-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-2px); }
.usp-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  margin-bottom: -20px;
}
.usp-icon { font-size: 32px; margin-bottom: 14px; }
.usp-card h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.usp-card p { font-size: 14px; color: #71717a; line-height: 1.7; }

/* ─── PRICING ─── */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}
.pt-label { font-size: 14px; color: #71717a; cursor: pointer; }
.pt-label.active { color: #fff; }
.pt-switch {
  width: 44px; height: 24px;
  border-radius: 100px;
  background: rgba(99,102,241,.3);
  border: 1px solid rgba(99,102,241,.4);
  cursor: pointer;
  position: relative;
  transition: background .2s;
}
.pt-switch.on { background: rgba(99,102,241,.6); }
.pt-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
}
.pt-switch.on .pt-knob { transform: translateX(20px); }
.pt-save {
  background: rgba(16,185,129,.2);
  color: #10b981;
  font-size: 10px;
  padding: 1px 7px;
  border-radius: 100px;
  border: 1px solid rgba(16,185,129,.3);
  font-weight: 600;
  vertical-align: middle;
  margin-left: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: rgba(24,24,27,.8);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: border-color .2s;
}
.price-card:hover { border-color: rgba(255,255,255,.2); }
.price-card-featured {
  background: linear-gradient(145deg, rgba(99,102,241,.15), rgba(139,92,246,.1));
  border-color: rgba(99,102,241,.4);
  transform: scale(1.03);
}
.price-card-featured:hover { border-color: rgba(99,102,241,.6); }
.pc-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pc-plan { font-size: 13px; font-weight: 600; color: #71717a; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.pc-currency { font-size: 20px; color: #fff; font-weight: 600; }
.pc-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 800; color: #fff; line-height: 1; }
.pc-period { font-size: 14px; color: #71717a; }
.pc-tagline { font-size: 13px; color: #52525b; margin-bottom: 28px; }
.pc-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pc-features li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-features li.yes { color: #a1a1aa; }
.pc-features li.no { color: #3f3f46; text-decoration: line-through; }
.pc-features li.yes::before { content: '✓'; color: #10b981; font-weight: 700; width: 16px; flex-shrink: 0; }
.pc-features li.no::before { content: '✗'; color: #3f3f46; width: 16px; flex-shrink: 0; }
.price-card .btn { width: 100%; justify-content: center; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: rgba(24,24,27,.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px;
  transition: border-color .2s;
}
.testi-card:hover { border-color: rgba(99,102,241,.3); }
.testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; }
.testi-card > p {
  font-size: 14px;
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.ta-name { font-size: 13px; font-weight: 600; color: #fff; }
.ta-role { font-size: 11px; color: #52525b; }

/* ─── CTA ─── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(139,92,246,.1), rgba(236,72,153,.1));
  border-top: 1px solid rgba(99,102,241,.2);
  border-bottom: 1px solid rgba(99,102,241,.2);
  padding: 100px 0;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-bg .orb-1 { width: 500px; height: 500px; background: #6366f1; top: -200px; right: -100px; opacity: .2; }
.cta-bg .orb-2 { width: 400px; height: 400px; background: #ec4899; bottom: -200px; left: -100px; opacity: .15; }
.cta-inner { position: relative; text-align: center; }
.cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.35); }

/* ─── FOOTER ─── */
.footer {
  background: rgba(0,0,0,.6);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  color: #52525b;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #71717a;
  transition: all .2s;
}
.social-link:hover { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.fl-heading { font-size: 12px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.fl-col a { display: block; font-size: 13px; color: #52525b; padding: 4px 0; transition: color .2s; }
.fl-col a:hover { color: #a1a1aa; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #3f3f46;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-wide { grid-column: span 2; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .float-card-1, .float-card-2, .float-card-3 { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .hero { padding-top: 80px; }
  .hero-headline { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .role-panel.active { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dp-sidebar { display: none; }
  .dp-chart-row { grid-template-columns: 1fr; }
  .stats-grid { gap: 0; }
  .stat-item { padding: 20px 24px; }
  .stat-divider { display: none; }
  .section { padding: 60px 0; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr; }
  .dp-stats { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   CONTACT MODAL
───────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  display: flex;
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  overflow-y: auto;
  background: #111114;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  position: relative;
  transform: translateY(28px) scale(.97);
  transition: transform .32s cubic-bezier(.22,.68,0,1.2);
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
}
.modal-backdrop.open .modal-box {
  transform: translateY(0) scale(1);
}

/* Scrollbar inside modal */
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: #a1a1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.modal-close:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ── Left panel ── */
.modal-left {
  width: 300px;
  flex-shrink: 0;
  background: linear-gradient(150deg, #4338ca 0%, #6d28d9 55%, #9333ea 100%);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.modal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
}
.modal-brand .logo-icon { font-size: 22px; }
.logo-accent-w { color: rgba(255,255,255,.7); }
.modal-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.modal-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 28px;
}
.modal-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.modal-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.modal-perks li svg { flex-shrink: 0; }
.modal-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.modal-proof .proof-avatars img {
  width: 28px; height: 28px;
  border: 2px solid rgba(255,255,255,.3);
}
.modal-proof p { font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.4; }
.modal-proof strong { color: #fff; }

/* ── Right panel ── */
.modal-right {
  flex: 1;
  padding: 44px 36px;
  overflow-y: auto;
  min-width: 0;
}
.mf-header { margin-bottom: 28px; }
.mf-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.mf-header p { font-size: 14px; color: #71717a; }

.mf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.mf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}
.mf-group:last-child:not(:first-child):only-child,
#contactForm > .mf-group { margin-bottom: 16px; }

.mf-group label {
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.req { color: #ef4444; }
.mf-group input,
.mf-group select,
.mf-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 11px 14px;
  color: #e4e4e7;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.mf-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371717a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.mf-group input::placeholder,
.mf-group textarea::placeholder { color: #3f3f46; }
.mf-group input:focus,
.mf-group select:focus,
.mf-group textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,.18);
  background: rgba(99,102,241,.05);
}
.mf-group input.invalid,
.mf-group select.invalid,
.mf-group textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}
.mf-group select option { background: #1c1c1f; }
.mf-group textarea { resize: vertical; min-height: 80px; }
.mf-err {
  font-size: 11px;
  color: #ef4444;
  min-height: 14px;
  display: block;
}

.mf-submit {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
  border-radius: 12px;
  margin-top: 4px;
  margin-bottom: 12px;
  gap: 8px;
}
.mf-submit:disabled { opacity: .6; cursor: not-allowed; }
.mf-spinner { display: flex; align-items: center; gap: 8px; }
.spin-icon {
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.mf-inline-err {
  font-size: 13px;
  color: #ef4444;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 10px;
}
.mf-note {
  font-size: 12px;
  color: #3f3f46;
  text-align: center;
}
.mf-note a { color: #6366f1; }
.mf-note a:hover { text-decoration: underline; }

/* ── Success state ── */
.mf-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 14px;
}
.mfs-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(16,185,129,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.mf-success h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.mf-success p { font-size: 14px; color: #71717a; line-height: 1.65; max-width: 280px; }
.mf-success p strong { color: #e4e4e7; }
.mf-success .btn { margin-top: 8px; }

/* ── Responsive ── */
@media (max-width: 760px) {
  .modal-box { flex-direction: column; max-height: 95vh; border-radius: 20px; }
  .modal-left {
    width: 100%;
    padding: 28px 24px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .modal-brand { margin-bottom: 0; width: 100%; }
  .modal-headline { font-size: 18px; width: 100%; margin-bottom: 6px; }
  .modal-tagline { display: none; }
  .modal-perks { flex-direction: row; flex-wrap: wrap; gap: 8px; width: 100%; }
  .modal-perks li { font-size: 12px; gap: 6px; width: calc(50% - 4px); }
  .modal-proof { display: none; }
  .modal-right { padding: 28px 24px; }
  .mf-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .modal-backdrop { padding: 0; align-items: flex-end; }
  .modal-box { border-radius: 20px 20px 0 0; max-height: 96vh; }
  .modal-perks li { width: 100%; }
}
