* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #ffffff;
  color: #111;
}

.page {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.hero {
  text-align: center;
  padding: 22px 4px 18px;
}

.top-message {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border: 1px solid #eee;
  border-radius: 999px;
  font-size: 14px;
  color: #555;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777;
}

h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.subtitle {
  max-width: 520px;
  margin: 14px auto 0;
  color: #666;
  font-size: 16px;
}

.reports-card,
.feature-card,
.donate-card {
  margin-top: 18px;
  border-radius: 30px;
  border: 1px solid #ececec;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.07);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.reports-card.show-card,
.feature-card.show-card,
.donate-card.show-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reports-card {
  padding: 24px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 105, 180, 0.32), transparent 32%),
    radial-gradient(circle at 80% 15%, rgba(255, 225, 90, 0.35), transparent 34%),
    radial-gradient(circle at 20% 90%, rgba(111, 255, 180, 0.25), transparent 35%),
    radial-gradient(circle at 85% 85%, rgba(105, 190, 255, 0.30), transparent 36%),
    linear-gradient(135deg, #fff4fb, #fffbea, #f4fff8, #f4f8ff);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 14px;
}

.live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #14b86a;
}

.live-dot:not(.offline) {
  animation: pulseLive 1.8s infinite;
}

.live-dot.offline {
  background: #999;
}

@keyframes pulseLive {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 184, 106, 0.35);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(20, 184, 106, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 106, 0);
  }
}

h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.section-subtitle {
  margin: 0 0 18px;
  color: #555;
}

.report-list {
  display: grid;
  gap: 12px;
}

.report-row {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.report-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.reporter {
  font-weight: 900;
  font-size: 18px;
}

.timestamp {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

.chevron {
  font-size: 22px;
  transition: transform 0.25s ease;
}

.report-row.open .chevron {
  transform: rotate(180deg);
}

.report-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.28s ease,
    opacity 0.28s ease,
    margin-top 0.28s ease;
  opacity: 0;
}

.report-row.open .report-body {
  max-height: 220px;
  opacity: 1;
  margin-top: 14px;
}

.report-quote {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.notice {
  margin: 18px 0 0;
  font-size: 13px;
  color: #666;
}

.feature-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 20px;
  background: #fff;
  align-items: center;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  border: 1px dashed #d8d8d8;
  background: #fff;
}

.feature-content h2 {
  font-size: 22px;
  margin-bottom: 4px;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.quote {
  margin: 0 0 10px;
  color: #555;
  line-height: 1.5;
}

a {
  color: #111;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.donate-card {
  padding: 24px;
  background: linear-gradient(135deg, #fff6fb, #fff, #f6fbff);
}

.donate-card p {
  color: #555;
  margin: 0 0 18px;
  line-height: 1.6;
}

.button {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 560px) {
  h1 {
    font-size: 36px;
  }

  .reports-card {
    padding: 20px;
  }

  .feature-card {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }
}
