@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --color-primary-amber: #fd9903;
  --color-primary-red: #fd3a10;
  --color-dark-obsidian: #0b0f19;
  --color-dark-card: #151c2e;
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
}

/* Glassmorphism & Mesh Backgrounds */
.glass-panel {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(253, 153, 3, 0.18);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
}

.glass-panel-dark {
  background: rgba(21, 28, 46, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Custom Gradients */
.gradient-text-amber {
  background: linear-gradient(135deg, #fd9903 0%, #fd3a10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-dark {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-btn-primary {
  background: linear-gradient(135deg, #fd9903 0%, #fd3a10 100%);
  box-shadow: 0 10px 25px -5px rgba(253, 153, 3, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gradient-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(253, 58, 16, 0.45);
}

/* Infinite Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

/* Pulse Badge */
@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.15); }
}

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

/* Accordion Smooth Height */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.accordion-content.open {
  opacity: 1;
}

/* Slide-over Drawer Modal */
.modal-overlay {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-drawer {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tab active state line indicator */
.tab-btn {
  position: relative;
  transition: all 0.2s ease;
}

.tab-btn.active {
  color: #fd3a10;
  font-weight: 700;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #fd9903, #fd3a10);
  border-radius: 2px;
}

/* Timeline Vertical Line */
.timeline-line::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: linear-gradient(180deg, #fd9903, #fd3a10);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fefcf5;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fd9903, #fd3a10);
  border-radius: 4px;
}
