/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        #3182CE;
  --primary-dark:   #074F8B;
  --primary-light:  #EBF8FF;
  --accent:         #107DC2;
  --accent-grad:    #63CAE2;
  --dark:           #1A202C;
  --charcoal:       #2D3748;
  --gray-600:       #4A5568;
  --gray-500:       #718096;
  --gray-300:       #CBD5E0;
  --gray-200:       #EDF2F7;
  --gray-100:       #F7FAFC;
  --border:         #E2E8F0;
  --white:          #FFFFFF;
  --btn-dark:       #32373c;
  --btn-dark-hover: #1A1D20;
  --danger:         #E53E3E;
  --danger-light:   #FFF5F5;
  --orange:         #DD6B20;
  --orange-light:   #FFFAF0;
  --warning:        #D69E2E;
  --warning-light:  #FEFCBF;
  --blue:           #3182CE;
  --blue-light:     #EBF8FF;
  --radius:         4px;
  --radius-md:      6px;
  --shadow-sm:      0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.1);
  --shadow:         0 1px 3px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md:      6px 6px 9px rgba(0,0,0,0.12);
  --shadow-lg:      0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.06);
}

html, body { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--gray-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
  font-weight: 300;
  line-height: 1.25;
  color: var(--dark);
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.view { display: none; min-height: 100vh; }
.view.active { display: flex; flex-direction: column; }

/* SITE HEADER */
.site-header {
  position: fixed;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  width: 100%;
  top: 0;
  padding: 0;
}
.site-header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo { display: inline-flex; align-items: center; gap: 10px; }
.site-logo-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300; font-size: 18px; color: var(--primary-dark);
  letter-spacing: -0.01em;
}

/* LANDING */
.landing-container {
  margin: 0 auto;
  padding: 0 24px 60px;
  width: 100%;
  flex: 1;
  max-width: 780px;
  padding-top: 80px;
}
.gradient_wrap {
  background-image: url(https://www.planeteria.com/wp-content/themes/planeteriaweb/img/Hero%20gradient%20animation_page.svg);
  background-position: right top;
  background-repeat: no-repeat;
}
.landing-hero { padding: 56px 0 36px; text-align: left; }
.hero-rule {
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--accent-grad), var(--accent));
  margin-bottom: 24px; border-radius: 2px;
}
.hero-title {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-sub { font-size: 16px; color: var(--gray-500); line-height: 1.6; }

.landing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
}
.landing-card h2 { font-size: 18px; color: var(--dark); margin-bottom: 6px; }
.landing-desc { color: var(--gray-500); margin-bottom: 24px; font-size: 14px; }

/* MODE TOGGLE */
.audit-mode-toggle {
  display: flex; gap: 6px; margin-bottom: 20px;
  background: var(--gray-100); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 4px;
}
.mode-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 14px; border: none; border-radius: calc(var(--radius) - 2px);
  font-size: 13px; font-weight: 600; cursor: pointer;
  color: var(--gray-500); background: transparent; transition: all 0.15s;
  font-family: inherit;
}
.mode-btn:hover { color: var(--dark); background: var(--white); }
.mode-btn.active { background: var(--white); color: var(--primary); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

/* URL INPUT */
.url-input-wrap { position: relative; margin-bottom: 20px; }
.url-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--gray-300); pointer-events: none;
}
.url-input-wrap input {
  width: 100%; padding: 11px 14px 11px 40px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white); color: var(--dark);
  font-family: inherit;
}
.url-input-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.url-input-wrap input::placeholder { color: var(--gray-300); }

/* OPTIONS */
.options-row { margin-bottom: 24px; }
.option-label { display: block; }
.option-label > span {
  font-size: 12px; font-weight: 600;
  color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px;
  display: block; margin-bottom: 10px;
}
.slider-wrap { display: flex; align-items: center; gap: 14px; }
.slider-wrap input[type=range] { flex: 1; height: 4px; cursor: pointer; accent-color: var(--primary); }
.slider-value {
  min-width: 40px; text-align: center;
  font-weight: 700; font-size: 15px; color: var(--primary-dark);
  background: var(--primary-light);
  padding: 2px 10px; border-radius: var(--radius);
}

/* URL LIST */
.url-list-textarea {
  width: 100%; padding: 11px 14px;
  font-size: 13px; font-family: 'Menlo', 'Consolas', monospace;
  border: 1px solid var(--border); border-radius: var(--radius);
  outline: none; resize: vertical; min-height: 160px;
  color: var(--dark); background: var(--white); line-height: 1.6;
  margin-bottom: 8px;
}
.url-list-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.url-list-textarea::placeholder { color: var(--gray-300); }
.url-list-count { font-size: 12px; color: var(--gray-500); margin-bottom: 20px; min-height: 18px; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--btn-dark); color: var(--white);
  border: none; border-radius: var(--radius);
  font-weight: 600; cursor: pointer; font-size: 14px;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none; font-family: inherit;
  padding: 10px 20px;
}
.btn-primary:hover { background: var(--btn-dark-hover); text-decoration: none; }
.btn-primary:active { transform: scale(0.99); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-primary.btn-large, .btn-large {
  width: 100%; justify-content: center;
  padding: 13px 24px; font-size: 15px;
  margin-top: 12px;
}
.btn-primary.btn-sm, .btn-sm { padding: 7px 14px; font-size: 13px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--gray-600);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-weight: 500; cursor: pointer; font-size: 13px;
  transition: background 0.15s, color 0.15s; font-family: inherit;
  padding: 7px 14px;
}
.btn-ghost:hover { background: var(--gray-200); color: var(--dark); }

.btn-report {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary); color: var(--white);
  border: none; border-radius: var(--radius); padding: 7px 14px;
  font-weight: 600; cursor: pointer; font-size: 13px;
  transition: background 0.15s; font-family: inherit;
}
.btn-report:hover { background: var(--primary-dark); text-decoration: none; }

/* RECENT AUDITS */
.recent-audits { margin-bottom: 32px; }
.recent-audits h3 {
  font-family: inherit; font-weight: 600;
  font-size: 11px; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px;
}
.recent-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  margin-bottom: 6px; cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.recent-item:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}
.recent-url { font-weight: 600; font-size: 13px; flex: 1; color: var(--dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.recent-status {
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: var(--radius);
}
.recent-status.completed { background: #dcfce7; color: #16a34a; }
.recent-status.error { background: var(--danger-light); color: var(--danger); }
.recent-status.running { background: var(--blue-light); color: var(--blue); }
.recent-time { font-size: 11px; color: var(--gray-500); }

/* FEATURES */
.landing-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-top: 28px;
}
.feature {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
}
.feature-icon { display: flex; align-items: center; margin-bottom: 2px; }
.feature strong { font-family: inherit; font-weight: 600; font-size: 13px; color: var(--dark); }
.feature span:last-child { font-size: 12px; color: var(--gray-500); }

/* FOOTER */
.site-footer {
  background: var(--dark); color: var(--gray-300);
  border-top: none; margin-top: auto; flex-shrink: 0;
}
.site-footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
.site-footer a { color: var(--accent-grad); }
.site-footer a:hover { color: var(--white); }

/* TOPBAR */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  padding: 10px 24px;
}
.brand-small {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.brand-small span {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300; font-size: 15px; color: var(--primary-dark);
}
.topbar-url {
  flex: 1; font-size: 13px; color: var(--gray-500);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  text-align: center;
}
.topbar-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}

/* PROGRESS */
.progress-container {
  max-width: 760px; margin: 40px auto;
  padding: 0 24px; flex: 1;
}
.progress-status-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  margin-bottom: 20px; box-shadow: var(--shadow);
}
.phase-icon { flex-shrink: 0; }
.phase-label {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300; font-size: 17px; color: var(--dark);
}
.progress-current-url {
  font-size: 12px; color: var(--gray-500);
  margin-top: 4px; word-break: break-all; max-width: 540px;
}

.spinner {
  width: 38px; height: 38px;
  border: 3px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
.mini-spinner {
  border: 2px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.progress-bar-wrap { margin-bottom: 24px; }
.progress-bar-track {
  height: 8px; background: var(--gray-200);
  border-radius: 99px; overflow: hidden; margin-bottom: 8px;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-grad), var(--primary));
  border-radius: 99px; transition: width 0.4s ease;
}
.progress-counts { font-size: 12px; color: var(--gray-500); text-align: right; }

.progress-page-list {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow);
  max-height: 420px; overflow-y: auto;
}
.progress-page-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.progress-page-item:last-child { border-bottom: none; }
.progress-page-item .check { font-weight: 700; color: #16a34a; }
.progress-page-item .url {
  flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  color: var(--charcoal);
}
.progress-page-item .count { font-weight: 600; color: var(--primary); }

/* SCANNING BANNER */
.results-scanning-banner {
  background: var(--primary-light); border-bottom: 1px solid #bee3f8;
  padding: 9px 24px; flex-shrink: 0;
}
.rsb-inner { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.rsb-label { font-size: 13px; font-weight: 600; color: var(--primary-dark); white-space: nowrap; }
.rsb-bar-track { flex: 1; height: 6px; background: #bee3f8; border-radius: 3px; min-width: 60px; max-width: 180px; overflow: hidden; }
.rsb-bar-fill { height: 100%; background: var(--primary); border-radius: 3px; transition: width 0.4s; }
.rsb-counts { font-size: 12px; color: var(--primary-dark); white-space: nowrap; font-weight: 600; }
.rsb-current-url { font-size: 11.5px; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }

/* SUMMARY BANNER */
.summary-banner {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 20px 24px;
  flex-shrink: 0;
}
.summary-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 36px;
}
.summary-stats { display: flex; align-items: center; gap: 24px; flex: 1; }
.stat-block { text-align: center; }
.stat-value {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 30px; font-weight: 300; color: var(--dark); line-height: 1;
}
.stat-label {
  font-size: 10px; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.6px; margin-top: 4px;
}
.stat-divider { width: 1px; height: 44px; background: var(--border); }
.severity-block { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.sev-row { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600); }
.sev-row span:first-of-type { font-weight: 700; min-width: 18px; }
.sev-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.sev-dot.critical { background: var(--danger); }
.sev-dot.serious  { background: var(--orange); }
.sev-dot.moderate { background: var(--warning); }
.sev-dot.minor    { background: var(--blue); }

/* RESULTS LAYOUT */
.results-layout { display: flex; flex: 1; min-height: 0; }

.pages-panel {
  width: 360px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  background: var(--white);
  display: flex; flex-direction: column;
}
.panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.panel-header h3 {
  font-family: inherit; font-weight: 600; font-size: 13px;
  color: var(--dark); display: flex; align-items: center; gap: 8px;
}
.badge {
  display: inline-block; background: var(--gray-200);
  border: 1px solid var(--border); border-radius: 99px;
  padding: 1px 8px; font-size: 11px; font-weight: 600; color: var(--gray-500);
}
.sort-select {
  font-size: 12px; padding: 4px 8px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--gray-100); color: var(--charcoal);
  cursor: pointer; outline: none; font-family: inherit;
}
.sort-select:focus { border-color: var(--primary); }

.pages-list { flex: 1; overflow-y: auto; }
.pdf-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 18px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background 0.1s; border-left: 3px solid transparent;
}
.pdf-item:hover { background: var(--gray-100); }
.pdf-item.selected {
  background: var(--primary-light); border-left-color: var(--primary);
}
.pdf-item.selected .pdf-item-name { color: var(--primary-dark); font-weight: 600; }

.pdf-item-icon {
  width: 32px; height: 32px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--white);
}
.pdf-item-icon.good { background: #276749; }
.pdf-item-icon.ok { background: var(--warning); }
.pdf-item-icon.bad { background: var(--danger); }
.pdf-item-icon.error-icon { background: var(--gray-500); }
.pdf-item-icon.pending { background: var(--gray-200); color: var(--gray-500); }

.pdf-item-info { flex: 1; min-width: 0; }
.pdf-item-name {
  font-size: 12px; font-weight: 600; color: var(--dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pdf-item-title {
  font-size: 11px; color: var(--gray-600); font-style: italic;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 1px;
}
.pdf-item-url {
  font-size: 11px; color: var(--gray-300); margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pdf-item-meta {
  font-size: 10.5px; color: var(--gray-500); margin-top: 3px;
  display: flex; gap: 10px;
}
.pdf-item-issues {
  font-size: 11px; font-weight: 700; white-space: nowrap; text-align: right;
}
.pdf-item-issues.has-issues { color: var(--danger); }
.pdf-item-issues.no-issues { color: #276749; }
.pdf-item-status {
  font-size: 10px; font-weight: 600; padding: 2px 6px;
  border-radius: var(--radius); white-space: nowrap;
}
.pdf-item-status.tagged { background: #dcfce7; color: #276749; }
.pdf-item-status.not-tagged { background: var(--danger-light); color: var(--danger); }

/* ISSUES PANEL */
.issues-panel {
  flex: 1; overflow-y: auto; background: var(--gray-100);
  display: flex; flex-direction: column;
}
.issues-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px;
  flex: 1; min-height: 300px; color: var(--gray-500);
}
.issues-placeholder p { font-size: 13px; }

.issues-header {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 20px;
  background: var(--white); border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.issue-page-url {
  font-size: 13px; font-weight: 600; color: var(--dark);
  word-break: break-all;
}
.issue-pdf-title {
  font-size: 12px; color: var(--gray-600); font-style: italic;
  margin-top: 2px;
}
.issue-pdf-meta {
  font-size: 11.5px; color: var(--gray-500); display: flex; gap: 14px; flex-wrap: wrap;
}
.issue-pdf-meta span { display: flex; align-items: center; gap: 4px; }

/* FILTER BAR */
.filter-bar {
  display: flex; gap: 6px; padding: 10px 20px;
  background: var(--white); border-bottom: 1px solid var(--border);
  flex-wrap: wrap; flex-shrink: 0;
}
.filter-btn {
  padding: 4px 12px; font-size: 11px; font-weight: 600;
  border-radius: 99px; border: 1px solid var(--border);
  background: var(--gray-100); color: var(--gray-600);
  cursor: pointer; transition: all 0.12s; font-family: inherit;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.filter-btn:hover { background: var(--border); }
.filter-btn.active { background: var(--btn-dark); color: var(--white); border-color: var(--btn-dark); }
.filter-btn[data-severity="critical"].active { background: var(--danger); border-color: var(--danger); }
.filter-btn[data-severity="serious"].active  { background: var(--orange); border-color: var(--orange); }
.filter-btn[data-severity="moderate"].active { background: var(--warning); border-color: var(--warning); }
.filter-btn[data-severity="minor"].active    { background: var(--blue); border-color: var(--blue); }

/* ISSUES LIST */
#issues-list { padding: 16px 20px; flex: 1; overflow-y: auto; }

.issue-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 10px;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.issue-card-header {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  background: var(--gray-100);
}
.issue-severity-badge, .sev-tag {
  display: inline-block; padding: 2px 8px;
  border-radius: var(--radius); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap; flex-shrink: 0; color: var(--white);
}
.issue-severity-badge.critical, .sev-tag.critical { background: var(--danger); }
.issue-severity-badge.serious, .sev-tag.serious   { background: var(--orange); }
.issue-severity-badge.moderate, .sev-tag.moderate  { background: var(--warning); }
.issue-severity-badge.minor, .sev-tag.minor        { background: var(--blue); }

.issue-wcag-badge, .wcag-tag {
  font-size: 10px; color: var(--gray-500);
  background: var(--white); border: 1px solid var(--border);
  padding: 2px 6px; border-radius: var(--radius);
  white-space: nowrap; flex-shrink: 0;
}
.issue-title {
  font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--dark); flex: 1; line-height: 1.4;
}
.issue-description {
  padding: 12px 14px;
  font-size: 12px; color: var(--gray-600); line-height: 1.65;
}
.issue-rescan-btn {
  font-size: 11px; font-weight: 600; color: var(--primary);
  background: var(--primary-light); border: 1px solid #bee3f8; border-radius: var(--radius);
  padding: 4px 10px; cursor: pointer;
}
.issue-rescan-btn:hover { background: #bee3f8; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .results-layout { flex-direction: column; }
  .pages-panel { width: 100%; border-right: none; border-bottom: 1px solid var(--border); max-height: 280px; }
  .summary-inner { flex-wrap: wrap; gap: 16px; }
  .landing-features { grid-template-columns: 1fr; }
  .site-header-inner { padding: 14px 20px; }
  .landing-container { padding: 0 16px 40px; padding-top: 70px; }
}

@media print {
  .topbar, .filter-bar, #issue-filter-bar, .site-header { display: none !important; }
}
