/* ══════════════════════════════════════════════════
   REPORT PAGE
   Layered on top of home.css — reuses its tokens,
   masthead, footer, menu island and info FAB.
══════════════════════════════════════════════════ */

.report-page{
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.75rem 5rem;
}

.report-page .kicker{
  position: relative;
  font-family:'Big Shoulders Display', sans-serif;
  font-weight:700;
  font-size: 0.95rem;
  color: var(--purple-deep);
  margin-bottom: 0.9rem;
}

.report-page h1{
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.report-page .lede{
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 55ch;
  margin-bottom: 2rem;
}

.report-page code{
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: 0.92em;
  background: var(--paper-2);
  border: 1px solid rgba(34,17,43,0.2);
  border-radius: 4px;
  padding: 0.05rem 0.4rem;
  color: var(--purple-deep);
}

/* ══════════════════════════════════════════════════
   BEFORE YOU REPORT NOTICE
══════════════════════════════════════════════════ */
.before-note{
  background: var(--paper-2);
  border: 2px dashed rgba(34,17,43,0.3);
  border-radius: 14px 14px 14px 4px;
  padding: 1.15rem 1.35rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 2.25rem;
}
.before-note .before-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 0.55rem;
  animation: pulse 2.2s ease-in-out infinite;
}
.before-note .before-body{
  flex: 1;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}
.before-note strong{ color: var(--ink); }
.before-note a{
  color: var(--purple-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════════════════════════
   REPORT CARDS
══════════════════════════════════════════════════ */
.report-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.report-card{
  background: var(--paper-2);
  border: 3px solid var(--ink);
  border-radius: 18px 18px 18px 5px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 1.5rem 1.6rem;
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition:
    transform 420ms var(--ease-island),
    box-shadow 320ms var(--ease-island);
  text-decoration: none;
  color: inherit;
}
.report-card:hover{
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.report-card:active{
  transform: translate(0,0) scale(0.99);
  box-shadow: 3px 3px 0 var(--ink);
  transition-duration: 240ms;
}

.report-icon{
  width: 52px;
  height: 52px;
  border-radius: 30%;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  transition: transform 420ms var(--ease-island);
}
.report-card:hover .report-icon{ transform: scale(1.06) rotate(-3deg); }

.report-body{
  flex: 1;
  min-width: 0;
}
.report-body h2{
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.report-body p{
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 0.4rem;
}
.report-body p:last-child{ margin-bottom: 0; }
.report-body code{
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: 0.9em;
  background: var(--white);
  border: 1px solid rgba(34,17,43,0.2);
  border-radius: 4px;
  padding: 0.05rem 0.4rem;
  color: var(--purple-deep);
}
.report-body .report-tag{
  display: inline-block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-deep);
  background: var(--white);
  border: 1.5px solid rgba(34,17,43,0.2);
  border-radius: 10px 10px 10px 3px;
  padding: 0.15rem 0.55rem;
  margin-top: 0.65rem;
}

.report-arrow{
  align-self: center;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform 420ms var(--ease-island);
  padding-right: 0.2rem;
}
.report-card:hover .report-arrow{ transform: translateX(4px); }

/* ══════════════════════════════════════════════════
   REPORT SECTIONS (what to include / not report)
══════════════════════════════════════════════════ */
.report-section{
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 2px dotted rgba(34,17,43,0.3);
}
.report-section h2{
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.report-section p{
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 62ch;
  margin-bottom: 0.85rem;
}
.report-section p:last-child{ margin-bottom: 0; }

.report-list{
  padding-left: 0;
  list-style: none;
  margin-bottom: 0.85rem;
}
.report-list li{
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  color: var(--muted);
  font-size: 0.96rem;
  border-bottom: 1px dashed rgba(34,17,43,0.12);
}
.report-list li:last-child{ border-bottom: 0; }
.report-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
}
.report-list li strong{ color: var(--ink); }

/* ══════════════════════════════════════════════════
   CTA ROW
══════════════════════════════════════════════════ */
.report-cta{
  margin-top: 2rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 640px){
  .report-page{ padding: 3rem 1.35rem 4rem; }
  .report-card{ padding: 1.25rem 1.35rem; gap: 1rem; }
  .report-icon{ width: 46px; height: 46px; font-size: 1.35rem; }
  .report-body h2{ font-size: 1.15rem; }
  .report-arrow{ display: none; }
}

@media (prefers-reduced-motion: reduce){
  .before-note .before-dot{
    animation: none !important;
  }
  .report-card,
  .report-icon,
  .report-arrow{
    transition: none !important;
  }
  .report-card:hover,
  .report-card:active{
    transform: none !important;
  }
  .report-card:hover .report-icon{
    transform: none !important;
  }
  .report-card:hover .report-arrow{
    transform: none !important;
  }
}