/* Non-critical CSS - Loaded asynchronously */

/* Sections */
section { padding: 32px 0; }
.cards { display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background:white; border:1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.card h4 { margin: 6px 0 10px 0; }

.impact { display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pill { display:inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight:700; }
.pill.red{ background:#fee2e2; color:#b91c1c; }
.pill.orange{ background:#ffedd5; color:#c2410c; }
.pill.yellow{ background:#fef9c3; color:#a16207; }
.pill.green{ background:#dcfce7; color:#166534; }

/* Mobile App Section */
.mobile-app {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  margin: 32px 0;
}

.mobile-app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.mobile-app-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.mobile-app-description {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 32px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
}

.app-feature-icon {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-100);
  border-radius: 8px;
}

.app-store-btn {
  display: inline-block;
}

.app-store-btn img {
  height: 60px;
  width: auto;
}

/* App Screenshots */
.mobile-app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-screenshots {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.app-screenshot {
  width: 260px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-screenshot:last-child {
  width: 300px;
  transform: rotate(5deg);
  z-index: 1;
}

.app-screenshot:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.app-screenshot:first-child {
  transform: rotate(-5deg);
  z-index: 2;
}

.app-screenshot:first-child:hover {
  transform: rotate(-3deg) translateY(-8px) scale(1.02);
}

.app-screenshot:last-child:hover {
  transform: rotate(3deg) translateY(-8px) scale(1.05);
}

/* Responsive Mobile App */
@media (max-width: 768px) {
  .mobile-app-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .mobile-app-text h2 {
    font-size: 28px;
  }
  
  .mobile-app-description {
    font-size: 16px;
  }
  
  .app-screenshots {
    flex-direction: column;
    gap: 16px;
  }
  
  .app-screenshot {
    width: 160px;
    transform: none !important;
  }
  
  .app-screenshot:last-child {
    width: 200px;
  }
  
  .app-screenshot:hover {
    transform: translateY(-4px) scale(1.02) !important;
  }
  
  .app-features {
    align-items: center;
  }
}

/* Footer */
footer { 
  border-top: 1px solid var(--border); 
  padding: 48px 0 24px 0; 
  color: var(--text-dim);
  background: var(--bg-soft);
  width: 100%;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-column h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.footer-column h5 {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.footer-description {
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.app-download {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download-text {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #000;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  width: fit-content;
}
.app-store-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-copyright {
  color: var(--text-dim);
  font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .app-store-btn {
    align-self: center;
  }
}

/* Terms/Privacy styles */
.legal h2 { margin-top: 0; }
.legal h3 { margin-top: 28px; }
.legal p { color: var(--text-dim); }
.callout { background: var(--primary-50); border:1px solid var(--primary-100); border-radius: 12px; padding: 12px; }

/* Country Selection */
.country-selector {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.country-selector h2 { margin: 0 0 16px 0; }

.country-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-md);
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 600;
}

.country-info-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.country-info-section h3 {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: 600;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 4px rgba(13, 64, 118, 0.08);
}
.info-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.info-content h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.info-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Map Section */
#map-section {
  margin: 32px 0;
}
#strikes-map {
  z-index: 1;
}
.custom-marker {
  background: transparent !important;
  border: none !important;
}

/* Impact Level Filter */
.impact-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.impact-filter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}
.impact-filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.impact-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.impact-filter-btn:hover {
  border-color: var(--primary-300);
  background: var(--primary-50);
  transform: translateY(-1px);
}
.impact-filter-btn.active {
  border-color: var(--primary-400);
  background: var(--primary-100);
}
.impact-filter-btn.inactive {
  opacity: 0.4;
  border-color: var(--border);
  background: var(--bg-soft);
}
.impact-filter-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.impact-filter-text {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .impact-filter {
    width: 100%;
  }
  .impact-filter-label {
    width: 100%;
  }
  .impact-filter-buttons {
    width: 100%;
    justify-content: space-between;
  }
  .impact-filter-btn {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }
}

/* Date Filter */
.date-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
.date-filter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}
.date-filter-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.date-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.date-filter-clear {
  padding: 8px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.date-filter-clear:hover {
  background: var(--primary-50);
  color: var(--text);
  border-color: var(--primary-200);
}
.date-filter-btn:hover {
  border-color: var(--primary-300);
  background: var(--primary-50);
  transform: translateY(-1px);
}
.date-filter-btn.active {
  border-color: var(--primary-400);
  background: var(--primary-100);
}
.date-filter-picker {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 16px;
  display: none;
  min-width: 300px;
}
.date-filter-picker.show {
  display: block;
}
.date-filter-picker .flatpickr-input {
  display: none;
}
.date-filter-picker .flatpickr-calendar {
  margin: 0 auto;
  box-shadow: none;
  border: none;
}
/* Flatpickr calendar styling */
.flatpickr-calendar {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  border-radius: var(--radius-md);
  box-shadow: none;
  border: none;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: transparent;
  border-color: transparent;
  color: var(--text);
  font-weight: 600;
  position: relative;
}
.flatpickr-day.selected::before,
.flatpickr-day.startRange::before,
.flatpickr-day.endRange::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary-500);
  background: transparent;
  z-index: -1;
}
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: transparent;
  border-color: transparent;
}
.flatpickr-day.selected:hover::before,
.flatpickr-day.startRange:hover::before,
.flatpickr-day.endRange:hover::before {
  border-color: var(--primary-600);
}
.flatpickr-day:hover {
  background: var(--primary-50);
  border-color: transparent;
}
.flatpickr-day.today {
  border-color: var(--primary-300);
  font-weight: 600;
}
.flatpickr-day.today:hover {
  background: var(--primary-50);
  border-color: var(--primary-400);
}
.flatpickr-day.today.selected::before {
  border-color: var(--primary-500);
}
.flatpickr-months .flatpickr-month {
  color: var(--text);
}
.flatpickr-weekdays {
  background: var(--bg-soft);
}
.flatpickr-weekday {
  color: var(--text-dim);
  font-weight: 600;
}
.flatpickr-day {
  color: var(--text);
  font-weight: 500;
  border: 1px solid transparent;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: var(--text-dim);
  opacity: 0.4;
}
.date-filter-selected {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .date-filter {
    width: 100%;
  }
  .date-filter-label {
    width: 100%;
  }
  .date-filter-picker {
    right: auto;
    left: 0;
    min-width: 100%;
  }
}

/* Responsive */
@media (max-width: 960px){ .hero{ grid-template-columns: 1fr; } .cards{ grid-template-columns: 1fr; } .impact{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .kpis{ grid-template-columns: 1fr; } .impact{ grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  #strikes-map {
    height: 400px !important;
  }
  .country-stats { flex-direction: column; gap: 16px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-item { flex-direction: column; text-align: center; }
  .country-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .country-btn {
    min-height: 120px;
    padding: 20px 12px;
  }
  .country-flag {
    font-size: 28px;
  }
  .country-name {
    font-size: 14px;
  }
  .country-strikes {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .country-grid { 
    grid-template-columns: 1fr;
  }
}

/* Strike List Specific Styles */
.strikes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.strikes-count {
  color: var(--text-dim);
  font-size: 16px;
}
.strikes-header .country-dropdown {
  position: relative;
  display: inline-block;
  width: auto;
  min-width: 180px;
}
.strikes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.strike-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
.strike-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 64, 118, 0.15);
}
.strike-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 16px;
}
.strike-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.strike-date {
  color: var(--text-dim);
  font-size: 14px;
  white-space: nowrap;
}
.strike-date-label {
  background: var(--primary-100);
  color: var(--primary-600);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--primary-200);
}
.past-label {
  background: var(--text-dim);
  color: white;
  border-color: var(--text-dim);
}
.section-divider {
  position: relative;
  text-align: center;
  margin: 48px 0 32px 0;
}
.section-divider hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}
.divider-text {
  background: var(--bg);
  color: var(--text-dim);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.past-strikes-section {
  margin-top: 32px;
}
.strike-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.pill.blue { background: var(--primary-50); color: var(--primary-600); }
.strike-description {
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}
.effective-dates {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.effective-dates strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 8px;
  white-space: nowrap;
}
.effective-dates-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.effective-dates-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.effective-date-item {
  background: var(--primary-50);
  color: var(--primary-600);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--primary-200);
}
.public-impact-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.public-impact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.public-impact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.2s ease;
}
.public-impact-icon:hover {
  background: var(--primary-50);
  border-color: var(--primary-200);
  transform: translateY(-1px);
}

/* Tabs */
.tabs {
  display: flex;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  gap: 4px;
  width: fit-content;
}
.tab {
  padding: 12px 20px;
  text-align: center;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-dim);
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  min-width: fit-content;
}
.tab:hover {
  background: var(--primary-50);
  color: var(--text);
}
.tab.active {
  background: white;
  color: var(--text);
  box-shadow: 0 2px 4px rgba(13, 64, 118, 0.1);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Country Dropdown (strike-list specific) */
.country-dropdown {
  position: relative;
  display: inline-block;
  width: auto;
  min-width: 200px;
}
.country-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(13, 64, 118, 0.08);
}
.country-dropdown-toggle:hover {
  background: var(--primary-50);
  border-color: var(--primary-200);
}
.country-dropdown-toggle.active {
  background: var(--primary-100);
  border-color: var(--primary-300);
}
.country-selected {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown-arrow {
  transition: transform 0.2s ease;
  color: var(--text-dim);
}
.dropdown-arrow.open {
  transform: rotate(180deg);
}
.country-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  min-width: 200px;
}
.country-dropdown-menu.open {
  display: block;
}
.country-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.country-option:last-child {
  border-bottom: none;
}
.country-option:hover {
  background: var(--primary-50);
}
.country-option.active {
  background: var(--primary-100);
}
.country-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.country-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.country-arrow {
  color: var(--text-dim);
  font-size: 18px;
  font-weight: 600;
}
.country-btn:hover .country-arrow {
  color: var(--primary-600);
  transform: translateX(4px);
}

/* Hidden strike items */
.strike-item.filtered-out {
  display: none !important;
}

@media (max-width: 768px) {
  .strikes-header { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 12px;
  }
  .strikes-header .country-dropdown {
    align-self: flex-end;
    min-width: 160px;
  }
  .strike-header { flex-direction: column; align-items: flex-start; }
  .tabs { flex-direction: column; }
}

/* Strike Detail Page Styles */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 24px;
  transition: all 0.2s ease;
}
.back-btn:hover {
  background: var(--primary-50);
  border-color: var(--primary-200);
}

.strike-detail {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.strike-header {
  margin-bottom: 24px;
}
.strike-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.strike-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pill.gray { background: var(--bg-soft); color: var(--text-dim); }

.strike-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}

.detail-section {
  margin-bottom: 24px;
}
.detail-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--text);
}
.detail-section p {
  margin: 0 0 8px 0;
  color: var(--text-dim);
}
.detail-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-dim);
}
.detail-section li {
  margin-bottom: 4px;
}

.citations {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.citations h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
}
.citations ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.citations li {
  margin-bottom: 8px;
}
.citations a {
  color: var(--primary-600);
  text-decoration: none;
  font-size: 14px;
}
.citations a:hover {
  text-decoration: underline;
}

/* Public Impact */
.public-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.impact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.impact-icon {
  font-size: 20px;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: 50%;
  transition: all 0.2s ease;
}
.impact-item:hover .impact-icon {
  background: var(--primary-100);
  transform: scale(1.1);
}
.impact-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 24px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-marker {
  position: absolute;
  left: -20px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-500);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--border);
}
.timeline-content {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 2px 4px rgba(13, 64, 118, 0.08);
}
.timeline-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.timeline-description {
  color: var(--text);
  line-height: 1.5;
}

/* Sources Toggle */
.sources-toggle {
  transition: color 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.sources-toggle:hover {
  color: var(--primary-500);
}
.sources-icon {
  transition: transform 0.2s ease;
  display: inline-block;
}
.sources-content {
  animation: slideDown 0.2s ease;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sources-content.hidden {
  display: none !important;
}
.sources-icon.rotated {
  transform: rotate(-90deg);
}
.timeline-sources {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.timeline-sources ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline-sources li {
  margin-bottom: 4px;
}
.timeline-sources a {
  color: var(--primary-600);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 768px) {
  .strike-title { font-size: 24px; }
  .strike-meta { flex-direction: column; }
  .public-impact-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
  }
  .impact-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .impact-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    margin: 0 auto;
  }
  .impact-label {
    font-size: 12px;
  }
  .timeline { padding-left: 16px; }
  .timeline-item { padding-left: 16px; }
  .timeline-marker { left: -12px; }
}

/* Contact Page Styles */
.contact-hero {
  text-align: center;
  padding: 48px 0 32px 0;
}
.contact-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 16px 0;
}
.contact-hero p {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(29, 135, 255, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  background: var(--primary-500);
  color: white;
  border: 1px solid var(--primary-600);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-submit:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-submit:disabled {
  background: var(--text-dim);
  cursor: not-allowed;
  transform: none;
}

.alert {
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-weight: 500;
}
.alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.alert-error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.required {
  color: var(--danger);
}

/* Contact Info Cards */
.contact-info {
  margin-top: 0;
}
.contact-info h2 {
  text-align: left;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 700;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(13, 64, 118, 0.08);
}
.info-card h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 700;
}
.info-card p {
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}

.response-time {
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
}
.response-time h3 {
  margin: 0 0 8px 0;
  color: var(--text);
}
.response-time p {
  margin: 0;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-container {
    padding: 24px;
    margin: 0 16px;
  }
  .contact-info h2 {
    text-align: center;
  }
  .info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .info-card {
    text-align: center;
  }
  .response-time {
    text-align: center;
  }
}

/* Legal Pages (Terms/Privacy) */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.legal h2 {
  margin-top: 0;
  font-size: 32px;
  color: var(--text);
  margin-bottom: 24px;
}
.legal h3 {
  margin-top: 32px;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 16px;
}
.legal p {
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}
.legal ul {
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
  padding-left: 20px;
}
.legal li {
  margin-bottom: 8px;
}
.legal a {
  color: var(--primary-600);
  text-decoration: none;
}
.legal a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal h2 { font-size: 28px; }
  .legal h3 { font-size: 18px; }
  .nav-inner { flex-direction: column; gap: 12px; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
}
