/* Signzone Graphics Standalone Static Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --signzone-lime: #8cc63f;
  --signzone-dark: #0d0e11;
  --signzone-[#84bd00]: #8cc63f;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111827;
  background-color: #ffffff;
  overflow-x: hidden;
}

.signzone-condensed {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Hero gradient matching main app */
.bg-hero-gradient {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #e5e7eb 100%);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Page hidden state */
.page-view {
  display: none;
}

.page-view.active {
  display: block;
}

/* Modal styles */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.active {
  display: flex;
}
