/* Shared style sheet for Vergil Remnant Solutions mockups */
:root {
  --bg: #0A1428;
  --bg2: #050B17;
  --emerald: #00D4B8;
  --emerald-dark: #00A894;
  --neon: #00F0FF;
  --glass: rgba(10, 20, 40, 0.65);
  --glass-border: rgba(0, 212, 184, 0.18);
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
  --shadow-emerald: 0 30px 80px rgba(0, 212, 184, 0.25);
  --font: "Inter", system-ui, sans-serif;
}

html, body {
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(0, 240, 255, 0.18), transparent 60%),
              radial-gradient(circle at 90% 20%, rgba(0, 212, 184, 0.14), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font);
  overflow-x: hidden;
}

.mockup-browser {
  width: min(1920px, 100%);
  height: min(1080px, 100vh);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow), var(--shadow-emerald);
  background: rgba(10, 20, 40, 0.9);
  overflow: hidden;
  position: relative;
}

.mockup-browser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(0,0,0,0)) 35%;
  pointer-events: none;
}

.browser-bar {
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green { background: #28ca41; }

.browser-title {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
}

.browser-content {
  height: calc(100% - 42px);
  overflow: hidden;
  position: relative;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.45);
}

.btn-primary {
  @apply bg-emerald text-vergil-navy font-semibold px-6 py-3 rounded-lg hover:bg-emerald-dark transition-all duration-300 shadow-lg shadow-emerald/40;
}

.btn-outline {
  @apply border border-emerald text-emerald font-semibold px-6 py-3 rounded-lg hover:bg-emerald/15 transition-all duration-300;
}

.nav-link {
  @apply text-gray-300 hover:text-emerald transition-colors duration-300;
}

.floating-orb {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 85px;
  height: 85px;
  background: radial-gradient(circle at 30% 30%, var(--neon), var(--emerald) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
  animation: float 8s ease-in-out infinite, pulse-slow 6s infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.74;
}

.floating-orb::after {
  content: '';
  position: absolute;
  inset: 10px;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.6) 15%, transparent 60%);
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.92; }
}

/* Utility helpers */
.text-neon {
  background: linear-gradient(90deg, rgba(255,255,255,1), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.card-glass {
  @apply glass p-8 rounded-3xl;
}

.badge {
  @apply inline-flex items-center gap-2 rounded-full px-3 py-1.5 text-xs font-semibold;
  background: rgba(0, 212, 184, 0.16);
  color: rgba(0, 240, 255, 0.9);
  border: 1px solid rgba(0, 212, 184, 0.25);
}

.stat-block {
  @apply rounded-3xl p-8 glass border border-emerald/18;
}

.stat-block h3 {
  font-size: 2.75rem;
  letter-spacing: -0.03em;
}

.testimonial-card {
  @apply rounded-3xl p-8 glass border border-emerald/18;
  min-width: 320px;
  max-width: 360px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
}

.modal {
  @apply glass rounded-3xl p-8 max-w-3xl w-full relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.modal-close:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.12);
}

.progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,212,184,0.95), rgba(0,240,255,0.9));
}

@media (max-width: 1024px) {
  .mockup-browser {
    height: 90vh;
  }
}

/* Anchor link offset for fixed header */
html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 7rem; /* Offset for fixed header (pt-28 = 7rem = 112px) */
}
/* This forces the dark logo to become white and visible! */
.main-logo {
  filter: brightness(0) invert(1);
}

/* Custom Scrollbar for Kanban Columns */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.4); /* Emerald hover */
}
/* Add this if not already there */
.kanban-dropzone {
    min-height: 100px;
    height: 100%;
}
/* Visual feedback when dragging over a column */
.kanban-dropzone.bg-white\/5 {
    background-color: rgba(0, 212, 184, 0.05) !important;
    border: 1px dashed rgba(0, 212, 184, 0.3);
    border-radius: 12px;
}