*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple: #9278D1;
  --cyan: #0CC6DE;
  --purple-dark: #6B52B5;
  --purple-deeper: #4A3580;
  --dark: #1a1a2e;
  --light: #f8f9fc;
  --text: #2d2d3a;
  --text-light: #6b7280;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
  --gradient-dark: linear-gradient(135deg, var(--purple-deeper) 0%, var(--dark) 60%);
  --font-heading: 'Noto Serif', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gridPulse {
  0% { opacity: 0.03; }
  50% { opacity: 0.08; }
  100% { opacity: 0.03; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Header ── */
.header {
  position: relative;
  background: linear-gradient(160deg, #2a2052 0%, var(--dark) 40%, #0f2035 70%, var(--dark) 100%);
  height: 320px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
.header-content {
  position: relative; z-index: 2; max-width: 700px; margin: 0 auto;
}
.header-logo {
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}
.header-logo img { height: 40px; width: auto; }
.header h1 {
  font-family: var(--font-heading); color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}
.header h1 .gradient-text {
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-sub {
  color: rgba(255,255,255,0.6); font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  max-width: 520px; margin: 0 auto; line-height: 1.7; font-weight: 300;
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

/* ── Main ── */
.main {
  background: var(--light);
  min-height: 60vh;
  padding: 4rem 2rem 6rem;
}
.main-inner { max-width: 900px; margin: 0 auto; }
.reports-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 2rem;
}

/* ── Report Card ── */
.report-card {
  background: var(--white); border-radius: 16px;
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}
.report-card:hover {
  box-shadow: 0 16px 48px rgba(146,120,209,0.12);
  transform: translateY(-4px);
}
.report-card-accent {
  height: 4px; background: var(--gradient);
}
.report-card-body {
  padding: 2.5rem;
  display: flex; gap: 2rem; align-items: flex-start;
}
.report-card-icon {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(146,120,209,0.1), rgba(12,198,222,0.1));
  display: flex; align-items: center; justify-content: center;
}
.report-card-icon svg {
  width: 28px; height: 28px; stroke: var(--purple); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.report-card-content { flex: 1; min-width: 0; }
.report-card-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.75rem;
}
.report-card-title {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.75rem; line-height: 1.3;
}
.report-card-author {
  font-size: 0.8rem; color: var(--text-light); font-style: italic;
  margin-bottom: 1rem;
}
.report-card-summary {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.7;
  margin-bottom: 1.5rem;
}
.report-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 600; color: var(--purple);
  text-decoration: none; transition: all 0.2s;
}
.report-card-link:hover { color: var(--purple-dark); gap: 0.75rem; }
.report-card-link svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round;
  transition: transform 0.2s;
}
.report-card:hover .report-card-link svg { transform: translateX(3px); }

/* ── Coming Soon ── */
.coming-soon {
  margin-top: 1.5rem; padding: 2rem 2.5rem;
  background: var(--white); border-radius: 16px;
  border: 1px dashed #d1d5db;
  display: flex; align-items: center; gap: 1rem;
  color: var(--text-light); font-size: 0.88rem;
  animation: fadeInUp 0.8s var(--ease-out) 1s both;
}
.coming-soon-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); opacity: 0.5;
}

/* ── Footer ── */
.footer {
  background: var(--dark); padding: 3rem 2rem;
  text-align: center; color: rgba(255,255,255,0.4); font-size: 0.8rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 28px; width: auto; opacity: 0.6; }
.footer a { color: var(--cyan); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .header { height: 280px; padding: 0 1.5rem; }
  .header h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .main { padding: 3rem 1.2rem 4rem; }
  .report-card-body { flex-direction: column; padding: 1.8rem; gap: 1.2rem; }
  .report-card-title { font-size: 1.15rem; }
  .report-card-summary { font-size: 0.88rem; }
  .coming-soon { padding: 1.5rem; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .header { height: 260px; padding: 0 1rem; }
  .header-logo img { height: 32px; }
  .main { padding: 2.5rem 1rem 3rem; }
  .report-card-body { padding: 1.5rem; }
  .report-card-icon { width: 44px; height: 44px; border-radius: 10px; }
  .report-card-icon svg { width: 22px; height: 22px; }
  .report-card-title { font-size: 1.05rem; }
  .footer { padding: 2rem 1rem; }
}
