:root {
  --ink: #17202a;
  --muted: #5c6672;
  --paper: #f7f8fa;
  --card: #ffffff;
  --line: #d9dee5;
  --soft: #f1f3f5;
  --blue: #244b6b;
  --blue-dark: #183348;
  --gold: #b98b45;
  --shadow: 0 24px 60px rgba(23, 32, 42, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.68;
  background:
    linear-gradient(180deg, rgba(248, 249, 251, 0.96), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(36, 75, 107, 0.04) 0 1px, transparent 1px 92px);
}

a {
  color: inherit;
}

.report-shell {
  width: min(100% - 28px, 920px);
  margin: 26px auto 34px;
}

.journal-bar {
  padding: 12px 18px;
  color: var(--blue-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.report-card {
  margin-top: 16px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero {
  text-align: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.subhead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.intro {
  margin-top: 42px;
  font-size: 18px;
}

.intro p:first-child::first-letter {
  float: left;
  margin: 9px 10px 0 0;
  color: var(--blue);
  font-size: 64px;
  font-weight: 700;
  line-height: 0.78;
}

.matrix {
  margin-top: 36px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.matrix h2,
.details h2 {
  margin-bottom: 18px;
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.2;
}

.matrix ul {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.matrix li {
  position: relative;
  padding-left: 34px;
  font-family: Arial, Helvetica, sans-serif;
  color: #2b3540;
}

.matrix li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  background: var(--blue);
}

.cta-panel {
  margin: 42px auto 36px;
  text-align: center;
}

.primary-cta {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(100%, 480px);
  padding: 0 26px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 32px rgba(36, 75, 107, 0.24);
  animation: pulse 2.8s ease-in-out infinite;
}

.primary-cta:hover {
  transform: translateY(-1px);
}

.affiliate-note {
  max-width: 560px;
  margin: 12px auto 0;
  color: rgba(92, 102, 114, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.55;
}

.details {
  padding-top: 8px;
  color: #28313b;
  font-size: 17px;
}

.legal-footer {
  padding: 22px 8px 0;
  color: var(--muted);
  text-align: center;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 18px;
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.legal-footer a {
  text-decoration: none;
}

.legal-footer a:hover {
  text-decoration: underline;
}

.legal-footer p {
  max-width: 780px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.55;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 16px 32px rgba(36, 75, 107, 0.24);
  }
  50% {
    box-shadow: 0 18px 42px rgba(36, 75, 107, 0.38);
  }
}

@media (max-width: 640px) {
  .report-shell {
    width: calc(100% - 18px);
    margin-top: 12px;
  }

  .journal-bar {
    font-size: 10px;
    line-height: 1.5;
  }

  .report-card {
    padding: 24px 18px;
  }

  .intro,
  .details {
    font-size: 16px;
  }

  .intro p:first-child::first-letter {
    font-size: 52px;
  }

  .matrix {
    padding: 22px 18px;
  }

  .primary-cta {
    min-height: 58px;
    padding: 0 16px;
    font-size: 14px;
  }
}
