/* ==========================================================================
   DigiSpots Shared Theme
   Extracted & extended from DigiSpots_Landing_Page.html
   Palette: brandDark #130906 | brandDeep #0c0402 | brandGold #f2a223
            brandGoldHover #ffb33b | brandMuted #d8cfcc | textSecondary #e5dedc
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0c0402;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(242, 162, 35, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(242, 162, 35, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(19, 9, 6, 0.95) 0%, #0c0402 100%);
  background-attachment: fixed;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0c0402; }
::-webkit-scrollbar-thumb { background: #3a1d10; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #f2a223; }

/* Glass surfaces */
.glass-panel {
  background: rgba(19, 9, 6, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(242, 162, 35, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.glass-nav {
  background: rgba(12, 4, 2, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 162, 35, 0.12);
}

.glass-button {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 162, 35, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.glass-button::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 162, 35, 0.12), transparent);
  transition: 0.5s;
}
.glass-button:hover::before { left: 150%; }

@media (hover: hover) {
  .glass-button:hover {
    transform: translateY(-2px);
    border-color: rgba(242, 162, 35, 0.5);
    background: rgba(242, 162, 35, 0.08);
    box-shadow: 0 8px 20px -4px rgba(242, 162, 35, 0.2);
  }
  .card-hover:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 162, 35, 0.45);
    box-shadow: 0 14px 30px -8px rgba(242, 162, 35, 0.25);
  }
}
.glass-button:active { transform: scale(0.98); background: rgba(242, 162, 35, 0.15); }
.card-hover { transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1); }

*:focus-visible {
  outline: 3px solid #f2a223 !important;
  outline-offset: 3px !important;
}

/* Ambient glow orbs */
@keyframes ambientGlow {
  0%, 100% { opacity: 0.15; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.22; transform: translate(15px, -25px) scale(1.1); }
}
.ambient-glow-1 { animation: ambientGlow 15s infinite alternate ease-in-out; }

/* Entrance animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.delay-1 { animation-delay: 80ms; }
.delay-2 { animation-delay: 160ms; }
.delay-3 { animation-delay: 240ms; }
.delay-4 { animation-delay: 320ms; }
.delay-5 { animation-delay: 400ms; }
.delay-6 { animation-delay: 480ms; }
.delay-7 { animation-delay: 560ms; }

/* Scroll reveal (progressive enhancement via IntersectionObserver, see site.js) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Standee-style device chrome (used sparingly for visual signature) */
.standee-screen {
  box-shadow: inset 0 0 25px rgba(0,0,0,0.95), 0 0 10px rgba(242, 162, 35, 0.25);
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: #110906;
}

@keyframes standeeRotation {
  0% { transform: rotateY(-8deg) rotateX(1deg); }
  50% { transform: rotateY(8deg) rotateX(-1deg); }
  100% { transform: rotateY(-8deg) rotateX(1deg); }
}
.animate-rotate-standee {
  animation: standeeRotation 10s ease-in-out infinite;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gold gradient CTA */
.btn-gold {
  background-image: linear-gradient(to right, #f2a223, #cf7e11);
  color: #130906;
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
}
.btn-gold:hover { background-image: linear-gradient(to right, #ffb33b, #df8b1a); box-shadow: 0 10px 25px rgba(242,162,35,0.3); }

/* Mobile nav */
#mobileNav { transition: max-height 0.35s ease, opacity 0.3s ease; }

/* Simple table styling for pricing grids */
.rate-table { border-collapse: separate; border-spacing: 0; width: 100%; }
.rate-table th, .rate-table td {
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid rgba(242,162,35,0.1);
  text-align: center;
  white-space: nowrap;
}
.rate-table thead th {
  background: rgba(242,162,35,0.08);
  color: #f2a223;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.rate-table tbody tr:hover { background: rgba(242,162,35,0.06); }
.rate-table td:first-child, .rate-table th:first-child { text-align: left; }
