/* Material Symbols Font Setup */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* SVG & Icon Sizing Safety Rules */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.w-3\.5 { width: 0.875rem !important; }
.h-3\.5 { height: 0.875rem !important; }
.w-4\.5 { width: 1.125rem !important; }
.h-4\.5 { height: 1.125rem !important; }
.w-5\.5 { width: 1.375rem !important; }
.h-5\.5 { height: 1.375rem !important; }

@layer base {
  html, body {
    margin: 0;
    padding: 0;
  }
  body {
    overscroll-behavior: none;
  }
  main > :first-child {
    margin-top: 0 !important;
  }
  main > :last-child {
    margin-bottom: 0 !important;
  }
}

::-webkit-scrollbar {
  display: none;
}

/* Font Helper Classes */
.font-display-hero { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 56px; font-weight: 800; line-height: 64px; letter-spacing: -0.03em; }
.font-headline-xl { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 700; line-height: 48px; letter-spacing: -0.025em; }
.font-headline-lg { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 30px; font-weight: 700; line-height: 38px; letter-spacing: -0.02em; }
.font-headline-md { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 600; line-height: 30px; letter-spacing: -0.015em; }
.font-headline-sm { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 600; line-height: 26px; letter-spacing: -0.01em; }
.font-price-lg { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; line-height: 32px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

.font-body-lg { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 400; line-height: 28px; letter-spacing: -0.005em; }
.font-body-md { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 400; line-height: 24px; }
.font-body-sm { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400; line-height: 20px; }

.font-label-md { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; line-height: 20px; letter-spacing: 0.01em; }
.font-label-sm { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; line-height: 16px; letter-spacing: 0.02em; }
.font-badge-caps { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; line-height: 14px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Custom Animations & Transitions */
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.4; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.animate-pulse-ring {
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom Toast Notification Popup */
#digiflow-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #0b1c30;
  color: #ffffff;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#digiflow-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Modal Overlay Backdrop Filter */
.modal-overlay {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
}

/* Accordion transition helper */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.open {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

/* Code Snippet Pre Box */
.license-key-box {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.08em;
  word-break: break-all;
}


