:root {
  color-scheme: light;
  --page-blue: #073b66;
  --deep-blue: #042b4d;
  --card: #f7faff;
  --warm-card: #fff8ea;
  --ink: #06243a;
  --white: #ffffff;
  --green: #2e7d4f;
  --heart-green: #61c76b;
  --purple: #6a3ba8;
  --warning-red: #a51e22;
  --warning-cream: #fff0c2;
  --border-blue: #8ec9f5;
  --divider-blue: #d8ecfa;
  --muted: #34566c;
  --shadow: 0 1.3rem 2.7rem rgba(1, 18, 32, 0.26);
  --focus: #fff0c2;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-blue);
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(142, 201, 245, 0.18) 0 12%, transparent 12% 26%, rgba(97, 199, 107, 0.1) 26% 32%, transparent 32%),
    linear-gradient(180deg, var(--page-blue), var(--deep-blue) 36rem, var(--page-blue) 82rem, var(--deep-blue));
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: clip;
}

a {
  color: #074978;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.2em;
}

a:focus,
button:focus,
a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 30;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 3px solid var(--focus);
  border-radius: 0.65rem;
  color: var(--white);
  background: var(--deep-blue);
  transform: translateY(-170%);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-sprite symbol,
.icon-sprite path,
.icon-sprite circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header,
.page-shell,
.site-footer {
  width: min(100%, 720px);
  margin: 0 auto;
  padding-inline: 1rem;
}

.site-header {
  padding-block: 0.65rem 0.25rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
}

.brand-mark,
.icon-circle,
.mini-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
}

.brand-mark {
  width: 3.25rem;
  height: 3.25rem;
  border: 3px solid var(--border-blue);
  border-radius: 50%;
  color: var(--deep-blue);
  background: var(--card);
}

.brand-icon,
.icon-circle svg,
.mini-icon svg,
.button svg,
.text-button svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon {
  width: 1.95rem;
  height: 1.95rem;
}

.brand-name,
.brand-slogan,
.footer-support,
.footer-support-secondary,
.footer-brand,
.footer-slogan {
  margin: 0;
}

.brand-name {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 950;
}

.brand-slogan {
  max-width: 20rem;
  color: #e8f6ff;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.3;
}

.page-shell {
  padding-block: 0.3rem 2rem;
}

section {
  margin-top: 1.25rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: 2.3rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero {
  margin-top: 0.15rem;
}

.hero-card,
.section-card,
.report-card,
.warning-card {
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 0.85rem;
  padding: 0.95rem;
  border: 3px solid rgba(142, 201, 245, 0.92);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(142, 201, 245, 0.2), transparent 32%),
    linear-gradient(180deg, #0a4c7f, var(--deep-blue));
}

.hero-icon-row {
  display: flex;
  gap: 0.6rem;
}

.hero-slogan {
  color: #e8f6ff;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
}

.support-pill {
  width: fit-content;
  margin: 0;
  padding: 0.55rem 0.85rem;
  border: 3px solid rgba(97, 199, 107, 0.7);
  border-radius: 999px;
  color: #123f27;
  background: #eaf9ee;
  font-size: 1.15rem;
  font-weight: 950;
}

.hero-card h2 {
  max-width: 28rem;
  color: #d8ecfa;
  font-size: 1.25rem;
  line-height: 1.22;
}

.hero-headline {
  margin: 0;
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 950;
  line-height: 1.05;
}

.hero-summary {
  margin: 0;
  color: #f7faff;
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.45;
}

.hero-card h1 {
  color: var(--white);
}

.hero-actions,
.report-actions {
  display: grid;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border: 3px solid transparent;
  border-radius: 0.75rem;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  border-color: var(--white);
  color: var(--deep-blue);
  background: var(--white);
}

.button--secondary {
  border-color: var(--border-blue);
  color: var(--white);
  background: rgba(247, 250, 255, 0.08);
}

.button--light {
  color: var(--deep-blue);
  background: var(--white);
}

.button--outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.section-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid rgba(142, 201, 245, 0.8);
  background: var(--card);
}

.section-heading {
  display: grid;
  gap: 0.55rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.section-kicker {
  color: #1d6841;
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.question-list,
.law-grid,
.evidence-list {
  display: grid;
  gap: 0.85rem;
}

.question-card,
.law-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 3px solid var(--divider-blue);
  border-left-width: 0.55rem;
  border-radius: 0.9rem;
  background: var(--white);
}

.question-card h3 {
  font-size: 1.28rem;
}

.question-card--green,
.law-card--green {
  border-left-color: var(--green);
}

.question-card--danger {
  border-left-color: var(--warning-red);
}

.question-card--purple,
.law-card--purple {
  border-left-color: var(--purple);
}

.question-card--blue,
.law-card--blue {
  border-left-color: var(--border-blue);
}

.law-card--warm {
  border-left-color: var(--green);
  background: var(--warm-card);
}

.icon-circle {
  width: 3.6rem;
  height: 3.6rem;
  border: 3px solid currentColor;
  border-radius: 50%;
  color: var(--page-blue);
  background: #eef8ff;
  font-size: 2rem;
}

.icon-circle--white {
  color: var(--page-blue);
  background: var(--white);
}

.question-card--green .icon-circle,
.law-card--green .icon-circle {
  color: var(--green);
  background: #eaf7ef;
}

.question-card--danger .icon-circle,
.warning-icon {
  color: var(--warning-red);
  background: #fff4f4;
}

.question-card--purple .icon-circle,
.law-card--purple .icon-circle {
  color: var(--purple);
  background: #f4efff;
}

.question-card--blue .icon-circle,
.law-card--blue .icon-circle {
  color: var(--page-blue);
  background: #eef8ff;
}

.law-card--warm .icon-circle {
  color: var(--green);
  background: #ecf8ef;
}

.icon-stack {
  grid-template-columns: repeat(2, auto);
  gap: 0.1rem;
}

.icon-stack svg {
  width: 1.35rem;
  height: 1.35rem;
}

.report-section {
  scroll-margin-top: 1rem;
}

.report-card {
  display: grid;
  justify-items: center;
  gap: 0.95rem;
  padding: 1.25rem 1rem;
  border: 3px solid var(--heart-green);
  color: var(--white);
  background: linear-gradient(180deg, #063f61, #064936);
  text-align: center;
}

.report-card h2 {
  color: var(--white);
  font-size: 2.25rem;
}

.report-card p {
  max-width: 31rem;
  margin: 0;
  color: #eef8ff;
  font-size: 1.12rem;
  font-weight: 750;
}

.report-icon {
  color: var(--green);
}

.email-link {
  display: block;
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 950;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration-thickness: 0.12em;
}

.copy-status {
  min-height: 1.6rem;
}

.copy-status[data-state="copied"] {
  color: #dfffe4;
}

.evidence-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.evidence-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  min-height: 60px;
  padding: 0.8rem;
  border: 2px solid var(--divider-blue);
  border-radius: 0.8rem;
  background: var(--white);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
}

.mini-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  color: var(--green);
  background: #eaf7ef;
  font-size: 1.45rem;
}

.rights-section {
  scroll-margin-top: 1rem;
}

.law-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.text-button {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.8rem;
  border: 3px solid var(--page-blue);
  border-radius: 0.7rem;
  color: var(--page-blue);
  background: var(--white);
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.15;
  text-decoration: none;
}

.text-button svg {
  width: 1.1rem;
  height: 1.1rem;
}

.warning-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 1rem;
  border: 3px solid var(--warning-red);
  background: var(--warning-cream);
}

.warning-card h2 {
  color: #601014;
}

.warning-card p {
  margin: 0.75rem 0;
  color: #32100b;
  font-weight: 800;
}

.text-button--warning {
  border-color: var(--warning-red);
  color: #601014;
  background: var(--white);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  padding-block: 2rem 2.5rem;
  color: var(--white);
  text-align: center;
}

.footer-icon {
  color: var(--deep-blue);
  background: var(--white);
}

.footer-support {
  color: var(--white);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.05;
}

.footer-support-secondary {
  color: #e7f9e9;
  font-size: 1.18rem;
  font-weight: 900;
}

.footer-brand {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 950;
}

.footer-slogan {
  max-width: 26rem;
  color: #e8f6ff;
  font-weight: 750;
}

.footer-email {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 0.55rem;
  color: var(--white);
}
