/* ==========================================================================
   QUORIT — TIME Framework Stylesheet (time-framework.css)
   Colors: Primary (#102A43), Deep (#0B1F33), Clinical Teal (#167C80),
           Soft Teal (#DCEFED), Medical Green (#5F8F63), Warm Off White (#F7F8F6),
           White (#FFFFFF), Charcoal (#273444)
   ========================================================================== */

/* Custom Micro-interactions & Borders */
.custom-border {
  border: 1px solid rgba(16, 42, 67, 0.08);
}

.custom-border-teal {
  border: 1px solid rgba(22, 124, 128, 0.25);
}

.elevation-soft {
  box-shadow: 0 4px 20px -4px rgba(0, 21, 42, 0.05), 0 2px 6px -1px rgba(0, 21, 42, 0.02);
}

.elevation-hover {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, background-color 0.28s ease;
}

.elevation-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(0, 21, 42, 0.09), 0 6px 12px -2px rgba(0, 21, 42, 0.04);
  border-color: rgba(22, 124, 128, 0.35);
}

/* Sticky TIME Sub-Navigation Bar */
#time-sticky-nav {
  transition: all 0.3s ease;
}

.time-nav-item.active {
  background-color: #102A43 !important;
  color: #ffffff !important;
  border-color: #167C80 !important;
  box-shadow: 0 4px 12px -2px rgba(16, 42, 67, 0.2);
}

.time-nav-item.active .time-nav-letter {
  background-color: #167C80 !important;
  color: #ffffff !important;
}

/* Scroll Reveal */
.reveal-init {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-init.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Animated Pathway Lines */
@keyframes flowDash {
  0% { stroke-dashoffset: 140; }
  100% { stroke-dashoffset: 0; }
}

.path-animated-line {
  stroke-dasharray: 8, 6;
  animation: flowDash 14s linear infinite;
}

/* Moisture Slider Interactive Track */
.moisture-track {
  background: linear-gradient(90deg, #E2B96F 0%, #DCEFED 40%, #167C80 50%, #DCEFED 60%, #5E94C5 100%);
}

#moisture-pointer {
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s ease;
}

/* Edge Comparison Interactive Tabs */
.edge-tab-btn.active {
  background-color: #102A43;
  color: #ffffff;
  border-color: #167C80;
}

/* Scrolled state for Header */
header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px -2px rgba(0, 21, 42, 0.06);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
}

/* Mobile Drawer */
#mobile-drawer.drawer-closed {
  transform: translateX(100%);
  pointer-events: none;
}

#mobile-drawer.drawer-open {
  transform: translateX(0);
  pointer-events: auto;
}

/* Accessible focus visible */
a:focus-visible, button:focus-visible {
  outline: 2px solid #167C80;
  outline-offset: 3px;
}
