* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --purple: #5950cf;
  --purple-dark: #292052;
  --purple-soft: #efedff;
  --mint: #70d7c2;
  --ink: #292638;
  --muted: #625e70;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(68, 58, 135, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 58, 135, 0.035) 1px, transparent 1px),
    #faf9fd;
  background-size: 28px 28px;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
}

.report-header {
  color: #fff;
  background:
    radial-gradient(circle at 84% 24%, rgba(112, 215, 194, 0.28), transparent 26%),
    linear-gradient(120deg, #292052 0%, #5950cf 58%, #7776e9 100%);
}

.report-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.report-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.report-nav a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(55px, 8vw, 105px) 24px clamp(80px, 10vw, 125px);
}

.report-hero__content {
  max-width: 820px;
}

.report-label,
.report-section__label {
  margin: 0;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-hero h1 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
}

.report-title {
  max-width: 820px;
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
}

.report-intro {
  max-width: 720px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.report-logo {
  display: grid;
  place-items: center;
  width: clamp(180px, 18vw, 250px);
  aspect-ratio: 1;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.report-logo img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.report-main {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 24px;
}

.report-summary {
  position: sticky;
  top: 28px;
  padding: 24px;
  border-left: 4px solid var(--mint);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(41, 32, 82, 0.08);
}

.report-summary > p {
  margin: 0 0 14px;
  color: var(--purple);
  font-weight: 800;
}

.report-summary ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.report-summary a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.report-summary a:hover {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.report-content {
  min-width: 0;
}

.report-section {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 26px;
  padding: 0 0 70px;
}

.report-section + .report-section {
  padding-top: 70px;
  border-top: 1px solid #ddd8eb;
}

.report-section__number {
  color: #d8d3f2;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.report-section__label {
  color: var(--purple);
}

.report-section h2 {
  margin: 8px 0 28px;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
}

.report-section p {
  margin: 0 0 20px;
  color: var(--muted);
}

.report-section blockquote {
  margin: 30px 0 0;
  padding: 24px 28px;
  border-left: 5px solid var(--mint);
  border-radius: 5px;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-size: 1.08rem;
  font-weight: 700;
}

.report-needs {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.report-needs li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border: 1px solid #e1ddef;
  border-radius: 5px;
  color: #4e495a;
  background: #fff;
}

.report-needs li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--purple);
  font-weight: 800;
}

.report-conclusion {
  margin-top: 32px;
  padding: 26px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(120deg, var(--purple-dark), var(--purple));
}

.report-conclusion p {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-conclusion strong {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
}

.report-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 2px solid var(--purple);
  border-radius: 6px;
  color: #fff;
  background: var(--purple);
  font-weight: 800;
  text-decoration: none;
}

.report-button--secondary {
  color: var(--purple);
  background: transparent;
}

.report-button:hover {
  transform: translateY(-1px);
  filter: brightness(0.94);
}

.report-footer {
  padding: 24px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--purple-dark);
  font-size: 0.86rem;
  text-align: center;
}

.report-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .report-hero {
    grid-template-columns: 1fr;
  }

  .report-logo {
    width: 175px;
  }

  .report-main {
    grid-template-columns: 1fr;
  }

  .report-summary {
    position: static;
  }
}

@media (max-width: 520px) {
  .report-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .report-hero {
    padding-top: 38px;
  }

  .report-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .report-section__number {
    font-size: 1.2rem;
  }

  .report-actions {
    display: grid;
  }
}
