/* Suspra Design System - 100% Design Guide Compliant CSS
   Comprehensive styles for consistent UI across the webapp
   Version: 1.2.0
   Compliant with: UI/UX Design Guide v1.0.0
   Added: Beautiful owl-branded footer with sophisticated styling and brand consistency
*/

/* ========================================
   TOOLTIP COMPONENT STYLES
   ======================================== */

/* Tooltip container */
.suspra-tooltip-container {
  position: relative;
  display: inline-block;
}

/* Tooltip trigger */
.suspra-tooltip-trigger {
  cursor: help;
}

/* Base tooltip styles */
.suspra-tooltip {
  position: absolute;
  z-index: 1000;
  padding: 8px 12px;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 250px;
  word-wrap: break-word;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

/* Tooltip visibility */
.suspra-tooltip--visible {
  opacity: 1;
  visibility: visible;
}

/* Tooltip content */
.suspra-tooltip__content {
  position: relative;
  z-index: 1001;
}

/* Tooltip arrow */
.suspra-tooltip__arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}

/* Tooltip positioning - Top */
.suspra-tooltip--top {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
}

.suspra-tooltip--top .suspra-tooltip__arrow {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: rgba(0, 0, 0, 0.9);
  border-bottom: none;
}

/* Tooltip positioning - Bottom */
.suspra-tooltip--bottom {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
}

.suspra-tooltip--bottom .suspra-tooltip__arrow {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: rgba(0, 0, 0, 0.9);
  border-top: none;
}

/* Tooltip positioning - Left */
.suspra-tooltip--left {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 8px;
}

.suspra-tooltip--left .suspra-tooltip__arrow {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: rgba(0, 0, 0, 0.9);
  border-right: none;
}

/* Tooltip positioning - Right */
.suspra-tooltip--right {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 8px;
}

.suspra-tooltip--right .suspra-tooltip__arrow {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: rgba(0, 0, 0, 0.9);
  border-left: none;
}

/* Responsive tooltip adjustments */
@media (max-width: 768px) {
  .suspra-tooltip {
    max-width: 200px;
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .suspra-tooltip--top {
    margin-bottom: 6px;
  }
  
  .suspra-tooltip--bottom {
    margin-top: 6px;
  }
  
  .suspra-tooltip--left {
    margin-right: 6px;
  }
  
  .suspra-tooltip--right {
    margin-left: 6px;
  }
}

/* ========================================
   DESIGN SYSTEM FOUNDATION
   ======================================== */

/* Mobile Header Fix - Prevent hamburger menu overflow */
/* Fix for Vuetify v-app-bar using 100vw which includes scrollbar width on mobile */
.v-app-bar {
  width: 100% !important;
  max-width: 100% !important;
}

/* Ensure hamburger menu stays visible on mobile */
.v-app-bar-nav-icon {
  position: relative;
  z-index: 10;
}

/* ========================================
   SCORING CONTEXT SWITCHER STYLES
   ======================================== */

/* Default context switcher styling */
.scoring-context-switcher {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

/* Hero section context switcher styling - white text on green gradient */
.hero-section .scoring-context-switcher {
  border: 1px solid rgba(255,255,255,0.3);
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

/* Hero section context switcher hover and focus states */
.hero-section .scoring-context-switcher:hover {
  background-color: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.hero-section .scoring-context-switcher:focus-within {
  background-color: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

/* Accessibility improvements for hero context switcher */
.hero-section .scoring-context-switcher {
  /* Ensure keyboard navigation works */
  outline: none; /* Remove default outline, we have custom focus styles */
}

.hero-section .scoring-context-switcher:focus-visible {
  /* High contrast focus indicator for keyboard users */
  outline: 2px solid white;
  outline-offset: 2px;
}

/* Ensure dropdown menu is accessible */
.hero-section .v-menu .v-list {
  /* High contrast for dropdown items */
  color: rgba(0,0,0,0.87) !important;
}

.hero-section .v-menu .v-list-item:focus {
  /* Focus state for dropdown items */
  background-color: rgba(76,175,80,0.15) !important;
  outline: 1px solid rgba(76,175,80,0.5);
}

/* Hero section context switcher text and icons */
.hero-section .scoring-context-switcher .v-icon {
  color: white !important;
}

.hero-section .scoring-context-switcher .text-body-2 {
  color: white !important;
}

.hero-section .scoring-context-switcher .text-medium-emphasis {
  color: rgba(255,255,255,0.7) !important;
}

.hero-section .scoring-context-switcher .v-btn .v-icon {
  color: white !important;
}

/* Responsive behavior: Hero shows full context name on mobile, header stays condensed */
.hero-section .scoring-context-switcher .text-body-2 {
  display: inline !important; /* Override d-none d-md-inline to always show in hero */
}

/* Header context switcher remains condensed on mobile (keep existing behavior) */
.scoring-context-switcher:not(.hero-section .scoring-context-switcher) .text-body-2 {
  display: none; /* Hide text on mobile for header */
}

@media (min-width: 960px) {
  .scoring-context-switcher:not(.hero-section .scoring-context-switcher) .text-body-2 {
    display: inline; /* Show text on desktop for header */
  }
}

/* Hero section manage button - show on mobile since we have more space */
.hero-section .scoring-context-switcher .v-btn {
  display: inline-flex !important; /* Override d-none d-md-inline-flex to always show in hero */
}

/* Header manage button - keep condensed behavior */
.scoring-context-switcher:not(.hero-section .scoring-context-switcher) .v-btn {
  display: none; /* Hide manage button on mobile for header */
}

@media (min-width: 960px) {
  .scoring-context-switcher:not(.hero-section .scoring-context-switcher) .v-btn {
    display: inline-flex; /* Show manage button on desktop for header */
  }
}

/* Hero section dropdown menu styling for better contrast */
.hero-section .v-menu .v-list {
  background-color: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero-section .v-menu .v-list-item {
  color: rgba(0,0,0,0.87) !important;
}

.hero-section .v-menu .v-list-item:hover {
  background-color: rgba(76,175,80,0.1) !important;
}

.hero-section .v-menu .v-list-item--active {
  background-color: rgba(76,175,80,0.2) !important;
  color: rgba(0,0,0,0.87) !important;
}

.hero-section .v-menu .v-list-item-title {
  color: rgba(0,0,0,0.87) !important;
}

.hero-section .v-menu .v-list-item-subtitle {
  color: rgba(0,0,0,0.6) !important;
}

.hero-section .v-menu .v-icon {
  color: rgba(0,0,0,0.6) !important;
}

/* ========================================
   HERO SECTION BACKGROUND
   ======================================== */

/* Hero background with green gradient */
.hero-background {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  position: relative;
  overflow: hidden;
}

/* Hero background overlay for better text contrast */
.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Ensure hero content is above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Hero minimum height for proper spacing */
.min-height-400 {
  min-height: 400px;
}

/* ========================================
   HERO WELCOME SPECIFIC STYLES
   ======================================== */

/* Welcome hero gradient - complements green/orange buttons */
.hero-welcome-gradient {
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
  position: relative;
  overflow: hidden;
}

/* Welcome hero overlay for depth */
.hero-welcome-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
  z-index: 1;
}

/* Text shadows for better readability */
.hero-title-shadow {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-shadow {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-description-shadow {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Primary button enhancements */
.hero-primary-button {
  transition: all 0.3s ease !important;
  transform: translateY(0);
}

.hero-primary-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(76, 175, 80, 0.5) !important;
}

/* Secondary button enhancements */
.hero-secondary-button {
  transition: all 0.3s ease !important;
  transform: translateY(0);
}

.hero-secondary-button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4) !important;
}

/* Help text hover effect */
.hero-help-text:hover {
  opacity: 1 !important;
  transform: translateY(-1px);
}

/* ========================================
   HERO SECTION LAYOUT SPACING
   ======================================== */

/* Hero section spacing between elements */
.hero-section .v-card-title {
  margin-bottom: 24px !important; /* Increased from mb-4 (16px) to 24px */
}

.hero-section .context-switcher-container {
  margin-bottom: 32px !important; /* Increased spacing before data cards */
}

.hero-section .progress-summary-cards {
  margin-bottom: 16px !important; /* Standard spacing after cards */
}

/* Ensure consistent spacing on mobile */
@media (max-width: 768px) {
  .hero-section .v-card-title {
    margin-bottom: 20px !important;
  }
  
  .hero-section .context-switcher-container {
    margin-bottom: 24px !important;
  }
}

/* Fix v-toolbar width calculation on mobile */
.v-toolbar,
.v-app-bar .v-toolbar {
  width: 100% !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
}

/* Ensure toolbar content respects boundaries */
.v-toolbar__content {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Top Screen Debug Notice - Transparent overlay at very top */
.top-debug-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  pointer-events: auto;
  height: 24px;
}

.top-debug-bar {
  background: rgba(158, 158, 158, 0.6);
  backdrop-filter: blur(4px);
  color: #424242;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(158, 158, 158, 0.2);
  transition: all 0.2s ease;
}

.top-debug-bar:hover {
  background: rgba(158, 158, 158, 0.75);
  height: 28px;
}

.top-debug-text {
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
}

.top-debug-text i {
  font-size: 0.8rem;
}

/* Center Header Debug Notice - Always visible in center of header */
.center-debug-notice {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  pointer-events: auto;
}

/* Header Center Debug Container - Positioned in center of v-app-bar */
.header-center-debug {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  pointer-events: auto;
}

.center-debug-chip {
  box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
  border: 1px solid rgba(255,255,255,0.8) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

.center-debug-chip:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* Center Debug Panel */
.center-debug-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  max-width: 400px;
  min-width: 300px;
}

.debug-panel-card {
  border: 2px solid #ff9800 !important;
  border-radius: 8px !important;
}

.debug-panel-title {
  background: linear-gradient(135deg, #ff9800, #f57c00) !important;
  color: white !important;
  font-size: 0.9rem !important;
  padding: 8px 12px !important;
}

.debug-panel-content {
  padding: 12px !important;
  background: #fafafa;
}

.debug-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.debug-quick-info {
  font-size: 0.8rem;
  line-height: 1.4;
}

.debug-info-item {
  margin-bottom: 4px;
  padding: 2px 0;
}

.debug-info-item strong {
  color: #666;
  margin-right: 8px;
}

/* Responsive adjustments for center debug notice */
@media (max-width: 600px) {
  .center-debug-chip {
    font-size: 0.7rem !important;
    padding: 4px 8px !important;
  }
  
  .center-debug-panel {
    max-width: calc(100vw - 32px);
    min-width: 250px;
  }
  
  .debug-panel-content {
    padding: 8px !important;
  }
  
  .debug-quick-info {
    font-size: 0.75rem;
  }
}

/* Very narrow screens - adjust debug notice size */
@media (max-width: 400px) {
  .center-debug-chip {
    font-size: 0.65rem !important;
    padding: 3px 6px !important;
  }
  
  .center-debug-panel {
    max-width: calc(100vw - 16px);
    min-width: 200px;
  }
}

/* Navigation Sidebar Styles */
.navigation-sidebar {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.navigation-sidebar:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navigation-sidebar .v-chip {
  transition: all 0.2s ease;
}

.navigation-sidebar .v-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navigation-sidebar .v-btn {
  transition: all 0.2s ease;
}

.navigation-sidebar .v-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Mode Selector Styles */
.mode-selector:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.mode-selector:active {
  background-color: rgba(0, 0, 0, 0.08);
}

:root {
  /* Color Palette - Exact Design Guide Colors */
  --primary: #1976D2;
  --primary-dark: #1565C0;
  --primary-light: #42A5F5;
  --green: #4CAF50;
  --teal: #009688;
  --orange: #FF9800;
  --purple: #9C27B0;
  
  /* Status Colors */
  --success: #4CAF50;
  --warning: #FF9800;
  --error: #F44336;
  --info: #2196F3;
  
  /* Neutral Colors */
  --dark-gray: #424242;
  --medium-gray: #757575;
  --light-gray: #E0E0E0;
  --background: #FAFAFA;
  
  /* Footer Brand Colors - Matching Owl Logo */
  --footer-bg: linear-gradient(135deg, rgba(11, 73, 25, 0.95) 0%, rgba(26, 91, 46, 0.9) 100%);
  --footer-accent: rgba(232, 245, 232, 0.9);
  --footer-accent-hover: rgba(232, 245, 232, 1);
  --footer-border: rgba(232, 245, 232, 0.15);
  --footer-border-hover: rgba(232, 245, 232, 0.25);
  --footer-shadow: 0 4px 12px rgba(11, 73, 25, 0.3);
  --footer-shadow-hover: 0 4px 12px rgba(11, 73, 25, 0.4);
  
  /* Spacing System (8px-based) */
  --space-xs: 4px;    /* 0.5 units */
  --space-sm: 8px;    /* 1 unit */
  --space-md: 16px;   /* 2 units */
  --space-lg: 24px;   /* 3 units */
  --space-xl: 32px;   /* 4 units */
  --space-xxl: 48px;  /* 6 units */
  
  /* Typography Scale - Exact Design Guide Sizes */
  --font-h1: 2.125rem;    /* 34px, font-weight: 300, line-height: 1.2 */
  --font-h2: 1.5rem;      /* 24px, font-weight: 400, line-height: 1.3 */
  --font-h3: 1.25rem;     /* 20px, font-weight: 500, line-height: 1.4 */
  --font-body-large: 1rem; /* 16px, font-weight: 400, line-height: 1.5 */
  --font-body: 0.875rem;   /* 14px, font-weight: 400, line-height: 1.5 */
  --font-caption: 0.75rem; /* 12px, font-weight: 400, line-height: 1.4 */
  
  /* Shadows - Design Guide Standards */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
  
  /* Transitions */
  --transition: all 0.2s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.3s ease;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Touch Targets */
  --touch-target: 44px;
}

/* ========================================
   TYPOGRAPHY SYSTEM
   ======================================== */

/* Heading Styles */
.text-h1 {
  font-size: var(--font-h1);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.text-h2 {
  font-size: var(--font-h2);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

/* Responsive Journal Name */
.text-journal-name {
  font-size: 2.5rem; /* Large on wide screens - fits on one row */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

/* Responsive breakpoints for journal name */
@media (max-width: 1200px) {
  .text-journal-name {
    font-size: 2.25rem; /* Slightly smaller for medium screens */
  }
}

@media (max-width: 900px) {
  .text-journal-name {
    font-size: 2rem; /* Smaller for tablets */
  }
}

@media (max-width: 600px) {
  .text-journal-name {
    font-size: 1.75rem; /* Mobile size - fits on max 3 rows */
  }
}

@media (max-width: 400px) {
  .text-journal-name {
    font-size: 1.5rem; /* Small mobile size */
  }
}

/* Responsive Welcome Message */
.welcome-message-full {
  display: block;
}

.welcome-message-short {
  display: none;
}

/* Show short version on narrow screens */
@media (max-width: 768px) {
  .welcome-message-full {
    display: none;
  }
  
  .welcome-message-short {
    display: block;
  }
}

.text-h3 {
  font-size: var(--font-h3);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.text-body-large {
  font-size: var(--font-body-large);
  font-weight: 400;
  line-height: 1.5;
}

.text-body {
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}

.text-caption {
  font-size: var(--font-caption);
  font-weight: 400;
  line-height: 1.4;
}

/* ========================================
   BUTTON COMPONENTS
   ======================================== */

/* Primary Button */
.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 12px var(--space-lg);
  border-radius: var(--radius-sm);
  font-weight: 500;
  min-height: var(--touch-target);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--font-body);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn-primary:active {
  background-color: var(--primary-dark);
  opacity: 0.8;
}

.btn-primary:disabled {
  background-color: var(--light-gray);
  color: var(--medium-gray);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 12px var(--space-lg);
  border-radius: var(--radius-sm);
  font-weight: 500;
  min-height: var(--touch-target);
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--font-body);
}

.btn-secondary:hover {
  background-color: rgba(25, 118, 210, 0.04);
  border-color: var(--primary-dark);
}

.btn-secondary:active {
  background-color: rgba(25, 118, 210, 0.08);
}

.btn-secondary:disabled {
  color: var(--medium-gray);
  border-color: var(--light-gray);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Text Button */
.btn-text {
  background-color: transparent;
  color: var(--primary);
  padding: 8px var(--space-sm);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  min-height: var(--touch-target);
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--font-body);
}

.btn-text:hover {
  background-color: rgba(25, 118, 210, 0.04);
}

.btn-text:active {
  background-color: rgba(25, 118, 210, 0.08);
}

.btn-text:disabled {
  color: var(--medium-gray);
  cursor: not-allowed;
  opacity: 0.6;
}

/* ========================================
   FORM COMPONENTS
   ======================================== */

/* Form Field Container */
.form-field {
  margin-bottom: var(--space-md);
}

.form-field label {
  display: block;
  font-size: var(--font-body);
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: var(--space-xs);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px var(--space-sm);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: var(--font-body);
  transition: var(--transition);
  box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

.form-field input:invalid,
.form-field textarea:invalid {
  border-color: var(--error);
}

.form-field .error-message {
  color: var(--error);
  font-size: var(--font-caption);
  margin-top: var(--space-xs);
}

.form-field .help-text {
  color: var(--medium-gray);
  font-size: var(--font-caption);
  margin-top: var(--space-xs);
}

/* ========================================
   ALERT COMPONENTS
   ======================================== */

.alert {
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.alert-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.alert-message {
  font-size: var(--font-body);
  line-height: 1.5;
}

/* Alert Types */
.alert-info {
  background-color: rgba(33, 150, 243, 0.1);
  border-left: 4px solid var(--info);
  color: var(--dark-gray);
}

.alert-success {
  background-color: rgba(76, 175, 80, 0.1);
  border-left: 4px solid var(--success);
  color: var(--dark-gray);
}

.alert-warning {
  background-color: rgba(255, 152, 0, 0.1);
  border-left: 4px solid var(--warning);
  color: var(--dark-gray);
}

.alert-error {
  background-color: rgba(244, 67, 54, 0.1);
  border-left: 4px solid var(--error);
  color: var(--dark-gray);
}

/* ========================================
   CARD COMPONENTS
   ======================================== */

.card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--light-gray);
}

.card-title {
  font-size: var(--font-h3);
  font-weight: 500;
  color: var(--dark-gray);
  margin: 0;
}

.card-subtitle {
  font-size: var(--font-body);
  color: var(--medium-gray);
  margin: var(--space-xs) 0 0 0;
}

.card-content {
  margin-bottom: var(--space-md);
}

.card-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--light-gray);
}

/* Interactive Cards */
.card-interactive {
  cursor: pointer;
  transition: var(--transition);
}

.card-interactive:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   MODAL COMPONENTS
   ======================================== */

.modal-card {
  max-height: 80vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.modal-card-title {
  flex-shrink: 0;
  background-color: #f5f5f5;
  padding: var(--space-md);
  border-bottom: 1px solid var(--light-gray);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.modal-card-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: var(--space-md);
}

.modal-card-actions {
  flex-shrink: 0;
  background-color: #f5f5f5;
  padding: var(--space-md);
  border-top: 1px solid var(--light-gray);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
}

/* ========================================
   PATHWAY SYSTEM
   ======================================== */

.pathway-item {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-lg);
  margin-right: var(--space-sm);
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.02);
}

.pathway-icon {
  opacity: 0.7;
  transition: var(--transition);
  filter: brightness(0) saturate(100%);
  margin-right: var(--space-xs);
}

.pathway-icon:hover {
  opacity: 1;
}

.pathway-name {
  font-size: var(--font-caption);
  font-weight: 600;
  color: var(--dark-gray);
}

/* Pathway Colors - Exact Design Guide Colors */
.pathway-icon.primary { filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); }
.pathway-icon.green { filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); }
.pathway-icon.blue { filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(7500%) hue-rotate(200deg) brightness(101%) contrast(101%); }
.pathway-icon.orange { filter: brightness(0) saturate(100%) invert(60%) sepia(93%) saturate(1192%) hue-rotate(346deg) brightness(101%) contrast(101%); }
.pathway-icon.yellow { filter: brightness(0.5) contrast(1.4) drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }
.pathway-icon.purple { filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(7500%) hue-rotate(280deg) brightness(101%) contrast(101%); }
.pathway-icon.teal { filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(180deg) brightness(118%) contrast(119%); }

/* ========================================
   JOURNAL SYSTEM
   ======================================== */

.journal-interface {
  min-height: 100vh;
  background: linear-gradient(135deg, #0B4919 0%, #1a5c2a 100%);
}

.journal-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 var(--space-md);
  height: 64px;
  display: flex;
  align-items: center;
}

/* Journal Navigation Bar - Clean Secondary Navigation */
.journal-navigation-bar {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.journal-content {
  padding: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.journal-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
}

/* Calendar */
.calendar-day {
  min-height: 120px;
  border: 1px solid var(--light-gray);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  padding: var(--space-sm);
}

.calendar-day:hover { background-color: #f5f5f5; }
.calendar-day.has-entries { background-color: #e8f5e8; }
.calendar-day.today { background-color: #e3f2fd; border-color: var(--info); }
.calendar-day.selected { background-color: #bbdefb; border-color: var(--primary); }
.calendar-day.other-month { background-color: #e9ecef; color: var(--medium-gray); }

.entry-indicator {
  position: absolute;
  top: var(--space-xs);
  right: var(--space-xs);
  width: var(--space-sm);
  height: var(--space-sm);
  border-radius: 50%;
  background-color: var(--success);
}

.entry-count {
  position: absolute;
  bottom: var(--space-xs);
  right: var(--space-xs);
  font-size: var(--font-caption);
  color: var(--medium-gray);
}

/* ========================================
   QUIZ SYSTEM
   ======================================== */

.quiz-hero {
  background: linear-gradient(135deg, var(--green) 0%, #2E7D32 100%);
  color: white;
  padding: var(--space-xxl) 0;
  margin-bottom: var(--space-lg);
}

.quiz-card {
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
}

.quiz-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.quiz-card-featured {
  border: 2px solid var(--orange);
  background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}

.quiz-card-featured:hover {
  border-color: #f57c00;
  box-shadow: 0 8px 25px rgba(255,152,0,0.3);
}

/* ========================================
   ASSESSMENT SYSTEM
   ======================================== */

.assessment-card {
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
}

.assessment-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.assessment-card.selected {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Spacing Utilities */
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-xxl { margin-bottom: var(--space-xxl); }

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-xxl { margin-top: var(--space-xxl); }

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.p-xxl { padding: var(--space-xxl); }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-error { color: var(--error); }
.text-info { color: var(--info); }
.text-muted { color: var(--medium-gray); }

.font-weight-light { font-weight: 300; }
.font-weight-normal { font-weight: 400; }
.font-weight-medium { font-weight: 500; }
.font-weight-bold { font-weight: 700; }

/* Display Utilities */
.d-flex { display: flex; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Mobile First - Design Guide Breakpoints */
@media (max-width: 767px) {
  .journal-content {
    padding: var(--space-md);
  }
  
  .card {
    padding: var(--space-sm);
  }
  
  .pathway-name {
    display: none;
  }
  
  .pathway-icon {
    margin-right: 0;
  }
  
  .modal-card {
    max-width: 95vw;
    margin: var(--space-sm);
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .journal-content {
    padding: var(--space-lg);
  }
  
  .card {
    padding: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .journal-content {
    padding: var(--space-xl);
  }
  
  .card {
    padding: var(--space-lg);
  }
}

/* ========================================
   ACCESSIBILITY - WCAG 2.1 AA COMPLIANCE
   ======================================== */

/* Focus Indicators */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip Links */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* High Contrast Support */
@media (prefers-contrast: high) {
  .pathway-icon {
    opacity: 1;
  }
  
  .card {
    border: 1px solid var(--dark-gray);
  }
  
  .btn-primary {
    border: 2px solid var(--primary-dark);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .card-interactive:hover {
    transform: none;
  }
}

/* Screen Reader Only Content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   LEGACY SUPPORT & COMPATIBILITY
   ======================================== */

/* Maintain compatibility with existing class names */
.pathway-card, .entry-card, .dev-card, .navigation-card, .quick-action-card,
.question-card, .quiz-option-card {
  /* Apply card-interactive styles directly */
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.pathway-card:hover, .entry-card:hover, .dev-card:hover, .navigation-card:hover, .quick-action-card:hover,
.question-card:hover, .quiz-option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Fix Vuetify card title wrapping */
.v-card-title {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  white-space: normal;
  line-height: 1.2;
}

.v-card .v-card-title {
  max-width: 100%;
  box-sizing: border-box;
}

/* List spacing */
ul {
  padding-left: 1.5em;
  margin-left: 0;
}

ul ul {
  padding-left: 1.5em;
}

/* Modal dialog fixes */
.v-dialog .v-overlay__content {
  max-height: 80vh;
  overflow: hidden;
}

.v-dialog .v-overlay__content .v-card {
  overflow: hidden;
}

/* Journal Entry Modal fixes */
.journal-entry-modal-card {
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.journal-entry-modal-title {
  flex-shrink: 0;
  background-color: #f5f5f5;
}

.journal-entry-modal-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.journal-entry-modal-card .v-card-actions {
  flex-shrink: 0;
  background-color: #f5f5f5;
}

/* ========================================
   PATHWAY COLOR SYSTEM
   ======================================== */

/* Community Pathway - Turquoise */
.pathway-community {
  background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
  border: 2px solid #00695C;
}

.pathway-community .pathway-title {
  color: #004D40;
  font-weight: 600;
}

.pathway-community .pathway-caption {
  color: #004D40;
  font-weight: 500;
}

/* Food Pathway - Forest Green */
.pathway-food {
  background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
  border: 2px solid #2E7D32;
}

.pathway-food .pathway-title {
  color: #1B5E20;
  font-weight: 600;
}

.pathway-food .pathway-caption {
  color: #1B5E20;
  font-weight: 500;
}

/* Water Pathway - Deep Blue */
.pathway-water {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border: 2px solid #1976D2;
}

.pathway-water .pathway-title {
  color: #0D47A1;
  font-weight: 600;
}

.pathway-water .pathway-caption {
  color: #0D47A1;
  font-weight: 500;
}

/* Movement Pathway - Orange */
.pathway-movement {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border: 2px solid #FF6F00;
}

.pathway-movement .pathway-title {
  color: #E65100;
  font-weight: 600;
}

.pathway-movement .pathway-caption {
  color: #E65100;
  font-weight: 500;
}

/* Energy Pathway - Golden Yellow */
.pathway-energy {
  background: linear-gradient(135deg, #FFFDE7 0%, #FFF9C4 100%);
  border: 2px solid #FFC107;
}

.pathway-energy .pathway-title {
  color: #F57F17;
  font-weight: 600;
}

.pathway-energy .pathway-caption {
  color: #F57F17;
  font-weight: 500;
}

/* Goods Pathway - Crimson Red */
.pathway-goods {
  background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
  border: 2px solid #D32F2F;
}

.pathway-goods .pathway-title {
  color: #B71C1C;
  font-weight: 600;
}

.pathway-goods .pathway-caption {
  color: #B71C1C;
  font-weight: 500;
}

/* Habitat Pathway - Royal Purple */
.pathway-habitat {
  background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
  border: 2px solid #7B1FA2;
}

.pathway-habitat .pathway-title {
  color: #4A148C;
  font-weight: 600;
}

.pathway-habitat .pathway-caption {
  color: #4A148C;
  font-weight: 500;
}

/* ========================================
   SEMANTIC COLOR SYSTEM
   ======================================== */

/* Process Step Colors - Functional Meanings */
.process-measure {
  color: #2E7D32; /* Green - Go/Start universal meaning */
}

.process-learn {
  color: #1976D2; /* Blue - Information universal meaning */
}

.process-improve {
  color: #4A148C; /* Purple - Premium/Advanced universal meaning */
}

/* Card with Bottom-Aligned Button */
.card-bottom-button {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-bottom-button .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-bottom-button .card-button {
  margin-top: auto;
}

/* Progressive Headline Hierarchy - Fluid Responsive Typography */
.headline-1 {
  font-size: clamp(2rem, 6vw, 3rem); /* Scales from 32px to 48px - Hero */
  font-weight: 600;
  line-height: 1.3;
}

.headline-2 {
  font-size: clamp(1.5rem, 4.5vw, 2.25rem); /* Scales from 24px to 36px - Trust building */
  font-weight: 600;
  line-height: 1.3;
}

.headline-3 {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem); /* Scales from 20px to 28px - Core content */
  font-weight: 600;
  line-height: 1.3;
}

.headline-4 {
  font-size: clamp(1.125rem, 3vw, 1.5rem); /* Scales from 18px to 24px - Supporting info */
  font-weight: 600;
  line-height: 1.3;
}

.headline-5 {
  font-size: clamp(1rem, 2.5vw, 1.375rem); /* Scales from 16px to 22px - Least important */
  font-weight: 600;
  line-height: 1.3;
}

/* Individual Subheading Classes - Fluid Responsive Typography */
.hero-subheading {
  font-size: clamp(1.5rem, 4vw, 2.25rem); /* Scales from 24px to 36px - sized to align with "Discover Your Next Step" */
  font-weight: 600;
  line-height: 1.3;
}

.book-subheading {
  font-size: clamp(1.25rem, 3vw, 1.75rem); /* Scales from 20px to 28px - sized to align with "Your Earth Share" */
  font-weight: 600;
  line-height: 1.3;
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Hardware acceleration for animations */
.card-interactive,
.pathway-icon,
.btn-primary,
.btn-secondary {
  will-change: transform;
}

/* Optimize repaints */
.pathway-item,
.calendar-day {
  contain: layout style paint;
}

/* ========================================
   BEAUTIFUL FOOTER STYLES - CSS-FIRST COMPLIANT
   ======================================== */

/* Professional Footer Container */
.footer-container {
  background: var(--footer-bg);
  color: white;
  border-radius: 12px;
  box-shadow: var(--footer-shadow);
  border: 1px solid var(--footer-border);
  backdrop-filter: blur(20px);
}

/* Primary Navigation Links */
.footer-link-primary {
  display: inline-flex;
  align-items: center;
  color: var(--footer-accent);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--footer-border-hover);
  background: rgba(232, 245, 232, 0.05);
}

.footer-link-primary:hover {
  background-color: rgba(232, 245, 232, 0.15);
  transform: translateY(-1px);
  border-color: var(--footer-border-hover);
}

/* Start Button (Highlighted) */
.footer-link-start {
  display: inline-flex;
  align-items: center;
  color: var(--footer-accent);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--footer-border-hover);
  background: rgba(232, 245, 232, 0.05);
}

.footer-link-start:hover {
  background-color: rgba(232, 245, 232, 0.15);
  transform: translateY(-1px);
  border-color: var(--footer-border-hover);
}

/* Beta Feedback Button */
.footer-link-beta {
  display: inline-flex;
  align-items: center;
  color: var(--footer-accent);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(232, 245, 232, 0.3);
  background: rgba(232, 245, 232, 0.1);
  box-shadow: 0 2px 8px rgba(11, 73, 25, 0.2);
}

.footer-link-beta:hover {
  background-color: rgba(232, 245, 232, 0.2);
  transform: translateY(-1px);
  box-shadow: var(--footer-shadow-hover);
}

/* Secondary Links */
.footer-link-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--footer-accent);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid var(--footer-border);
  cursor: pointer;
}

.footer-link-secondary:hover {
  background-color: rgba(232, 245, 232, 0.1);
}

/* Footer Separators */
.footer-separator {
  opacity: 0.3;
  font-size: 0.9em;
  color: var(--footer-accent);
}

/* Copyright Section */
.footer-copyright-text {
  opacity: 0.6;
  line-height: 1.4; /* Better spacing for two lines */
  text-align: center; /* Center-align both copyright lines */
}

.footer-copyright-link {
  color: var(--footer-accent);
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 3px;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent line breaks within Sustainable Practice */
}

.footer-copyright-link:hover {
  background-color: rgba(232, 245, 232, 0.1);
}

/* Footer responsive adjustments - Using Vuetify's responsive system */
@media (max-width: 768px) {
  .footer-link-start,
  .footer-link-primary,
  .footer-link-beta,
  .footer-link-secondary {
    padding: 8px 12px;
    font-size: 0.875rem;
    min-height: 44px; /* Touch target compliance */
  }
  
  .footer-separator {
    margin: 0 4px;
    font-size: 1.1em;
  }
  
  .v-footer {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .footer-link-start,
  .footer-link-primary,
  .footer-link-beta,
  .footer-link-secondary {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
  
  .footer-separator {
    margin: 0 2px;
    font-size: 1em;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .journal-header,
  .modal-card-actions,
  .card-actions {
    display: none;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid var(--light-gray);
  }
  
  .journal-interface {
    background: white;
  }
}

/* Hero Section Classes */
.hero-blue {
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  color: white;
}

.hero-anonymous-warning {
  background-color: #fff3cd;
  color: #856404;
}

.hero-info-box {
  background-color: rgba(255,255,255,0.1);
  padding: 0.75rem;
  border-radius: 8px;
}

.hero-info-box-warning {
  background-color: rgba(133,100,4,0.1);
  padding: 0.75rem;
  border-radius: 8px;
}

.hero-blue-full {
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  color: white;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(25, 118, 210, 0.4);
}

.hero-anonymous-warning-full {
  background-color: #fff3cd;
  color: #856404;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(255, 193, 7, 0.3);
}

/* Journaling Mode Hero */
.hero-journaling {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
}

/* Stat Cards */
.stat-card {
  background-color: rgba(255,255,255,0.1);
  cursor: pointer;
}

/* Button Opacity */
.btn-opacity {
  opacity: 0.8;
}

/* Anonymous Mode Hero Styling */
.hero-anonymous-mode {
  background: linear-gradient(135deg, #E0E0E0 0%, #BDBDBD 100%);
  color: #424242;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Anonymous Mode Info Card */
.hero-anonymous-info {
  background-color: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Anonymous Mode Button Styling */
.btn-anonymous-primary {
  background-color: #616161 !important;
  color: white !important;
  border: none !important;
}

.btn-anonymous-primary:hover {
  background-color: #757575 !important;
}

.btn-anonymous-secondary {
  background-color: transparent !important;
  color: #616161 !important;
  border: 2px solid #616161 !important;
}

.btn-anonymous-secondary:hover {
  background-color: #616161 !important;
  color: white !important;
}

/* Help Component Beautiful Styling - Mobile-First Responsive Design */

/* Mobile-First Comparison Cards */
.help-comparison-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 16px 0;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .help-comparison-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: Show as table */
@media (min-width: 1024px) {
  .help-comparison-container {
    display: block;
  }
  
  .help-comparison-table {
    display: table;
    width: 100%;
  }
  
  .help-comparison-card {
    display: none; /* Hide cards on desktop */
  }
}

/* Comparison Card Styling */
.help-comparison-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.help-comparison-card-header {
  background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
  color: white;
  padding: 16px;
  font-weight: 600;
  font-size: 1.1rem;
}

.help-comparison-card-content {
  padding: 16px;
}

.help-comparison-mode {
  margin-bottom: 16px;
}

.help-comparison-mode:last-child {
  margin-bottom: 0;
}

.help-comparison-mode-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #1976D2;
}

.help-comparison-mode-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #424242;
}

/* Responsive Table (Desktop Only) */
@media (min-width: 1024px) {
  .help-comparison-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 16px 0;
  }
  
  .help-table-header,
  .help-table-cell {
    padding: 12px 16px;
  }
}

/* Mobile Table Hiding */
@media (max-width: 1023px) {
  .help-comparison-table {
    display: none; /* Hide table on mobile/tablet */
  }
}

/* Original table styles (desktop only) */
.help-comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin: 16px 0;
}

.help-table-header {
  background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  border: none;
}

.help-table-cell {
  padding: 16px;
  border: 1px solid #E0E0E0;
  background-color: white;
  vertical-align: top;
}

.help-table-row:nth-child(even) .help-table-cell {
  background-color: #FAFAFA;
}

.help-table-row:hover .help-table-cell {
  background-color: #F5F5F5;
  transition: background-color 0.3s ease;
}

.help-info-box {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-left: 4px solid #1976D2;
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.1);
}

.help-section-title {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #1976D2;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.help-link {
  color: #1976D2;
  text-decoration: none;
  font-weight: 500;
}

.help-link:hover {
  text-decoration: underline;
  color: #1565C0;
}

/* ========================================
   DEBUG CHIPS COMPONENT
   ======================================== */

/* Clickable Debug Chips */
.clickable-chip {
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.clickable-chip:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.clickable-chip:active {
  transform: scale(0.95);
}

/* Debug chip specific colors */
.v-chip.color-debug {
  background-color: #FF5722 !important;
  color: white !important;
}

.v-chip.color-debug.variant-outlined {
  background-color: transparent !important;
  color: #FF5722 !important;
  border-color: #FF5722 !important;
}

/* ========================================
   SCORE HUB COMPONENTS
   ======================================== */

/* Hero Gradient Background */
.score-hub-hero .hero-gradient-bg {
  background: linear-gradient(135deg,
    rgba(25, 118, 210, 0.15) 0%,
    rgba(66, 165, 245, 0.1) 50%,
    rgba(139, 195, 74, 0.15) 100%);
  border-radius: 16px;
  margin-bottom: 24px;
}

.score-hub-hero .hero-title {
  color: #1976D2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.score-hub-hero .hero-description {
  color: #424242;
  max-width: 800px;
  margin: 0 auto;
}

/* Pathway Icon Sizing */
.pathway-icon-small {
  height: 48px;
  width: 48px;
  transition: transform 0.2s ease;
}

.pathway-icon-small:hover {
  transform: scale(1.1);
}

.pathway-icon-medium {
  height: 64px;
  width: 64px;
}

.pathway-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.pathway-icon-wrapper:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pathway-icons-row {
  margin-top: 24px;
}

/* Hero Primary Button */
.hero-primary-btn {
  text-transform: none;
  font-size: 1.125rem;
  padding: 16px 32px;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.hero-primary-btn:hover {
  box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);
  transform: translateY(-2px);
}

/* Mode Card Styles */
.mode-card {
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
}

.mode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mode-card-selected {
  border-width: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mode-card .headline-4 {
  margin-top: 8px;
}

/* Overall Score Card */
.overall-score-card {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(227, 242, 253, 0.5) 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.overall-score-circle {
  margin: 16px auto;
}

/* Pathway Score Card */
.pathway-score-card {
  transition: all 0.2s ease;
  border-radius: 12px;
  height: 100%;
}

.pathway-score-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Pathway Panel Header */
.pathway-panel-header {
  padding: 16px;
}

/* Calculator Not in Mode */
.calculator-not-in-mode {
  opacity: 0.5;
}

.calculator-not-in-mode:hover {
  opacity: 0.7;
}

/* Card Interactive Hover Effects */
.card-interactive {
  transition: all 0.2s ease;
}

.card-interactive:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Score Dashboard Spacing */
.score-dashboard .v-row + .v-row {
  margin-top: 16px;
}

/* Mode Selector Spacing */
.score-mode-selector .v-row + .v-row {
  margin-top: 8px;
}

/* Pathway Cards Spacing */
.score-pathway-cards .v-expansion-panel {
  margin-bottom: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pathway-icon-small {
    height: 40px;
    width: 40px;
  }

  .pathway-icon-medium {
    height: 56px;
    width: 56px;
  }

  .hero-primary-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .overall-score-circle {
    transform: scale(0.8);
  }
}

/* ========================================
   SET CONTEXT COMPONENT - MOBILE RESPONSIVE
   ======================================== */

/* Stepper tab labels - ensure they fit on mobile without abbreviating */
.v-stepper-header {
  padding: 0 4px;
}

.v-stepper-item {
  padding: 8px 4px;
  min-width: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v-stepper-item__title {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

/* Mobile viewport - reduce font size further */
@media (max-width: 480px) {
  .v-stepper-item__title {
    font-size: 0.75rem;
    padding: 2px 0;
  }

  .v-stepper-item {
    padding: 6px 2px;
  }
}

/* Tablet viewport - normal size */
@media (min-width: 768px) {
  .v-stepper-item__title {
    font-size: 0.875rem;
  }

  .v-stepper-item {
    padding: 8px 8px;
  }
}

/* Climate preset option styling */
.climate-preset-option {
  margin-bottom: 12px;
}

.climate-preset-option .v-label {
  margin-left: 8px;
}