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

:root {
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-dark: #0f172a;
  --primary-light: #e0f2fe;
  --secondary: #0d9488;
  --secondary-light: #ccfbf1;
  --accent-cyan: #06b6d4;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-color: #e2e8f0;
  --border-focus: #38bdf8;
  
  --status-completed: #10b981;
  --status-completed-bg: #ecfdf5;
  --status-completed-border: #a7f3d0;
  
  --status-progress: #0284c7;
  --status-progress-bg: #f0f9ff;
  --status-progress-border: #bae6fd;
  
  --status-planned: #64748b;
  --status-planned-bg: #f8fafc;
  --status-planned-border: #e2e8f0;
  
  --status-action: #ef4444;
  --status-action-bg: #fef2f2;
  --status-action-border: #fecaca;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
.header-top-accent {
  height: 4px;
  background: linear-gradient(90deg, #0284c7 0%, #06b6d4 50%, #0d9488 100%);
  width: 100%;
}

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-color);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.brand-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.period-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #ffffff;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  background: var(--bg-subtle);
  color: var(--text-main);
  border-color: #cbd5e1;
}

/* Period Selector Switcher */
.period-selector {
  display: inline-flex;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  gap: 6px;
  flex-wrap: wrap;
}

.period-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.period-btn:hover {
  color: var(--text-main);
  background: var(--bg-subtle);
}

.period-btn.active {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.35);
}

.period-btn-badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary);
  font-weight: 700;
}

.period-btn.active .period-btn-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  padding: 28px 0 24px;
  background: radial-gradient(circle at 80% 0%, #e0f2fe 0%, #ffffff 50%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.hero-headline h1 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.hero-headline p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 650px;
}

.sprint-summary-box {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  min-width: 260px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.progress-track {
  width: 100%;
  height: 8px;
  background-color: var(--bg-subtle);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0284c7 0%, #0d9488 100%);
  border-radius: var(--radius-full);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sprint-status-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* Alert / Action Required Banner */
.action-alert-box {
  background: #ffffff;
  border-left: 5px solid var(--status-action);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.action-alert-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.08), transparent 70%);
  pointer-events: none;
}

.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--status-action-bg);
  color: var(--status-action);
  border: 1px solid var(--status-action-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.alert-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #991b1b;
  margin-bottom: 6px;
}

.alert-desc {
  font-size: 0.92rem;
  color: #475569;
  margin-bottom: 14px;
  max-width: 900px;
}

.alert-impact {
  background: #fef2f2;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #b91c1c;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.alert-steps {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 18px;
}

.alert-steps-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.alert-steps ol {
  padding-left: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.alert-steps li {
  margin-bottom: 6px;
}

.alert-steps li:last-child {
  margin-bottom: 0;
}

.alert-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(2, 132, 199, 0.3);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(2, 132, 199, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--text-main);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: #cbd5e1;
}

/* KPI Cards Grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}

.kpi-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.kpi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.kpi-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.kpi-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kpi-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.kpi-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
}

.kpi-badge {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.kpi-badge.trend-up {
  color: #059669;
}

.kpi-badge.trend-neutral {
  color: #0284c7;
}

.kpi-period {
  color: var(--text-muted);
}

/* Main Layout Grid (Tasks + Sidebar) */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  margin-bottom: 48px;
}

@media (max-width: 980px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* Section Titles */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Tabs & Filter Pill Navigation */
.tabs-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
  scrollbar-width: thin;
}

.tab-btn {
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background: var(--bg-subtle);
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 2px 4px rgba(2, 132, 199, 0.25);
}

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.filter-label {
  color: var(--text-muted);
  font-weight: 600;
}

.filter-pill {
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-pill:hover {
  border-color: #cbd5e1;
}

.filter-pill.active {
  background: var(--primary-dark);
  color: #ffffff;
  border-color: var(--primary-dark);
}

/* Task Cards */
.tasks-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.task-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.task-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.task-card.status-action_required {
  border-left: 4px solid var(--status-action);
}

.task-card.status-completed {
  border-left: 4px solid var(--status-completed);
}

.task-card.status-in_progress {
  border-left: 4px solid var(--status-progress);
}

.task-card.status-planned {
  border-left: 4px solid var(--status-planned);
}

.task-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.task-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--text-muted);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.status-badge.completed {
  background: var(--status-completed-bg);
  color: #065f46;
  border: 1px solid var(--status-completed-border);
}

.status-badge.in_progress {
  background: var(--status-progress-bg);
  color: #0369a1;
  border: 1px solid var(--status-progress-border);
}

.status-badge.planned {
  background: var(--status-planned-bg);
  color: #475569;
  border: 1px solid var(--status-planned-border);
}

.status-badge.action_required {
  background: var(--status-action-bg);
  color: #b91c1c;
  border: 1px solid var(--status-action-border);
}

.task-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.task-summary {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.task-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
  margin-top: 6px;
}

.task-date {
  color: var(--text-light);
  font-weight: 500;
}

.task-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.task-link:hover {
  text-decoration: underline;
}

/* Sidebar Sections */
.sidebar-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Keyword table */
.keyword-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.keyword-table th {
  text-align: left;
  padding: 8px 6px;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}

.keyword-table td {
  padding: 10px 6px;
  border-bottom: 1px solid #f1f5f9;
}

.keyword-table tr:last-child td {
  border-bottom: none;
}

.keyword-pos {
  font-weight: 800;
  color: var(--primary-dark);
}

.pos-change {
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  margin-left: 4px;
}

/* Roadmap Next Month */
.roadmap-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  border-radius: var(--radius-lg);
  border: 1px solid #ccfbf1;
  padding: 28px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.roadmap-header {
  margin-bottom: 20px;
}

.roadmap-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ccfbf1;
  color: #0f766e;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.roadmap-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e6fffa;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.roadmap-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.roadmap-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.roadmap-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Quick links cards */
.quick-links-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.quick-link-item:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateX(3px);
}

.quick-link-text h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.quick-link-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.quick-link-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

/* Chart Box */
.chart-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.chart-container {
  height: 240px;
  position: relative;
  width: 100%;
}

/* Modal for Task Details / Action Confirmation */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 28px;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 0.2s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* PIN Lock Screen */
.lock-screen-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, #e0f2fe 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.lock-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
}

.lock-logo {
  height: 52px;
  margin-bottom: 20px;
  object-fit: contain;
}

.lock-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.lock-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pin-input {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3em;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  outline: none;
  font-family: monospace;
  transition: all 0.2s ease;
}

.pin-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.pin-hint {
  font-size: 0.78rem;
  color: var(--text-light);
}

.shake {
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

/* Footer */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 28px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
