@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/jost.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-400.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-600.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Rajdhani";
  src: url("/assets/fonts/rajdhani-600.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  --black: #050506;
  --ink: #101213;
  --graphite: #181a1d;
  --soft-black: #24262a;
  --white: #fff;
  --mist: #f4f4f4;
  --line: rgba(255, 255, 255, 0.16);
  --ink-line: rgba(16, 18, 19, 0.14);
  --muted: #707277;
  --purple: #27215f;
  --blue: #0063f7;
  --container: 1180px;
  --header-height: 112px;
  --radius: 3px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #79a9ff;
  outline-offset: 4px;
}

.skip-link {
  background: var(--white);
  color: var(--black);
  left: 18px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}

.skip-link:focus {
  top: 18px;
}

.container {
  margin-inline: auto;
  max-width: var(--container);
  padding-inline: 28px;
  width: 100%;
}

.eyebrow {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: "Jost", sans-serif;
  font-size: clamp(1.9rem, 3.15vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 30px;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.muted {
  color: var(--muted);
}

.button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  letter-spacing: 0.05em;
  min-height: 54px;
  padding: 13px 24px;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.button--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: transparent;
  color: var(--ink);
}

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

.button--purple:hover {
  background: var(--ink);
  border-color: var(--ink);
}

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

.button--outline:hover {
  background: var(--white);
  color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-row--center {
  justify-content: center;
}

.site-header {
  color: var(--white);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background-color 200ms ease, box-shadow 200ms ease;
  z-index: 100;
}

.site-header.is-scrolled,
.site-header.menu-active {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 6, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  position: fixed;
}

.header-inner {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
}

.brand {
  flex: 0 0 auto;
  width: 202px;
}

.brand img {
  height: auto;
  width: 100%;
}

.nav-list {
  align-items: center;
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 600;
  padding-block: 12px;
  position: relative;
  transition: color 180ms ease;
}

.nav-list a::after {
  background: var(--white);
  bottom: 5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--white);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 48px;
  justify-content: center;
  padding: 0;
  width: 48px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  background: currentColor;
  content: "";
  height: 1px;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 24px;
}

.menu-toggle::before {
  transform: translateY(-7px);
}

.menu-toggle::after {
  transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.hero {
  align-items: flex-end;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 110px) 0 100px;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, #050506 0%, rgba(5, 5, 6, 0.95) 38%, rgba(5, 5, 6, 0.08) 100%), url("/wp-content/uploads/2022/03/bg2.jpg") center right / auto 120% no-repeat;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero::after {
  background: radial-gradient(circle at 67% 42%, rgba(42, 75, 214, 0.17), transparent 38%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-copy {
  max-width: 780px;
}

.hero h1 {
  font-family: "Jost", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 0 0 42px;
}

.hero-services {
  display: grid;
  gap: 4px;
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}

.hero-services li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.97rem;
}

.hero-services li::before {
  content: "→";
  margin-right: 9px;
}

.quote-section {
  background: var(--black);
  color: var(--white);
  padding: 130px 0;
}

.quote-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(260px, 0.72fr) 1.28fr;
}

.quote-portrait {
  aspect-ratio: 1;
  filter: grayscale(1);
  overflow: hidden;
  position: relative;
}

.quote-portrait::after {
  background: linear-gradient(145deg, transparent 48%, rgba(0, 38, 255, 0.34));
  content: "";
  inset: 0;
  position: absolute;
}

.quote-portrait img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.quote-name {
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
  margin: 18px 0 0;
}

.quote-role {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

blockquote {
  font-family: "Jost", sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.12;
  margin: 0;
}

blockquote cite {
  color: rgba(255, 255, 255, 0.58);
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-style: normal;
  letter-spacing: 0.14em;
  margin-top: 34px;
  text-transform: uppercase;
}

.about {
  background: var(--white);
  padding: 140px 0;
}

.about-grid {
  display: grid;
  gap: clamp(44px, 7vw, 100px);
  grid-template-columns: 0.9fr 1.1fr;
}

.about-copy p {
  color: #55585c;
  margin: 0 0 22px;
}

.about-images {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr;
}

.about-images figure {
  margin: 0;
  overflow: hidden;
}

.about-images figure:last-child {
  margin-top: 90px;
}

.about-images img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.process {
  background: var(--mist);
  padding: 130px 0;
}

.process-intro {
  max-width: 600px;
}

.process-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 70px;
}

.process-card {
  background: var(--white);
  min-height: 350px;
  padding: 36px 28px;
}

.process-number {
  color: var(--purple);
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin-bottom: 70px;
}

.process-card h3 {
  font-family: "Jost", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 18px;
}

.process-card p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
  margin: 0;
}

.pcan-home {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 140px 0;
}

.pcan-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 1.05fr 0.95fr;
}

.pcan-copy p,
.pcan-copy li {
  color: rgba(255, 255, 255, 0.67);
}

.pcan-copy ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.pcan-copy li {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.pcan-visual {
  box-shadow: var(--shadow);
  position: relative;
}

.pcan-visual img {
  width: 100%;
}

.pcan-visual::before {
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  inset: -20px 20px 20px -20px;
  position: absolute;
  z-index: -1;
}

.story {
  background: linear-gradient(90deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.6)), url("/wp-content/uploads/2022/03/bg3.jpg") center / cover fixed;
  color: var(--white);
  padding: 150px 0;
}

.story-grid {
  display: grid;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: 0.8fr 1.2fr;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.story-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
}

.story-list li {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.industries {
  background: var(--ink);
  color: var(--white);
  padding: 130px 0 150px;
}

.industries-header {
  align-items: end;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  margin-bottom: 58px;
}

.industries-header > div {
  max-width: 730px;
}

.industries-header p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 440px;
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.carousel-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  transition: background-color 180ms ease, color 180ms ease;
  width: 46px;
}

.carousel-button:hover {
  background: var(--white);
  color: var(--ink);
}

.industry-track {
  display: grid;
  gap: 18px;
  grid-auto-columns: minmax(270px, 1fr);
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 18px;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  scroll-snap-type: inline mandatory;
}

.industry-card {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.industry-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.industry-card::after {
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.9));
  content: "";
  inset: 0;
  position: absolute;
}

.industry-card h3 {
  bottom: 24px;
  font-family: "Jost", sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  left: 24px;
  line-height: 1.25;
  margin: 0;
  max-width: calc(100% - 48px);
  position: absolute;
  z-index: 1;
}

.industry-card:hover img {
  transform: scale(1.045);
}

.grant-cta {
  background: var(--white);
  color: var(--ink);
  padding: 110px 0;
  text-align: center;
}

.grant-cta .container {
  max-width: 960px;
}

.grant-cta h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 0 0 22px;
}

.grant-cta p {
  color: var(--muted);
  font-family: "Poppins", sans-serif;
  margin: 0 0 34px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 82px 0 34px;
}

.footer-grid {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
}

.footer-brand {
  width: 180px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.52);
  max-width: 390px;
}

.footer-heading {
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.footer-list {
  color: rgba(255, 255, 255, 0.62);
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  margin-top: 62px;
  padding-top: 26px;
}

/* Internal pages */
.page-hero {
  align-items: center;
  background: linear-gradient(rgba(5, 10, 22, 0.54), rgba(5, 10, 22, 0.66)), url("/wp-content/uploads/2022/11/Contact-Bg.jpeg") center / cover;
  color: var(--white);
  display: flex;
  min-height: 510px;
  padding: calc(var(--header-height) + 70px) 0 70px;
  text-align: center;
}

.page-hero h1 {
  font-family: "Jost", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 0;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  margin: 20px auto 0;
  max-width: 650px;
}

.contact-main {
  background: var(--white);
  padding: 120px 0 130px;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(55px, 10vw, 150px);
  grid-template-columns: 0.82fr 1.18fr;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.contact-intro p {
  color: var(--muted);
  font-size: 1.12rem;
}

.contact-person {
  border-top: 1px solid var(--ink-line);
  margin-top: 36px;
  padding-top: 25px;
}

.contact-person strong,
.contact-person span {
  display: block;
}

.contact-person span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-cards {
  display: grid;
  gap: 18px;
}

.contact-card {
  align-items: center;
  background: var(--mist);
  border: 1px solid transparent;
  display: grid;
  gap: 22px;
  grid-template-columns: 54px 1fr auto;
  min-height: 132px;
  padding: 28px 32px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-card:hover {
  background: var(--white);
  border-color: var(--ink-line);
  transform: translateY(-3px);
}

.contact-icon {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.contact-label {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  font-weight: 500;
}

.contact-arrow {
  font-size: 1.35rem;
}

.services-band {
  background: var(--ink);
  color: var(--white);
  padding: 90px 0;
}

.services-band-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.service-tile {
  border: 1px solid var(--line);
  min-height: 160px;
  padding: 30px;
}

.service-tile span {
  color: rgba(255, 255, 255, 0.4);
  display: block;
  font-family: "Rajdhani", sans-serif;
  margin-bottom: 28px;
}

.service-tile h2 {
  font-family: "Jost", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0;
}

.pcan-page {
  background: var(--white);
}

.pcan-overview,
.pcan-steps,
.pcan-eligibility,
.pcan-final {
  padding: 120px 0;
}

.pcan-overview-grid {
  align-items: center;
  display: grid;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: 1.1fr 0.9fr;
}

.pcan-overview-copy p,
.pcan-overview-copy li {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  color: var(--purple);
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.pcan-banner {
  background: var(--mist);
  padding: 28px;
}

.pcan-steps {
  background: var(--ink);
  color: var(--white);
}

.step-grid {
  counter-reset: step;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
}

.step-card {
  border: 1px solid var(--line);
  counter-increment: step;
  min-height: 235px;
  padding: 30px;
}

.step-card::before {
  color: rgba(255, 255, 255, 0.38);
  content: "0" counter(step);
  display: block;
  font-family: "Rajdhani", sans-serif;
  margin-bottom: 75px;
}

.step-card h3 {
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.eligibility-grid {
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.8fr 1.2fr;
}

.eligibility-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.eligibility-list li {
  border-top: 1px solid var(--ink-line);
  color: var(--muted);
  font-size: 1.05rem;
  padding: 20px 0 20px 34px;
  position: relative;
}

.eligibility-list li::before {
  color: var(--purple);
  content: "→";
  left: 0;
  position: absolute;
}

.pcan-final {
  background: var(--mist);
  text-align: center;
}

.pcan-final .container {
  max-width: 850px;
}

.not-found {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: flex;
  min-height: 100svh;
  padding: 160px 0 90px;
  text-align: center;
}

.not-found .container {
  max-width: 760px;
}

.not-found-code {
  color: rgba(255, 255, 255, 0.18);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(6rem, 20vw, 14rem);
  line-height: 0.8;
}

.not-found h1 {
  font-family: "Jost", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  margin: 32px 0 18px;
}

.not-found p {
  color: rgba(255, 255, 255, 0.64);
  margin-bottom: 32px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  :root {
    --header-height: 88px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card:last-child {
    grid-column: 1 / -1;
  }

  .process-number {
    margin-bottom: 42px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    padding-inline: 21px;
  }

  .brand {
    width: 166px;
  }

  .menu-toggle {
    display: flex;
    position: relative;
  }

  .site-nav {
    background: rgba(5, 5, 6, 0.98);
    display: none;
    inset: var(--header-height) 0 auto;
    min-height: calc(100svh - var(--header-height));
    padding: 36px 21px;
    position: fixed;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-list a {
    border-bottom: 1px solid var(--line);
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 1.75rem;
    padding: 20px 0;
  }

  .nav-list a::after {
    display: none;
  }

  .hero {
    min-height: 880px;
    padding-bottom: 68px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(5, 5, 6, 0.48) 0%, rgba(5, 5, 6, 0.97) 70%), url("/wp-content/uploads/2022/03/bg2.jpg") top center / 100% auto no-repeat;
  }

  .quote-section,
  .about,
  .process,
  .pcan-home,
  .story,
  .industries {
    padding-block: 90px;
  }

  .quote-grid,
  .about-grid,
  .pcan-grid,
  .story-grid,
  .contact-layout,
  .pcan-overview-grid,
  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .quote-portrait {
    max-width: 420px;
  }

  blockquote {
    font-size: clamp(1.75rem, 7vw, 2.65rem);
  }

  .about-images {
    gap: 10px;
  }

  .about-images figure:last-child {
    margin-top: 44px;
  }

  .about-images img {
    min-height: 260px;
  }

  .process-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .pcan-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .story {
    background-attachment: scroll;
  }

  .industries-header {
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }

  .industry-track {
    grid-auto-columns: 82%;
  }

  .grant-cta {
    padding-block: 82px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .page-hero {
    min-height: 430px;
  }

  .contact-main,
  .pcan-overview,
  .pcan-steps,
  .pcan-eligibility,
  .pcan-final {
    padding-block: 82px;
  }

  .contact-intro {
    position: static;
  }

  .contact-card {
    grid-template-columns: 48px 1fr;
    padding: 24px 20px;
  }

  .contact-icon {
    height: 48px;
    width: 48px;
  }

  .contact-arrow {
    display: none;
  }

  .step-card {
    min-height: auto;
  }

  .step-card::before {
    margin-bottom: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
