:root {
  --graphite: #171713;
  --graphite-2: #22211c;
  --paper: #eee4d2;
  --paper-2: #f8f1e5;
  --ink: #191816;
  --muted: #756b5d;
  --amber: #e2b05b;
  --amber-2: #f0c77d;
  --cyan: #43d6ff;
  --line: rgba(226, 176, 91, 0.22);
  --paper-line: rgba(32, 28, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper-2);
  background: var(--graphite);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: rgba(248, 241, 229, 0.72);
  font-size: 1rem;
  line-height: 1.72;
}

.report-site {
  overflow: hidden;
  background: var(--graphite);
}

.report-top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.report-top__inner {
  width: min(100%, 1260px);
  min-height: 98px;
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.report-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--paper-2);
  font-weight: 800;
}

.report-logo img {
  width: 46px;
  height: 46px;
}

.report-logo span {
  display: block;
  line-height: 1.05;
}

.report-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(248, 241, 229, 0.86);
}

.report-nav a:hover,
.report-nav a:focus-visible {
  color: var(--amber-2);
}

.report-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 38%, rgba(226, 176, 91, 0.18), transparent 24rem),
    linear-gradient(135deg, #151512, #25231d);
}

.report-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226, 176, 91, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 176, 91, 0.12) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.58;
}

.report-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1260px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 44px 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 42px;
}

.report-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.4rem;
  line-height: 0.95;
  font-weight: 500;
}

.report-hero__lead {
  margin-top: 28px;
  color: rgba(248, 241, 229, 0.82);
  font-size: 1.5rem;
}

.report-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 72px;
  margin-top: 38px;
  padding: 0 42px;
  border-radius: 16px;
  color: var(--graphite);
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  border: 1px solid rgba(255, 238, 186, 0.72);
  box-shadow: 0 20px 62px rgba(226, 176, 91, 0.22);
  font-size: 1.45rem;
  font-weight: 900;
}

.report-cta img {
  width: 30px;
  height: 30px;
}

.report-cta--small {
  min-height: 48px;
  margin-top: 0;
  padding: 0 20px;
  font-size: 0.98rem;
}

.report-cta--small img {
  width: 20px;
  height: 20px;
}

.report-paper {
  justify-self: end;
  width: min(100%, 520px);
  transform: rotate(2deg);
  filter: drop-shadow(0 48px 72px rgba(0, 0, 0, 0.34));
}

.gold-line {
  width: 180px;
  height: 2px;
  margin: 34px 0 0;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.report-section {
  padding: 90px 44px;
  background: var(--paper-2);
  color: var(--ink);
}

.report-section--dark {
  background: var(--graphite);
  color: var(--paper-2);
}

.report-section__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.report-section h2 {
  margin: 0 0 24px;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.05;
}

.report-section p {
  color: var(--muted);
}

.report-section--dark p {
  color: rgba(248, 241, 229, 0.72);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.report-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: #fffaf0;
}

.report-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
}

.report-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
}

.reader {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.62fr);
  gap: 54px;
  align-items: start;
}

.reader-list {
  display: grid;
  gap: 14px;
}

.reader-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.reader-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper-2);
}

.paper-preview {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(238, 228, 210, 0.08);
}

.paper-preview img {
  border-radius: 8px;
}

.report-faq {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.report-faq details {
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: #fffaf0;
}

.report-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
}

.report-faq details p {
  padding: 0 22px 22px;
}

.report-final {
  padding: 78px 44px;
  background: #11110f;
}

.report-final__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.report-final h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
}

.report-footer {
  padding: 34px 44px;
  color: rgba(248, 241, 229, 0.66);
  border-top: 1px solid var(--line);
}

.report-footer__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .report-top__inner {
    min-height: 84px;
    padding: 0 24px;
  }

  .report-nav {
    gap: 18px;
    font-size: 0.92rem;
  }

  .report-hero__inner,
  .reader {
    grid-template-columns: 1fr;
  }

  .report-hero__inner {
    padding: 132px 24px 62px;
  }

  .report-hero h1 {
    font-size: 5rem;
  }

  .report-paper {
    position: absolute;
    right: -140px;
    bottom: -180px;
    width: 560px;
    opacity: 0.34;
    z-index: -1;
  }

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

@media (max-width: 640px) {
  p {
    font-size: 0.96rem;
  }

  .report-top__inner {
    padding: 0 18px;
  }

  .report-logo img {
    width: 40px;
    height: 40px;
  }

  .report-logo span {
    font-size: 0.86rem;
  }

  .report-nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .report-hero__inner {
    padding: 126px 18px 54px;
    align-content: center;
  }

  .report-hero h1 {
    font-size: 3.75rem;
  }

  .report-hero__lead {
    margin-top: 26px;
    font-size: 1.14rem;
  }

  .report-cta {
    width: min(100%, 330px);
    min-height: 62px;
    margin-top: 36px;
    padding: 0 24px;
    font-size: 1.14rem;
  }

  .report-cta img {
    width: 24px;
    height: 24px;
  }

  .report-section,
  .report-final {
    padding: 64px 18px;
  }

  .report-section h2,
  .report-final h2 {
    font-size: 2.25rem;
  }

  .report-final__inner {
    display: grid;
  }

  .report-footer {
    padding: 28px 18px;
  }
}

@media (max-width: 380px) {
  .report-nav {
    gap: 9px;
    font-size: 0.76rem;
  }

  .report-logo span {
    display: none;
  }

  .report-hero h1 {
    font-size: 3.25rem;
  }
}
