:root {
  --bg: #f6f2e8;
  --surface: rgba(255, 250, 242, 0.78);
  --surface-strong: #fff8ef;
  --ink: #1f2933;
  --muted: #5d6b78;
  --border: rgba(31, 41, 51, 0.12);
  --accent: #f05a28;
  --accent-dark: #b93f1a;
  --green: #1f8f5f;
  --critical: #d62828;
  --high: #f77f00;
  --medium: #fcbf49;
  --low: #5fa8d3;
  --shadow: 0 20px 60px rgba(45, 34, 18, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(240, 90, 40, 0.18), transparent 28%),
    radial-gradient(circle at right 20%, rgba(95, 168, 211, 0.15), transparent 25%),
    linear-gradient(180deg, #f5ecdc 0%, #f4f1ea 100%);
  color: var(--ink);
}

.page-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
}

.hero,
.section,
.panel-card,
.map-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  background: rgba(250, 244, 234, 0.82);
  border-radius: 28px;
  padding: 24px 24px 36px;
}

.topbar,
.hero-grid,
.section-header,
.dashboard-grid,
.form-layout,
.action-row,
.field-grid,
.card-header,
.filter-row,
.hero-metrics,
.topbar-actions {
  display: flex;
  gap: 16px;
}

.topbar,
.section-header,
.card-header {
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), #f5a623);
  color: white;
  font-weight: 700;
}

.brand p,
.brand span,
.eyebrow,
.legend,
.section-note,
.panel-label,
.hero-text,
.hero-list,
.field span,
.stack-meta,
.form-message {
  margin: 0;
}

.brand p {
  font-weight: 700;
}

.brand span,
.legend,
.section-note,
.panel-label,
.hero-text,
.stack-meta,
.form-message {
  color: var(--muted);
}

.hero-grid {
  margin-top: 44px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.map-card,
.panel-card,
.section {
  border-radius: 24px;
}

.hero-copy {
  flex: 1.2;
}

.hero-panel {
  flex: 0.8;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.96), rgba(249, 237, 217, 0.84));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 11ch;
  margin-top: 16px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.6rem;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 62ch;
  margin-top: 20px;
  line-height: 1.7;
}

.hero-list {
  padding-left: 20px;
  margin-top: 18px;
  display: grid;
  gap: 12px;
  line-height: 1.5;
}

.metric {
  min-width: 160px;
  background: rgba(255, 248, 239, 0.94);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.metric strong {
  display: block;
  font-size: 2rem;
  font-family: "Fraunces", serif;
}

.metric span {
  color: var(--muted);
}

.button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #ff6b3d, #ea3800);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(234, 56, 0, 0.3);
}
.button-primary:hover {
  box-shadow: 0 6px 16px rgba(234, 56, 0, 0.4);
}

.button-secondary {
  background: rgba(255, 248, 239, 0.92);
  border-color: var(--border);
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.section {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.78);
}

.filter-row {
  flex-wrap: wrap;
  align-items: center;
}

/* View Toggle */
.view-toggle {
  display: flex;
  background: white;
  border-radius: 99px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 4px;
}
.toggle-btn {
  padding: 8px 16px;
  border-radius: 99px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.toggle-btn.active {
  background: #f8f9fa;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dashboard-grid {
  margin-top: 24px;
  align-items: start;
}

.map-card {
  flex: 1.2;
  padding: 24px;
  background: linear-gradient(180deg, rgba(248, 241, 230, 0.95), rgba(255, 250, 242, 0.82));
}

.panel-card {
  flex: 0.8;
  padding: 24px;
  background: rgba(255, 250, 242, 0.94);
}

.map-frame {
  position: relative;
  margin-top: 18px;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, 0.08);
  z-index: 1;
}

.map-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.critical {
  background: var(--critical);
}

.high {
  background: var(--high);
}

.medium {
  background: var(--medium);
}

.low {
  background: var(--low);
}

.stack-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.stack-item,
.constituency-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.stack-item h4,
.constituency-card h4,
.feed-item h4 {
  margin: 0;
  font-size: 1.05rem;
}

.stack-item p,
.constituency-card p,
.feed-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(31, 41, 51, 0.07);
}

.chip.score {
  background: rgba(240, 90, 40, 0.12);
  color: var(--accent-dark);
}

.constituency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.constituency-card {
  position: relative;
  overflow: hidden;
}

.constituency-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -42px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 90, 40, 0.14), transparent 65%);
}

.status-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(31, 41, 51, 0.08);
  overflow: hidden;
  margin-top: 16px;
}

.status-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ffb703);
}

.form-section {
  margin-bottom: 32px;
}

.form-layout {
  align-items: start;
  margin-top: 24px;
}

.report-form {
  flex: 1.1;
  display: grid;
  gap: 16px;
}

.action-row {
  align-items: center;
  flex-wrap: wrap;
}

.field {
  display: grid;
  gap: 10px;
}

.field span {
  font-weight: 700;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(31, 41, 51, 0.14);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

button {
  border: 0;
  cursor: pointer;
}

.compact .feed-item + .feed-item {
  margin-top: 14px;
}

.photo-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.photo-card {
  position: relative;
  border: 1px solid rgba(31, 41, 51, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card span {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.feed-item {
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
  padding-bottom: 14px;
}

.feed-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.marker-label {
  font-size: 12px;
  fill: #31414f;
  font-weight: 700;
}

.map-marker {
  cursor: pointer;
  transition: transform 160ms ease;
  transform-origin: center;
}

.map-marker:hover {
  transform: scale(1.04);
}

@media (max-width: 960px) {
  .hero-grid,
  .dashboard-grid,
  .form-layout {
    flex-direction: column;
  }

  .constituency-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 90px;
  }

  .desktop-only {
    display: none !important;
  }

  .fab-wide {
    display: flex;
  }

  .page-shell {
    padding: 0;
  }

  .hero,
  .section,
  .map-card,
  .panel-card {
    padding: 24px 16px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .hero {
    padding-top: 16px;
  }

  h1 {
    font-size: 3rem;
  }

  .field-grid,
  .hero-metrics {
    flex-direction: column;
  }

  .photo-preview {
    grid-template-columns: 1fr;
  }

  body {
    overflow: hidden;
    height: 100vh;
    padding-bottom: 0;
  }
  
  .page-shell {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  #map-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
    padding: 0;
    min-height: 0;
  }

  .map-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .map-frame {
    height: 100%;
    flex: 1;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }

  .hero-grid, #constituencies {
    display: block; /* now naturally hidden via list-modal top: 100vh */
  }

  .list-modal {
    position: fixed;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fdfaf5;
    z-index: 3000;
    overflow-y: auto;
    transition: top 0.35s cubic-bezier(0.175, 0.885, 0.32, 1);
    padding-bottom: 120px;
  }
  
  .list-modal:target {
    top: 0;
  }

  #report-form {
    position: fixed;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fdfaf5;
    z-index: 3000;
    overflow-y: auto;
    transition: top 0.35s cubic-bezier(0.175, 0.885, 0.32, 1);
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 24px;
    padding-top: calc(16px + env(safe-area-inset-top));
    padding-bottom: 120px;
  }

  #report-form:target {
    top: 0;
  }
}

/* Accountability Styles */
.button-twitter {
  background: #1da1f2;
  color: white;
  margin-top: 18px;
}
.button-twitter:hover {
  background: #1a91da;
  color: white;
}

/* Form Specific Namma Kasa Styles */
.field-label-custom {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.photo-upload-box {
  border: 2px dashed #ecc94b;
  background: #fefcbf;
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  cursor: pointer;
}
.photo-upload-label { cursor: pointer; display: flex; flex-direction: column; align-items: center; }
.photo-upload-btn {
  background: #1a202c;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 16px;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 56, 0, 0.4);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(234, 56, 0, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(234, 56, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 56, 0, 0); }
}

.fab-wide {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b3d, #ea3800);
  color: white;
  padding: 16px 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 8px 24px rgba(234, 56, 0, 0.4), inset 0px 2px 4px rgba(255,255,255,0.4);
  text-decoration: none;
  z-index: 1000;
  border: none;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1);
  animation: pulseGlow 2.5s infinite;
}

.fab-wide:active {
  transform: translateX(-50%) scale(0.95);
}

.button-secondary {
  background: none;
  border: none;
  color: #3182ce;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 0.95rem;
  width: fit-content;
}

.severity-radio-group { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.severity-card { cursor: pointer; }
.severity-card input[type="radio"] { display: none; }
.severity-card-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  background: white;
  transition: all 0.2s;
}
.radio-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
  margin-top: 2px;
}
.severity-text strong { display: block; font-size: 1.1rem; color: var(--ink); margin-bottom: 4px; }
.severity-text p { margin: 0; font-size: 0.85rem; color: var(--muted); line-height: 1.4; }

.severity-card input[type="radio"]:checked + .severity-card-content.border-low { border-color: #cbd5e0; box-shadow: 0 0 0 1px #cbd5e0; }
.severity-card input[type="radio"]:checked + .severity-card-content.border-low .indicator-low { background: #cbd5e0; }

.severity-card input[type="radio"]:checked + .severity-card-content.border-medium { border-color: #f6ad55; box-shadow: 0 0 0 1px #f6ad55; }
.severity-card input[type="radio"]:checked + .severity-card-content.border-medium .indicator-medium { background: #f6ad55; }

.severity-card input[type="radio"]:checked + .severity-card-content.border-high { border-color: #ed8936; box-shadow: 0 0 0 1px #ed8936; }
.severity-card input[type="radio"]:checked + .severity-card-content.border-high .indicator-high { background: #ed8936; }

.severity-card input[type="radio"]:checked + .severity-card-content.border-critical { border-color: #f56565; box-shadow: 0 0 0 1px #f56565; }
.severity-card input[type="radio"]:checked + .severity-card-content.border-critical .indicator-critical { background: #f56565; }

@keyframes pulse-critical {
  0% { transform: scale(1); stroke-width: 0; stroke-opacity: 1; }
  50% { stroke-width: 14px; stroke: #d62828; stroke-opacity: 0.3; }
  100% { transform: scale(1); stroke-width: 0; stroke: #d62828; stroke-opacity: 0; }
}

.leaflet-marker-critical {
  animation: pulse-critical 2s infinite;
  transform-origin: center;
}

.incident-bubble-wrapper {
  background: transparent;
  border: none;
}

.incident-bubble {
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  border: 4px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    0 0 0 12px rgba(255, 255, 255, 0.16);
}

.incident-bubble-critical {
  background: radial-gradient(circle at 30% 30%, #ff9b9b, #d62828 62%, #8f1111 100%);
}

.incident-bubble-high {
  background: radial-gradient(circle at 30% 30%, #ffc98a, #f77f00 62%, #b45100 100%);
}

.incident-bubble-medium {
  background: radial-gradient(circle at 30% 30%, #ffe59a, #fcbf49 62%, #c28d1d 100%);
}

.incident-bubble-low {
  background: radial-gradient(circle at 30% 30%, #9fd8f7, #5fa8d3 62%, #347ea9 100%);
}

.popup-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
  display: block;
}

.popup-constituency {
  color: var(--muted);
  font-size: 0.9rem;
}

.popup-status {
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 4px;
}

/* Mobile Layout Elements */
.fab-wide {
  display: none;
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 20px;
  right: 20px;
  background: #d62828; 
  color: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(214, 40, 40, 0.4);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 160ms;
}

.fab-wide:active {
  transform: scale(0.97);
}

.fab-wide svg {
  width: 22px;
  height: 22px;
}

/* Map Stats Overlay */
.map-stats-overlay {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 28px;
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 1000;
  gap: 32px;
  pointer-events: auto;
  white-space: nowrap;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stat-val {
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.stat-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media (max-width: 720px) {
  .map-stats-overlay {
    top: 12px;
    padding: 8px 20px;
    gap: 16px;
    width: 90%;
    max-width: 320px;
    justify-content: space-between;
  }
}

/* Bottom Sheet Core */
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 85vh;
  background: #ffffff;
  border-radius: 28px 28px 0 0;
  z-index: 2005;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(105%);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.bottom-sheet.sheet-open {
  transform: translateY(0);
}

.sheet-drag-handle {
  width: 48px;
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  margin: 12px auto;
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sheet-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  display: flex;
}
.sheet-close svg { width: 24px; height: 24px; }

.sheet-tags {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag-critical { color: var(--critical); display: flex; align-items: center; gap: 6px; }
.tag-critical::before { content: ""; width: 8px; height: 8px; background: var(--critical); border-radius: 50%; }
.tag-status { color: var(--accent); background: rgba(240, 90, 40, 0.12); padding: 4px 10px; border-radius: 99px; }

.sheet-scroll-content {
  overflow-y: auto;
  padding: 24px;
  flex: 1;
}

.sheet-title { font-size: 1.8rem; margin: 0; color: var(--ink); font-family: inherit; }
.sheet-address { color: var(--muted); font-size: 0.95rem; margin-top: 6px; display: flex; align-items: center; gap: 6px; }

.sheet-image-container img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin: 20px 0;
}

.sheet-metrics-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.sheet-metric {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.sheet-metric strong { display: block; font-size: 1.5rem; color: var(--accent-dark); font-weight: 700; margin-bottom: 4px; }
.sheet-metric span { color: var(--muted); font-size: 0.8rem; font-weight: 700; }

.sheet-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tree-layout {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.tree-node {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}
.tree-node:last-child { margin-bottom: 0; }
.tree-node h4 { margin: 8px 0 4px; font-size: 1.1rem; }
.tree-node p { margin: 0; color: var(--muted); font-size: 0.85rem; }

.sheet-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.sheet-btn {
  padding: 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.primary-btn { background: #20c997; color: white; }
.secondary-btn { background: #f8f9fa; color: var(--ink); border: 1px solid rgba(0,0,0,0.1); }
.sheet-disclaimer { text-align: center; font-size: 0.8rem; color: #adb5bd; margin-top: 8px; }
