/* ==========================================
   FF SENSE SAAS — GLOBAL DESIGN SYSTEM
   Theme: Dark Neon / Free Fire aesthetic
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ─────────────────────────── */
:root {
  --ff-red: #FF3131;
  --ff-orange: #FF5E00;
  --ff-yellow: #FFD700;
  --ff-gold: #FFB900;
  --neon-red: #FF3131cc;
  --neon-orange: #FF5E00cc;
  --bg-deep: #05070A;
  --bg-card: #0A0D14;
  --bg-input: #0D111A;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(255, 94, 0, 0.4);
  --text-primary: #FFFFFF;
  --text-secondary: #A0ACC0;
  --text-muted: #5A6376;
  --success: #00F08F;
  --info: #00C2FF;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 50px rgba(255, 94, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-title: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── RESET ─────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(255, 49, 49, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(255, 94, 0, 0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── SCROLLBAR ─────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--ff-orange);
  border-radius: 3px;
}

/* ── TYPOGRAPHY ────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-title);
  letter-spacing: 0.03em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
}

a {
  color: var(--ff-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--ff-yellow);
}

/* ── GRADIENT TEXT ─────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--ff-orange), var(--ff-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-red {
  background: linear-gradient(135deg, var(--ff-red), var(--ff-orange));
  -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 28px;
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ff-red), var(--ff-orange));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 49, 49, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 94, 0, 0.5);
  filter: brightness(1.1);
}

.btn-premium {
  background: linear-gradient(135deg, var(--ff-yellow), var(--ff-orange));
  color: #000;
  box-shadow: 0 4px 25px rgba(255, 215, 0, 0.3);
}

.btn-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 94, 0, 0.4);
}

.btn-secondary {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--ff-orange);
  color: var(--ff-orange);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-glow);
  color: var(--ff-orange);
}

.btn-ghost:hover {
  background: rgba(255, 107, 0, 0.1);
  transform: translateY(-2px);
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ── CARDS ─────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.card-glow {
  position: relative;
  overflow: hidden;
}

.card-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.06), transparent 60%);
  pointer-events: none;
}

/* ── BADGES ────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-orange {
  background: rgba(255, 107, 0, 0.15);
  color: var(--ff-orange);
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.badge-red {
  background: rgba(255, 59, 48, 0.15);
  color: var(--ff-red);
  border: 1px solid rgba(255, 59, 48, 0.3);
}

.badge-gold {
  background: rgba(255, 200, 68, 0.15);
  color: var(--ff-gold);
  border: 1px solid rgba(255, 200, 68, 0.3);
}

.badge-green {
  background: rgba(0, 224, 117, 0.12);
  color: var(--success);
  border: 1px solid rgba(0, 224, 117, 0.3);
}

.badge-blue {
  background: rgba(0, 180, 255, 0.12);
  color: var(--info);
  border: 1px solid rgba(0, 180, 255, 0.3);
}

/* ── FORM ELEMENTS ─────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: var(--transition);
  width: 100%;
  outline: none;
}

.form-control:focus {
  border-color: var(--ff-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background: #141824;
}

/* ── NAVIGATION ────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(8, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.navbar-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--ff-red), var(--ff-orange));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.nav-link.active {
  color: var(--ff-orange);
  border-bottom: 2px solid var(--ff-orange);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.6rem;
  padding: 4px;
  transition: var(--transition);
}

.hamburger:hover {
  color: var(--ff-orange);
}

/* ── MOBILE NAV SIDEBAR ────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1000;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border-glass);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: 12px 16px;
  width: 100%;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* ── PAGE WRAPPER ──────────────────────── */
.page-wrapper {
  padding-top: 74px;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 64px 0;
}

/* ── GRID ──────────────────────────────── */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ── DIVIDER ───────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
  margin: 48px 0;
}

/* ── STAT BOX ──────────────────────────── */
.stat-box {
  text-align: center;
  padding: 24px;
}

.stat-box .stat-value {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ff-orange);
}

.stat-box .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── SENSE CARD ────────────────────────── */
.sense-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.sense-item:hover {
  border-color: var(--border-glow);
  background: rgba(255, 107, 0, 0.05);
}

.sense-item-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.sense-item-value {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ff-yellow);
  min-width: 60px;
  text-align: right;
}

.sense-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ── PROGRESS BAR ──────────────────────── */
.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  flex: 1;
  margin-left: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ff-orange), var(--ff-yellow));
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── TOAST ─────────────────────────────── */
#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--success);
  border-radius: var(--radius);
  color: var(--success);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── HERO PARTICLES ────────────────────── */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── FOOTER ────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 48px 0 24px;
  background: var(--bg-deep);
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--ff-orange);
}

.footer-aviso {
  color: var(--ff-red) !important;
  animation: aviso-pulse 2s ease-in-out infinite;
}

.footer-aviso:hover {
  color: var(--ff-yellow) !important;
}

@keyframes aviso-pulse {
  0%, 100% { opacity: 0.7; text-shadow: none; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(255, 49, 49, 0.5); }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ── TABS ──────────────────────────────── */
.tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 4px;
}

.tab-btn {
  flex: 1;
  padding: 10px 18px;
  background: transparent;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--ff-red), var(--ff-orange));
  color: #fff;
}

.tab-btn:hover:not(.active) {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ── ANIMATIONS ────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-up {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.anim-fade-up {
  animation: fadeInUp 0.6s ease both;
}

.anim-fade {
  animation: fadeIn 0.4s ease both;
}

.anim-glow {
  animation: glow-pulse 3s ease infinite;
}

.anim-float {
  animation: float-up 4s ease infinite;
}

/* ── STAGGER DELAYS ─────────────────────── */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .navbar-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 12px 20px;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-brand .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 48px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.8rem;
  }

  .stat-box .stat-value {
    font-size: 1.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .tabs {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .tab-btn {
    min-width: 100px;
  }
}

/* ── PAGE SPECIFIC: CALCULATOR ─────────── */
.style-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.style-btn {
  flex: 1;
  min-width: 90px;
  padding: 14px 12px;
  border: 2px solid var(--border-glass);
  border-radius: var(--radius);
  background: var(--bg-glass);
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.style-btn:hover {
  border-color: var(--ff-orange);
  color: var(--text-primary);
}

.style-btn.selected {
  border-color: var(--ff-orange);
  color: var(--ff-orange);
  background: rgba(255, 107, 0, 0.1);
}

.style-btn .style-emoji {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}

/* ── DETECT DEVICE BOX ─────────────────── */
.detect-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px dashed var(--border-glow);
  background: rgba(255, 107, 0, 0.04);
  cursor: pointer;
  transition: var(--transition);
}

.detect-box:hover {
  background: rgba(255, 107, 0, 0.08);
}

.detect-status {
  flex: 1;
}

.detect-status .ds-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detect-status .ds-value {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2px;
}

/* ── RESULT CARD ───────────────────────── */
.result-card {
  background: linear-gradient(145deg, var(--bg-card), #0E1525);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.result-header {
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.15), rgba(255, 107, 0, 0.1));
  border-bottom: 1px solid var(--border-glow);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  gap: 12px;
}

/* ── COMMUNITY CARDS ───────────────────── */
.config-card .rank-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ff-red), var(--ff-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.vote-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.vote-btn:hover,
.vote-btn.voted {
  background: rgba(255, 107, 0, 0.12);
  border-color: var(--ff-orange);
  color: var(--ff-orange);
}

/* ── WIKI CARD ─────────────────────────── */
.wiki-card .wiki-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.wiki-card:hover {
  cursor: pointer;
}

.article-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

/* ── DASHBOARD PRO COMPARISON ───────────── */
.pro-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 200, 68, 0.05);
  border: 1px solid rgba(255, 200, 68, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.pro-card:hover {
  background: rgba(255, 200, 68, 0.1);
  border-color: rgba(255, 200, 68, 0.4);
}

.pro-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ff-red), var(--ff-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pro-info .pro-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.pro-info .pro-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── LOADER ────────────────────────────── */
.loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 107, 0, 0.2);
  border-top-color: var(--ff-orange);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ── STEPPER ────────────────────────────── */
.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-glass);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}

.step.active .step-circle {
  border-color: var(--ff-orange);
  background: var(--ff-orange);
  color: #fff;
  box-shadow: 0 0 15px var(--neon-orange);
}

.step.completed .step-circle {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step.active .step-label {
  color: var(--ff-orange);
}

/* ── TOOLTIP ───────────────────────────── */
.tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: help;
  margin-left: 6px;
  transition: var(--transition);
}

.tooltip-trigger:hover {
  border-color: var(--ff-orange);
  color: var(--ff-orange);
  background: rgba(255, 94, 0, 0.1);
}

.tooltip-trigger {
  position: relative;
}

.tooltip-trigger::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  z-index: 100;
}

.tooltip-trigger:hover::after {
  visibility: visible;
  opacity: 1;
  bottom: 125%;
}

/* ── LOADING OVERLAY ───────────────────── */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loading-text {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.loading-bar-wrap {
  width: 240px;
  height: 4px;
  background: var(--bg-glass);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ff-red), var(--ff-orange));
  width: 0%;
  transition: width 2s linear;
}

/* ── SWIPE ANIMATION ────────────────────── */
.capa-anim-wrap {
  width: 140px;
  height: 240px;
  background: #000;
  border: 3px solid var(--border-glass);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.capa-target {
  width: 30px;
  height: 30px;
  background: rgba(255, 49, 49, 0.2);
  border: 2px solid var(--ff-red);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}

.capa-target::after {
  content: '🎯';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.capa-finger {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  z-index: 5;
}

@keyframes swipeUp {
  0% {
    bottom: 20%;
    opacity: 0;
    transform: translateX(-50%) scale(1);
  }

  10% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }

  60% {
    bottom: 65%;
    opacity: 1;
    transform: translateX(-50%) scale(0.9);
  }

  90% {
    opacity: 0;
  }

  100% {
    bottom: 20%;
    opacity: 0;
  }
}

.capa-finger.animating {
  animation: swipeUp 2s infinite ease-in-out;
}