@import url(https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap);
@tailwind base;
@tailwind components;
@tailwind utilities;

/* NextSaaS Variables */
:root {
  /* COLORS */
  --color-primary-50: #f4f2fe;
  --color-primary-100: #ece8ff;
  --color-primary-200: #dcd4ff;
  --color-primary-300: #c3b1ff;
  --color-primary-400: #a585ff;
  --color-primary-500: #864ffe;
  --color-primary-600: #7c31f6;
  --color-primary-700: #6d1fe2;
  --color-primary-800: #5a19be;
  --color-secondary: #1a1a1c;
  --color-accent: #fcfcfc;
  --color-background-1: #fcfcfd;
  --color-background-2: #f9fafb;
  --color-background-3: #f4f5f8;
  --color-background-4: #f0f2f6;
  --color-background-5: #13171e;
  --color-background-6: #0f1217;
  --color-background-7: #181d26;
  --color-stroke-2: #e3e7ed;
  --color-stroke-3: #d7dde5;
  --color-stroke-6: #202731;
  --color-ns-green: #c6f56f;
  --color-ns-cyan: #83e7ee;
  --color-ns-yellow: #f9eb57;

  /* TYPOGRAPHY */
  --text-heading-1: 4.25rem;
  --text-heading-2: 3.25rem;
  --text-heading-3: 2.5rem;
  --text-heading-4: 2rem;
  --text-heading-5: 1.5rem;
  --text-heading-6: 1.25rem;
  --text-tagline-1: 1rem;
  --text-tagline-2: 0.875rem;
  --text-tagline-3: 0.75rem;
}

/* NextSaaS Base Styles */
@layer base {
  body {
    margin: 0;
    font-family:
      "Inter Tight",
      "Inter",
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      "Roboto",
      sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f4f5f8;
    background: var(--color-background-3);
    color: #1a1a1c;
    color: var(--color-secondary);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Inter Tight", sans-serif;
    color: #1a1a1c;
    color: var(--color-secondary);
    font-weight: 500;
  }

  h1 {
    font-size: 4.25rem;
    font-size: var(--text-heading-1);
    line-height: 110%;
  }

  h2 {
    font-size: 3.25rem;
    font-size: var(--text-heading-2);
    line-height: 120%;
  }

  h3 {
    font-size: 2.5rem;
    font-size: var(--text-heading-3);
    line-height: 120%;
  }

  h4 {
    font-size: 2rem;
    font-size: var(--text-heading-4);
    line-height: 130%;
  }

  h5 {
    font-size: 1.5rem;
    font-size: var(--text-heading-5);
    line-height: 140%;
  }

  h6 {
    font-size: 1.25rem;
    font-size: var(--text-heading-6);
    line-height: 140%;
  }

  p {
    font-size: 1rem;
    font-size: var(--text-tagline-1);
    line-height: 150%;
    color: rgba(26, 26, 28, 0.6);
  }
}

/* NextSaaS Components */
@layer components {
  .main-container {
    @apply max-w-7xl mx-auto px-5;
  }

  /* Badges */
  .badge {
    @apply inline-flex items-center justify-center px-4 py-2 rounded-full text-xs font-medium;
  }

  .badge-cyan {
    @apply bg-cyan-100 text-cyan-800;
    background: #83e7ee;
    background: var(--color-ns-cyan);
    color: #1a1a1c;
    color: var(--color-secondary);
  }

  .badge-green {
    @apply bg-green-100 text-green-800;
    background: #c6f56f;
    background: var(--color-ns-green);
    color: #1a1a1c;
    color: var(--color-secondary);
  }

  .badge-yellow-v2 {
    @apply bg-yellow-100 text-yellow-800;
    background: #f9eb57;
    background: var(--color-ns-yellow);
    color: #1a1a1c;
    color: var(--color-secondary);
  }

  /* Buttons */
  .btn {
    @apply inline-flex items-center justify-center px-6 py-3 rounded-full font-medium transition-all duration-300 cursor-pointer border-0;
  }

  .btn-primary {
    @apply text-white;
    background: #864ffe;
    background: var(--color-primary-500);
  }

  .btn-primary:hover {
    background: #7c31f6;
    background: var(--color-primary-600);
  }

  .btn-secondary {
    @apply bg-white text-gray-900 border border-gray-200;
  }

  .btn-secondary:hover {
    @apply bg-gray-50;
  }

  .btn-xl {
    @apply px-8 py-4 text-lg;
  }

  .btn-md {
    @apply px-6 py-3;
  }

  /* Backgrounds */
  .bg-background-1 {
    background: #fcfcfd;
    background: var(--color-background-1);
  }

  .bg-background-2 {
    background: #f9fafb;
    background: var(--color-background-2);
  }

  .bg-background-3 {
    background: #f4f5f8;
    background: var(--color-background-3);
  }

  /* Text Colors */
  .text-secondary {
    color: #1a1a1c;
    color: var(--color-secondary);
  }

  .text-tagline-1 {
    font-size: 1rem;
    font-size: var(--text-tagline-1);
    line-height: 150%;
  }

  .text-heading-2 {
    font-size: 3.25rem;
    font-size: var(--text-heading-2);
    line-height: 120%;
  }

  .text-heading-5 {
    font-size: 1.5rem;
    font-size: var(--text-heading-5);
    line-height: 140%;
  }

  .text-heading-6 {
    font-size: 1.25rem;
    font-size: var(--text-heading-6);
    line-height: 140%;
  }
}

code {
  font-family:
    source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  height: 100%;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: revealAnimation 0.8s ease-out forwards;
}

@keyframes revealAnimation {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verification-result {
  transition: all 0.2s ease;
}

.verification-result.valid {
  border-left: 3px solid #22c55e;
}

.verification-result.invalid {
  border-left: 3px solid #ef4444;
}

.verification-result.unknown {
  border-left: 3px solid #f59e0b;
}

/* Custom scrollbar with green gradient - applies to all scrollbars */
* {
  scrollbar-width: thin;
  scrollbar-color: #e9f9e9 #ffffff;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e9f9e9, #dff8d4);
  border-radius: 4px;
  border: 1px solid rgba(66, 183, 77, 0.2);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #dff8d4, #d0f0c0);
  box-shadow: 0 2px 8px rgba(66, 183, 77, 0.3);
}

/* File upload drag and drop styles - cleaner */
.dropzone {
  border: 2px dashed #d4d4d4;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #ffffff;
}

.dropzone.active {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

.dropzone:hover {
  border-color: #3b82f6;
  background-color: #fafafa;
}

/* Progress bar animations - minimal */
.progress-bar {
  transition: width 0.3s ease;
  background-color: #3b82f6;
}

/* Clean table styles */
table {
  border-collapse: collapse;
  width: 100%;
}

th {
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #525252;
  padding: 12px 16px;
  background-color: #fafafa;
  border-bottom: 1px solid #e5e5e5;
}

td {
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #171717;
  border-bottom: 1px solid #e5e5e5;
}

tr:hover {
  background-color: #fafafa;
}

/* Remove default focus outlines and add minimal ones */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Toast notification styles - minimal colors */
.toast-success {
  background-color: #22c55e !important;
}

.toast-error {
  background-color: #ef4444 !important;
}

.toast-warning {
  background-color: #f59e0b !important;
}

.toast-info {
  background-color: #3b82f6 !important;
}

/* Enhanced UI Animations and Styles */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

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

/* Smooth scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

/* Custom loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.2s ease-in-out infinite;
  border-radius: 8px;
}

/* Floating animations */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Hover effects */
.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

/* Enhanced buttons */
.enhanced-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  text-transform: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.enhanced-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.enhanced-button:hover::before {
  left: 100%;
}

.enhanced-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Glass morphism effect */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Success pulse */
.success-pulse {
  animation: pulse 2s infinite;
  background: linear-gradient(135deg, #4caf50, #81c784);
}

/* Error shake */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.error-shake {
  animation: shake 0.5s ease-in-out;
}

/* Neon glow effect */
.neon-glow {
  box-shadow:
    0 0 5px #667eea,
    0 0 10px #667eea,
    0 0 15px #667eea,
    0 0 20px #667eea;
}

/* Typing animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.typing-animation {
  border-right: 3px solid #667eea;
  white-space: nowrap;
  overflow: hidden;
  animation:
    typing 2s steps(40, end),
    blink 1s step-end infinite;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }

  .mobile-full-width {
    width: 100% !important;
  }
}

/* Custom focus states */
.custom-focus:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
  border-color: #667eea;
}

/* Stagger animation for lists */
.stagger-animation {
  animation: fadeInUp 0.6s ease forwards;
}

.stagger-animation:nth-child(1) {
  animation-delay: 0.1s;
}
.stagger-animation:nth-child(2) {
  animation-delay: 0.2s;
}
.stagger-animation:nth-child(3) {
  animation-delay: 0.3s;
}
.stagger-animation:nth-child(4) {
  animation-delay: 0.4s;
}
.stagger-animation:nth-child(5) {
  animation-delay: 0.5s;
}

/* Loading states */
.loading-dots {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loading-dots div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #667eea;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-dots div:nth-child(1) {
  left: 8px;
  animation: dot1 0.6s infinite;
}

.loading-dots div:nth-child(2) {
  left: 8px;
  animation: dot2 0.6s infinite;
}

.loading-dots div:nth-child(3) {
  left: 32px;
  animation: dot2 0.6s infinite;
}

.loading-dots div:nth-child(4) {
  left: 56px;
  animation: dot3 0.6s infinite;
}

@keyframes dot1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes dot3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes dot2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}


/*# sourceMappingURL=main.a93a9700.css.map*/