/**
 * 2026 F1 Telemetry Dashboard — iOS/macOS Design System.
 * 
 * MIT Communication Lab Style Guide Compliance:
 * This stylesheet implements a high-performance design system inspired by 
 * modern Apple iOS/macOS interfaces. It utilizes the Inter type scale, 
 * soft-shadowed cards, and a specific color palette for real-time 
 * telemetry visualization.
 * 
 * Reference: https://mitcommlab.mit.edu/broad/commkit/coding-and-comment-style/
 */

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

:root {
  /* Color System */
  --bg-base: #F2F2F7;
  --bg-card: #FFFFFF;
  --bg-card-2: #F9F9F9;
  --text-primary: #000000;
  --text-secondary: #3C3C43;
  --text-tertiary: #8E8E93;
  --accent-blue: #007AFF;
  --accent-green: #34C759;
  --accent-orange: #FF9500;
  --accent-red: #FF3B30;
  --accent-purple: #AF52DE;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --radius-card: 20px;
  --radius-pill: 100px;
  
  /* Layout Constants */
  --topbar-height: 60px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, button, input, textarea {
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  padding-bottom: 40px;
}

/* ANTIGRAVITY SCROLL BACKGROUND (The "Sunset Blobs") */

@keyframes orbit {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5vw, -5vh) scale(1.1); }
  66% { transform: translate(-5vw, 5vh) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

.scroll-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #FAF9F8; /* KEEPING STUDIO WHITE - DO NOT CHANGE */
  overflow: hidden;
}

/* ── THE COORDINATE GRID (Technical Grounding) ── */
.scroll-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.25) 1.5px, transparent 1.5px);
  background-size: 32px 32px; /* Precision grid spacing */
  opacity: 0.18; /* Increased for clear visibility */
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.04; /* KEEPING SUBTLE OPACITY */
  /* Implementing Slow Orbit */
  animation: orbit 60s infinite ease-in-out;
}

.orange {
  background: #ff9506; /* Community Orange */
  top: -20%; 
  left: -30%;
}

.red {
  background: #FF3B30; /* Sport Red */
  bottom: -20%; 
  right: -30%;
  animation-delay: -30s; /* Offset for organic feel */
  animation-direction: alternate-reverse; 
}

/* ── TYPOGRAPHY ── */

.hero-number {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
}

.hero-unit {
  font-size: 20px;
  font-weight: 600;
  margin-left: 2px;
}

.section-header {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.narrative-text {
  font-size: 15px; /* Balanced size */
  font-weight: 500;
  line-height: inherit;
  transition: all 0.3s ease;
}

/* Narrative Success State */
.narrative-status-success {
  color: var(--accent-green) !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  animation: flicker-in 0.4s ease-out;
}

@keyframes flicker-in {
  0% { opacity: 0.6; transform: scale(0.99); }
  100% { opacity: 1; transform: scale(1); }
}

.race-narrative-container {
    /* 1. Use a premium, tight-kerning font */
    font-family: -apple-system, "SF Pro Text", "Inter", sans-serif;
    
    /* 2. Soften the contrast (Deep Slate) */
    color: #3a3a3c; 
    
    /* 3. The "Airy" Secret: Increase Line Height */
    line-height: 1.6; 
    
    /* 4. Technical Tracking (Letter Spacing) */
    letter-spacing: -0.015em; 
    
    /* 5. Size balance */
    font-size: 15px;
    
    max-width: 90%; /* Prevents lines from getting too long/heavy */
}

/* Make the first line pop slightly like a news header */
.race-narrative-container::first-line {
    color: #1d1d1f;
    font-weight: 600;
}

.label-caption {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

/* ── LAYOUT COMPONENTS ── */

.topbar {
  position: sticky;
  top: 0;
  height: var(--topbar-height);
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.topbar-brand {
  color: rgba(29, 29, 31, 0.4);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.topbar-center {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
}

.topbar-status {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
}

.mission-timer {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-tertiary);
  opacity: 0.4;
  letter-spacing: 0.05em;
  transition: all 0.5s ease;
  min-width: 100px;
  text-align: right;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

.status-dot.connected {
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse 2s infinite;
}

.status-dot.connecting {
  background: var(--accent-orange);
  box-shadow: 0 0 8px var(--accent-orange);
  animation: pulse 1s infinite;
}

.status-dot.disconnected {
  background: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red);
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.btn-kill {
  border: none;
  background: rgba(255, 59, 48, 0.05);
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-red);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 0;
  font-family: inherit;
  opacity: 0.6;
}

.btn-kill:hover {
  background: var(--accent-red);
  color: white;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.2);
}

.btn-kill:active {
  transform: scale(0.95);
}

.container {
  max-width: 900px;
  margin: 24px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── CARDS ── */

.ios-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

/* ── DIRECTIONAL LIGHTING (Paddock Floodlights) ── */
.ios-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  padding: 1.2px; /* Precision border width */
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.6) 0%, 
    rgba(255, 255, 255, 0.1) 40%, 
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.3s ease;
}

/* ── THE DATA PULSE (The Heartbeat) ── */
@keyframes card-pulse-glow {
  0% { 
    box-shadow: 0 0 25px rgba(255, 149, 0, 0.35); 
    transform: scale(1.002); 
    border-color: rgba(255, 149, 0, 0.6); 
  }
  100% { 
    box-shadow: var(--shadow-md); 
    transform: scale(1); 
    border-color: transparent; 
  }
}

/* We pulse the highlight too for a "Live" flash */
@keyframes border-flash {
  0% { background: linear-gradient(135deg, rgba(255, 149, 0, 0.8), transparent); }
  100% { background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent); }
}

.card-pulsing {
  animation: card-pulse-glow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pulsing::before {
  animation: border-flash 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── MODE SWITCHER (Segmented Control) ── */

.mode-button-group {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 10px;
  background: rgba(44, 44, 46, 0.08); /* Slightly darker for better definition */
  border-radius: var(--radius-pill);
}

.gooey-bg-container {
  position: absolute;
  inset: 0;
  filter: url('#gooey');
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.pill-base {
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 120px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-pill);
}

.sim-base { left: 10px; }
.live-base { left: calc(10px + 120px + 12px); }
.stop-base { left: calc(10px + 120px + 12px + 120px + 12px); }

.mode-highlight {
  position: absolute;
  top: 10px;
  height: calc(100% - 20px);
  width: 120px;
  border-radius: var(--radius-pill);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    inset 0 0 15px rgba(255, 255, 255, 0.45),
    0 8px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 2;
  transform: scale(0.98); /* Default slight compression */
}

.mode-highlight.pulsate {
  animation: mode-pulse 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes mode-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.mode-highlight.sim { background: rgba(255, 255, 255, 0.9); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }
.mode-highlight.live { background: rgba(255, 255, 255, 0.9); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }
.mode-highlight.stop { background: rgba(255, 255, 255, 0.9); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }

.mode-buttons-overlay {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 10; /* Above gooey layer */
}

/* Base Pill Mode Button */
.btn-pill-mode {
  border: none;
  background: transparent;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 800; /* Max BOLD */
  color: #555557;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 120px;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-sim { color: var(--accent-blue); opacity: 0.6; }
.btn-live { color: var(--accent-green); opacity: 0.6; }
.btn-stop { color: var(--accent-red); opacity: 0.6; }

.btn-pill-mode.active-sim,
.btn-pill-mode.active-live,
.btn-pill-mode.active-stop {
  opacity: 1 !important;
  text-shadow: none;
}

.btn-pill-mode.active-sim { color: var(--accent-blue) !important; }
.btn-pill-mode.active-live { color: var(--accent-green) !important; }
.btn-pill-mode.active-stop { color: var(--accent-red) !important; }

/* Trigger Button specific override (White on Blue) */
#btn-trigger-state {
  color: #FFFFFF !important;
  background: var(--accent-blue) !important;
  opacity: 1 !important;
}

.btn-pill-mode:hover {
  color: var(--text-primary);
}

.btn-sim.triggered {
  background: var(--accent-green) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(52, 199, 89, 0.4) !important;
}

.btn-sim.error {
  background: var(--accent-red) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4) !important;
}

.btn-sim:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── NARRATIVE CARD ── */

.narrative-accent {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--accent-blue);
  transition: background 0.3s ease;
}

.narrative-accent.critical {
  background: var(--accent-red);
}

.priority-badge {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.priority-ROUTINE { background: rgba(52, 199, 89, 0.12); color: var(--accent-green); }
.priority-HIGH { background: rgba(255, 149, 0, 0.12); color: var(--accent-orange); }
.priority-CRITICAL { background: rgba(255, 59, 48, 0.12); color: var(--accent-red); }

/* ── STATS GRID ── */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.progress-track {
  width: 100%;
  height: 4px;
  background: var(--bg-base);
  border-radius: 100px;
  margin: 12px 0 8px 0;
}

.progress-fill {
  height: 100%;
  background: var(--accent-green);
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.1, 0.9, 0.2, 1), background 0.3s ease;
}

.override-status {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card-glow-active {
  box-shadow: 0 0 0 1px rgba(255,59,48,0.2), 0 4px 16px rgba(255,59,48,0.12);
}

/* ── ADVANCED SEMANTIC UI ── */

@keyframes explosive-glow {
  0% { box-shadow: 0 4px 16px rgba(255, 59, 48, 0.1); border-color: transparent; }
  50% { box-shadow: 0 4px 30px rgba(255, 59, 48, 0.4); border-color: var(--accent-red); }
  100% { box-shadow: 0 4px 16px rgba(255, 59, 48, 0.1); border-color: transparent; }
}

.explosive-pulse {
  animation: explosive-glow 1.5s infinite ease-in-out;
  border: 1px solid var(--accent-red) !important;
}

.context-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-tertiary);
  background: rgba(118, 118, 128, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-top: 8px;
  display: inline-block;
}

.tyre-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tyre-soft { background: rgba(255, 59, 48, 0.1); color: var(--accent-red); border: 1px solid var(--accent-red); }
.tyre-medium { background: rgba(219, 180, 0, 0.05); color: #DBB400; border: 1px solid #DBB400; }
.tyre-hard { background: rgba(142, 142, 147, 0.1); color: #000; border: 1px solid #ddd; }
.tyre-inter { background: rgba(52, 199, 89, 0.1); color: var(--accent-green); border: 1px solid var(--accent-green); }
.tyre-wet { background: rgba(0, 122, 255, 0.1); color: var(--accent-blue); border: 1px solid var(--accent-blue); }

.tyre-worn {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.5; }
}

/* ── RACE FEED ── */

.feed-container {
  display: flex;
  flex-direction: column;
}

.feed-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.feed-row:last-child {
  border-bottom: none;
}

.feed-timestamp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: var(--text-tertiary);
}

.feed-narrative {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.opacity-40 { opacity: 0.4; }

/* ── QUERY SECTION ── */

.query-response {
  background: rgba(175, 82, 222, 0.06);
  border-left: 3px solid var(--accent-purple);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.query-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.query-input {
  background: rgba(116, 116, 128, 0.12);
  border-radius: var(--radius-pill);
  border: none;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  outline: none;
  transition: box-shadow 0.2s ease;
}

/* ── INTENSITY METER ── */
.intensity-meter-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intensity-meter-svg {
    transform: rotate(-90deg);
    width: 120px;
    height: 120px;
}

.meter-track {
    fill: none;
    stroke: rgba(118, 118, 128, 0.1);
    stroke-width: 12;
}

.meter-fill {
    fill: none;
    stroke: var(--accent-red);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 339.292; /* 2 * PI * 54 */
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.1, 0.9, 0.2, 1), stroke 0.3s ease;
}

.meter-center-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.meter-value {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1;
}

.meter-label {
    font-size: 8px;
    font-weight: 800;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ── AERO CONFIGURATION ── */
.aero-status {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.aero-badge {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.mode-x { color: var(--accent-red); }
.mode-z { color: var(--accent-blue); }

.aero-indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.indicator-x { background: var(--accent-red); box-shadow: 0 0 10px var(--accent-red); animation: fast-pulse 1s infinite; }
.indicator-z { background: var(--accent-blue); box-shadow: 0 0 10px var(--accent-blue); }

@keyframes fast-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.query-input:focus {
  box-shadow: 0 0 0 3px rgba(0,122,255,0.25);
}

.query-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn-pill {
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.btn-pill:active {
  transform: scale(0.96);
  opacity: 0.8;
}

.btn-ask {
  background: var(--accent-blue);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}

.btn-ask:hover {
  background: #006ee6;
}

.btn-clear {
  background: rgba(116, 116, 128, 0.12);
  color: var(--text-secondary);
}

.btn-clear:hover {
  background: rgba(116, 116, 128, 0.2);
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .narrative-text {
    font-size: 16px;
  }
  
  .hero-number {
    font-size: 48px;
  }
}

/* ── LOADING OVERLAY ── */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(242, 242, 247, 0.98);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Start visible by default in HTML */
  visibility: visible;
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 122, 255, 0.1);
  border-top: 4px solid var(--accent-blue);
  border-radius: 50%;
  margin: 0 auto 16px auto;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── SMART TOAST ALERTS ── */
.toast-container {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 20000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.1, 0.9, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-orange);
}

.loader-content p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.loader-quote {
  max-width: 320px;
  margin: 0 auto;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* ── FOOTER STYLING ── */

.app-footer {
  text-align: center;
  padding: 48px 24px;
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.8;
}
