:root {
  --ink: #080a0d;
  --ink-soft: #111419;
  --paper: #f2f0e9;
  --paper-soft: #d7d4cb;
  --white: #fff;
  --muted: #a7a8aa;
  --line: rgba(255, 255, 255, .16);
  --dark-line: rgba(8, 10, 13, .2);
  --yellow: #ffd400;
  --yellow-dark: #685700;
  --max: 1480px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(5.5rem, 10vw, 10rem);
  --font: "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

summary {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

summary,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  min-height: 2.75rem;
  position: fixed;
  inset-block-start: .75rem;
  inset-inline-start: .75rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  padding: .75rem 1rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0;
  color: var(--yellow);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-block-end: 1px solid rgba(255, 255, 255, .13);
  background: rgba(8, 10, 13, .9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: clamp(4.75rem, 7vw, 6.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(12rem, 18vw, 18.75rem);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.25vw, 2.5rem);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.desktop-nav a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.desktop-nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, .78);
}

.nav-cta {
  --button-fill: var(--yellow);
  --button-fill-text: var(--ink);
  padding-inline: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  background-image: linear-gradient(var(--button-fill) 0 0);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  color: var(--white);
  transition: background-size .38s cubic-bezier(.2, .75, .25, 1), border-color .25s ease, color .25s ease;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  width: 3rem;
  height: 3rem;
  position: relative;
  display: grid;
  place-content: center;
  gap: .32rem;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.menu-line {
  width: 1.15rem;
  height: 2px;
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  background: var(--white);
  transition: transform .2s ease;
}

.menu-line:first-of-type {
  transform: translateX(-50%) translateY(-.25rem);
}

.menu-line:last-of-type {
  transform: translateX(-50%) translateY(.25rem);
}

.mobile-nav[open] .menu-line:first-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav[open] .menu-line:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
  width: min(18rem, calc(100vw - 2.5rem));
  position: absolute;
  inset-block-start: calc(100% + .75rem);
  inset-inline-end: 0;
  padding: .75rem;
  border: 1px solid var(--line);
  background: rgba(8, 10, 13, .97);
  box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, .45);
}

.mobile-menu a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: .85rem;
  border-block-end: 1px solid var(--line);
  text-decoration: none;
}

.mobile-menu a:last-child {
  --button-fill: var(--white);
  --button-fill-text: var(--ink);
  border: 0;
  background: var(--yellow);
  background-image: linear-gradient(var(--button-fill) 0 0);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  color: var(--ink);
  font-weight: 800;
  transition: background-size .38s cubic-bezier(.2, .75, .25, 1), color .25s ease;
}

.support-hero {
  min-height: max(47rem, 100svh);
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: clip;
  background: var(--ink);
}

.support-hero__media,
.support-hero__media::before,
.support-hero__media::after {
  position: absolute;
  inset: 0;
}

.support-hero__media {
  z-index: -2;
}

.support-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(.62) contrast(1.08);
}

.support-hero__media::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, .98) 0%, rgba(5, 7, 9, .9) 42%, rgba(5, 7, 9, .22) 82%),
    linear-gradient(0deg, rgba(5, 7, 9, .98) 0%, rgba(5, 7, 9, .12) 62%, rgba(5, 7, 9, .42) 100%);
  content: "";
}

.support-hero__media::after {
  z-index: 2;
  opacity: .17;
  background-image: radial-gradient(rgba(255, 255, 255, .5) .55px, transparent .7px);
  background-size: 5px 5px;
  content: "";
  mix-blend-mode: soft-light;
}

.support-hero__content {
  padding-block: clamp(10rem, 17vw, 14rem) clamp(3rem, 7vw, 6rem);
}

.support-hero h1 {
  max-width: 12ch;
  margin: clamp(1.4rem, 3vw, 2.4rem) 0 0;
  font-size: clamp(3.5rem, 8vw, 8.4rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .84;
  text-wrap: balance;
  text-transform: uppercase;
}

.support-hero h1 span {
  color: var(--yellow);
}

.support-hero__bottom {
  max-width: 65rem;
  display: grid;
  grid-template-columns: minmax(0, 39rem) auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-block-start: clamp(2.2rem, 4vw, 4rem);
}

.support-hero__lead {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  text-wrap: balance;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

.button {
  --button-fill: var(--yellow);
  --button-fill-text: var(--ink);
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .82rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background-image: linear-gradient(var(--button-fill) 0 0);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .025em;
  line-height: 1.1;
  text-decoration: none;
  transition: background-size .38s cubic-bezier(.2, .75, .25, 1), border-color .25s ease, color .25s ease;
}

.button--primary {
  --button-fill: var(--white);
  border-color: var(--yellow);
  background: var(--yellow);
  background-image: linear-gradient(var(--button-fill) 0 0);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  color: var(--ink);
}

.button--dark {
  --button-fill: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  background-image: linear-gradient(var(--button-fill) 0 0);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  color: var(--paper);
}

.button-arrow {
  font-size: 1.08rem;
  line-height: 1;
  transition: transform .3s cubic-bezier(.2, .75, .25, 1);
}

.report {
  background: var(--paper);
  color: var(--ink);
}

.report .eyebrow,
.contact-band .eyebrow {
  color: var(--yellow-dark);
}

.report-layout,
.coverage-heading,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(13rem, .62fr) minmax(0, 1.38fr);
  gap: clamp(2.5rem, 7vw, 8rem);
}

.report-intro h2,
.coverage-heading h2,
.contact-copy h2 {
  margin: 1.4rem 0 0;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .88;
  text-wrap: balance;
  text-transform: uppercase;
}

.report-intro p:not(.eyebrow) {
  max-width: 33rem;
  margin: 1.7rem 0 0;
  color: rgba(8, 10, 13, .68);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.report-list {
  margin: 0;
  padding: 0;
  border-block-start: 1px solid var(--dark-line);
  list-style: none;
}

.report-list li {
  display: grid;
  grid-template-columns: 4rem minmax(11rem, .7fr) minmax(0, 1.3fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding-block: clamp(1.6rem, 3vw, 2.5rem);
  border-block-end: 1px solid var(--dark-line);
}

.report-number {
  color: var(--yellow-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.report-list h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.report-list p {
  margin: 0;
  color: rgba(8, 10, 13, .7);
}

.coverage-heading {
  align-items: end;
  margin-block-end: clamp(3rem, 6vw, 5.5rem);
}

.coverage-heading p:last-child {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block-start: 1px solid var(--line);
  border-block-end: 1px solid var(--line);
}

.coverage-item {
  min-height: 19rem;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.coverage-item + .coverage-item {
  border-inline-start: 1px solid var(--line);
}

.coverage-item h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  letter-spacing: -.035em;
  line-height: 1.05;
}

.coverage-item p {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.privacy-note {
  max-width: 56rem;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
  padding-inline-start: 1.2rem;
  border-inline-start: 3px solid var(--yellow);
  color: rgba(255, 255, 255, .72);
}

.privacy-note strong {
  color: var(--paper);
}

.contact-band {
  position: relative;
  overflow: clip;
  background: var(--yellow);
  color: var(--ink);
}

.contact-band::after {
  width: min(34rem, 42vw);
  aspect-ratio: 1;
  position: absolute;
  inset-block-start: clamp(-10rem, -8vw, -5rem);
  inset-inline-end: clamp(-8rem, -5vw, -3rem);
  opacity: .075;
  background: url("../Resources/ScreamingCatLogo_Black.png") center / contain no-repeat;
  content: "";
  transform: rotate(8deg);
  transform-origin: right top;
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, .7fr);
  align-items: end;
}

.contact-action p {
  max-width: 31rem;
  margin: 0 0 1.6rem;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.contact-band a:focus-visible {
  outline-color: var(--ink);
}

.new-project a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.support-email {
  width: fit-content;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  margin-block-start: .7rem;
  font-size: .86rem;
  font-weight: 800;
}

.contact-action .new-project {
  margin: 1.25rem 0 0;
  font-size: .9rem;
}

footer {
  padding-block: 2.6rem;
  border-block-start: 1px solid var(--line);
  background: #06070a;
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-copy {
  display: grid;
  gap: .35rem;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
}

.footer-heart {
  width: .72rem;
  height: .72rem;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  margin-inline: .08rem .12rem;
  background: var(--yellow);
  transform: rotate(-45deg);
}

.footer-heart::before,
.footer-heart::after {
  width: .72rem;
  height: .72rem;
  position: absolute;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.footer-heart::before {
  inset-block-start: -.36rem;
  inset-inline-start: 0;
}

.footer-heart::after {
  inset-block-start: 0;
  inset-inline-start: .36rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.footer-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

@media (hover: hover) {
  .desktop-nav a:not(.nav-cta):hover {
    color: var(--white);
  }

  .nav-cta:hover,
  .button:hover,
  .mobile-menu a:last-child:hover {
    background-size: 100% 100%;
    border-color: var(--button-fill);
    color: var(--button-fill-text);
  }

  .button:hover .button-arrow {
    transform: translateX(.18rem);
  }
}

.nav-cta:focus-visible,
.button:focus-visible,
.mobile-menu a:last-child:focus-visible {
  background-size: 100% 100%;
  border-color: var(--button-fill);
  color: var(--button-fill-text);
}

@media (max-width: 70rem) {
  .report-layout,
  .coverage-heading,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .report-intro {
    max-width: 48rem;
  }

  .contact-action {
    max-width: 37rem;
  }
}

@media (max-width: 54rem) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .support-hero__media img {
    object-position: 59% center;
  }

  .support-hero__media::before {
    background:
      linear-gradient(90deg, rgba(5, 7, 9, .96) 0%, rgba(5, 7, 9, .7) 82%, rgba(5, 7, 9, .42) 100%),
      linear-gradient(0deg, rgba(5, 7, 9, .98) 0%, rgba(5, 7, 9, .12) 64%);
  }

  .support-hero__bottom {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .report-list li {
    grid-template-columns: 3rem minmax(11rem, .7fr) minmax(0, 1.3fr);
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .coverage-item {
    min-height: 0;
  }

  .coverage-item + .coverage-item {
    border-inline-start: 0;
    border-block-start: 1px solid var(--line);
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 38rem) {
  :root {
    --gutter: 1.15rem;
  }

  .brand img {
    width: 11rem;
  }

  .support-hero {
    min-height: 46rem;
  }

  .support-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .support-hero .eyebrow {
    font-size: .66rem;
    letter-spacing: .12em;
  }

  .support-hero .eyebrow::before {
    width: 1.5rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .report-intro h2,
  .coverage-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .report-list li {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .contact-band::after {
    width: 20rem;
    inset-block-start: -6rem;
    inset-inline-end: -7rem;
  }

  .footer-links {
    gap: .8rem 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: .01ms;
    transition-duration: .01ms;
  }
}
