/*
 * Fundacja Cześć Giżycko — editorial landing refresh
 * 2026-08-12
 *
 * A flat, portal-adjacent visual layer for the one-page homepage.
 * The legacy stylesheet remains untouched for WordPress post views.
 */

:root {
  --fcg-edge: clamp(13.3953px, calc(4.186vw), 18px);
  --fcg-section-y: clamp(53.5814px, calc(16.7442vw), 72px);
  --fcg-h1: clamp(34.2326px, calc(10.6977vw), 46px);
  --fcg-h2: clamp(25.3023px, calc(7.907vw), 34px);
  --fcg-grid-gap: clamp(17.8605px, calc(5.5814vw), 24px);
  --fcg-rail: clamp(65.7829px, calc(20.5572vw), 214px);
  --fcg-ink: #073473;
  --fcg-blue: #084fb5;
  --fcg-blue-dark: #043d92;
  --fcg-blue-soft: #d8eafe;
  --fcg-blue-pale: #eff6ff;
  --fcg-line: #bdd6f5;
  --fcg-white: #ffffff;
  --fcg-muted: #526f9d;
}

@media (min-width: 430px) {
  :root {
    --fcg-edge: clamp(18px, calc(4.7248px + 3.0872vw), 64px);
    --fcg-section-y: clamp(72px, calc(48.9128px + 5.3691vw), 152px);
    --fcg-h1: clamp(46px, calc(33.8792px + 2.8188vw), 88px);
    --fcg-h2: clamp(34px, calc(25.9195px + 1.8792vw), 62px);
    --fcg-grid-gap: clamp(24px, calc(10.1477px + 3.2215vw), 72px);
  }
}

@media (min-width: 1041px) {
  :root {
    --fcg-rail: clamp(214px, calc(145.3106px + 6.5984vw), 272px);
  }
}

@media (min-width: 1920px) {
  :root {
    --fcg-edge: clamp(64px, calc(3.3333vw), 64px);
    --fcg-section-y: clamp(152px, calc(7.9167vw), 152px);
    --fcg-h1: clamp(88px, calc(4.5833vw), 88px);
    --fcg-h2: clamp(62px, calc(3.2292vw), 62px);
    --fcg-grid-gap: clamp(72px, calc(3.75vw), 72px);
    --fcg-rail: clamp(272px, calc(14.1667vw), 272px);
  }
}

body.fcg-front-page {
  overflow-x: clip;
  padding-left: 0 !important;
  background: var(--fcg-white);
  color: var(--fcg-ink);
  font-family: "FCG Montserrat", Montserrat, Arial, sans-serif;
}

body.fcg-front-page [class^="fcg-"],
body.fcg-front-page [class*=" fcg-"],
body.fcg-front-page [class^="fcg-"]::before,
body.fcg-front-page [class^="fcg-"]::after,
body.fcg-front-page [class*=" fcg-"]::before,
body.fcg-front-page [class*=" fcg-"]::after {
  background-image: none !important;
}

.fcg-front-page .fcg-site-shell,
.fcg-front-page .fcg-main,
.fcg-front-page .fcg-main > *,
.fcg-front-page .fcg-footer {
  background-image: none !important;
}

.fcg-front-page .fcg-container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: max(1rem, var(--fcg-edge));
}

.fcg-front-page .fcg-main > * {
  position: relative;
  isolation: isolate;
}

.fcg-front-page h1,
.fcg-front-page h2,
.fcg-front-page h3,
.fcg-front-page p {
  margin-top: 0;
}

.fcg-front-page h1,
.fcg-front-page h2,
.fcg-front-page h3,
.fcg-front-page strong {
  color: inherit;
}

.fcg-front-page a,
.fcg-front-page button {
  text-underline-offset: 0.24em;
}

.fcg-front-page a:focus-visible,
.fcg-front-page button:focus-visible {
  outline: 3px solid #6cc5ff;
  outline-offset: 4px;
}

.fcg-front-page .fcg-eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: clamp(1.25rem, 2.4vw, 2.25rem);
  color: var(--fcg-blue);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.fcg-front-page .fcg-eyebrow::before {
  display: none !important;
}

.fcg-front-page .fcg-eyebrow b {
  color: var(--fcg-ink);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.fcg-front-page .fcg-button {
  position: relative;
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--fcg-blue);
  border-radius: 0;
  padding: 0.85rem clamp(1.15rem, 2vw, 1.8rem);
  background: var(--fcg-blue);
  box-shadow: none;
  color: var(--fcg-white);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.fcg-front-page .fcg-button::before,
.fcg-front-page .fcg-button::after {
  display: none !important;
}

.fcg-front-page .fcg-button:hover,
.fcg-front-page .fcg-button:focus-visible {
  border-color: var(--fcg-blue-dark);
  background: var(--fcg-blue-dark);
  box-shadow: none;
  color: var(--fcg-white);
  transform: none;
}

.fcg-front-page .fcg-button--ghost {
  border-color: var(--fcg-line);
  background: var(--fcg-blue-soft);
  color: var(--fcg-ink);
}

.fcg-front-page .fcg-button--ghost:hover,
.fcg-front-page .fcg-button--ghost:focus-visible {
  border-color: var(--fcg-ink);
  background: var(--fcg-white);
  color: var(--fcg-ink);
}

/* Desktop rail */

@media (min-width: 1041px) {
  .fcg-front-page .fcg-header {
    position: fixed;
    z-index: 100;
    inset: 0 auto 0 0;
    width: var(--fcg-rail);
    height: 100vh;
    border: 0;
    border-right: 1px solid var(--fcg-line);
    background: var(--fcg-white);
    box-shadow: none;
  }

  .fcg-front-page .fcg-header.is-scrolled {
    border-color: var(--fcg-line);
    background: var(--fcg-white);
    box-shadow: none;
  }

  .fcg-front-page .fcg-header .fcg-container,
  .fcg-front-page .fcg-header__inner {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 0;
    grid-template-rows: auto auto 1fr;
    align-content: stretch;
    padding: clamp(1.5rem, 2.4vw, 2.7rem) clamp(1.25rem, 2vw, 2.3rem);
  }

  .fcg-front-page .fcg-brand {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
    color: var(--fcg-ink);
  }

  .fcg-front-page .fcg-brand__mark {
    display: block;
    width: clamp(3.8rem, 5.2vw, 5.9rem);
    height: auto;
    border: 0;
    background: transparent;
  }

  .fcg-front-page .fcg-brand__mark img {
    display: block;
    width: 100%;
    height: auto;
  }

  .fcg-front-page .fcg-brand__meta {
    display: grid;
    gap: 0.55rem;
  }

  .fcg-front-page .fcg-brand__meta strong {
    max-width: 11ch;
    font-family: "FCG Archivo Black", "Arial Black", sans-serif;
    font-size: clamp(1rem, 1.24vw, 1.35rem);
    letter-spacing: -0.035em;
    line-height: 0.98;
  }

  .fcg-front-page .fcg-brand__meta small {
    display: block;
    max-width: 15ch;
    color: var(--fcg-muted);
    font-size: 0.72rem;
    line-height: 1.65;
  }

  .fcg-front-page .fcg-nav-toggle {
    display: none;
  }

  .fcg-front-page .fcg-header__progress {
    position: relative;
    display: block !important;
    width: 2px;
    height: clamp(3.5rem, 9vh, 6.5rem);
    margin: clamp(1.5rem, 3.4vh, 2.8rem) 0 0 0.8rem;
    border: 0;
    border-radius: 0;
    background: var(--fcg-blue-soft);
    box-shadow: none;
    overflow: hidden;
  }

  .fcg-front-page .fcg-header__progress span {
    position: absolute;
    inset: 0;
    border-radius: 0;
    background: var(--fcg-blue);
    box-shadow: none;
    transform: scaleY(0);
    transform-origin: top;
  }

  .fcg-front-page .fcg-nav {
    position: static;
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: clamp(1.2rem, 3vh, 2.5rem) 0 0;
    background: transparent;
  }

  .fcg-front-page .fcg-nav__list {
    display: grid;
    gap: 0;
    margin: 0 0 clamp(1.4rem, 3vh, 2.6rem);
    padding: 0;
  }

  .fcg-front-page .fcg-nav__list li {
    border-top: 1px solid var(--fcg-line);
  }

  .fcg-front-page .fcg-nav__list li:last-child {
    border-bottom: 1px solid var(--fcg-line);
  }

  .fcg-front-page .fcg-nav__list a {
    position: relative;
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--fcg-muted);
    font-size: clamp(0.72rem, 0.78vw, 0.86rem);
    font-weight: 800;
    letter-spacing: -0.015em;
  }

  .fcg-front-page .fcg-nav__list a::before {
    display: none !important;
  }

  .fcg-front-page .fcg-nav__list a::after {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }

  .fcg-front-page .fcg-nav__list a:hover,
  .fcg-front-page .fcg-nav__list a:focus-visible,
  .fcg-front-page .fcg-nav__list a.is-current {
    color: var(--fcg-blue);
  }

  .fcg-front-page .fcg-button--nav {
    width: 100%;
    min-height: 3.5rem;
    border: 2px solid var(--fcg-blue);
    border-radius: 0;
    background: var(--fcg-blue-soft);
    color: var(--fcg-ink);
  }

  .fcg-front-page .fcg-button--nav:hover,
  .fcg-front-page .fcg-button--nav:focus-visible {
    border-color: var(--fcg-blue);
    background: var(--fcg-blue);
    color: var(--fcg-white);
  }

  .fcg-front-page .fcg-main,
  .fcg-front-page .fcg-footer {
    width: calc(100% - var(--fcg-rail));
    margin-left: var(--fcg-rail);
  }

  .fcg-front-page .fcg-mobile-toolbar {
    display: none !important;
  }
}

/* Hero */

.fcg-front-page .fcg-home-hero {
  display: flex;
  min-height: 88vh;
  align-items: center;
  padding-block: clamp(4.5rem, 10vh, 8rem);
  background: var(--fcg-white);
}

.fcg-front-page .fcg-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(32%, 0.88fr);
  gap: var(--fcg-grid-gap);
  align-items: center;
}

.fcg-front-page .fcg-home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 51rem;
}

.fcg-front-page .fcg-home-hero h1 {
  max-width: 10.2ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.7rem);
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: var(--fcg-h1);
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.fcg-front-page .fcg-home-hero__lead {
  max-width: 37rem;
  margin-bottom: 1.3rem;
  color: var(--fcg-ink);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.fcg-front-page .fcg-home-hero__body {
  max-width: 39rem;
  margin-bottom: clamp(1.8rem, 3.4vw, 3rem);
  color: var(--fcg-muted);
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
  line-height: 1.8;
}

.fcg-front-page .fcg-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.fcg-front-page .fcg-home-hero__media {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(0.75rem, 1.4vw, 1.35rem);
  align-items: stretch;
}

.fcg-front-page .fcg-home-hero__media > * {
  min-width: 0;
  box-sizing: border-box;
}

.fcg-front-page .fcg-home-shot,
.fcg-front-page .fcg-home-story__image,
.fcg-front-page .fcg-home-founder__media,
.fcg-front-page .fcg-home-update__image,
.fcg-front-page .fcg-home-funding__image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0 !important;
  background: var(--fcg-blue-pale);
  box-shadow: none !important;
  transform: none !important;
}

.fcg-front-page .fcg-home-shot::before,
.fcg-front-page .fcg-home-shot::after,
.fcg-front-page .fcg-home-story__image::before,
.fcg-front-page .fcg-home-story__image::after,
.fcg-front-page .fcg-home-founder__media::before,
.fcg-front-page .fcg-home-founder__media::after,
.fcg-front-page .fcg-home-update__image::before,
.fcg-front-page .fcg-home-update__image::after,
.fcg-front-page .fcg-home-funding__image::before,
.fcg-front-page .fcg-home-funding__image::after {
  display: none !important;
}

.fcg-front-page .fcg-home-shot img,
.fcg-front-page .fcg-home-story__image img,
.fcg-front-page .fcg-home-founder__media img,
.fcg-front-page .fcg-home-update__image img,
.fcg-front-page .fcg-home-funding__image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  object-fit: cover;
  transition: transform 420ms ease;
}

.fcg-front-page .fcg-home-shot--primary {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.fcg-front-page .fcg-home-shot--secondary {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 1;
}

.fcg-front-page .fcg-home-hero__stamp {
  display: flex;
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  min-height: clamp(15rem, 18vw, 18rem);
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
  border-radius: 0;
  padding: clamp(1.15rem, 2.3vw, 2rem);
  background: var(--fcg-blue-soft);
  box-shadow: none;
  color: var(--fcg-ink);
  transform: none;
  aspect-ratio: auto;
  overflow: hidden;
}

.fcg-front-page .fcg-home-hero__stamp strong {
  display: block;
  max-width: 11ch;
  margin-bottom: 0.75rem;
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.fcg-front-page .fcg-home-hero__stamp span {
  color: var(--fcg-muted);
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

/* Value line */

.fcg-front-page .fcg-values-strip {
  overflow: hidden;
  border-block: 1px solid var(--fcg-line);
  background: var(--fcg-blue-soft);
}

.fcg-front-page .fcg-values-strip__inner {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  padding: 1.05rem max(1rem, var(--fcg-edge));
  animation: none !important;
}

.fcg-front-page .fcg-values-strip__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  color: var(--fcg-ink);
}

.fcg-front-page .fcg-values-strip__item:not(:last-child)::after {
  content: "•";
  color: var(--fcg-blue);
}

.fcg-front-page .fcg-values-strip__item em {
  color: inherit;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

/* Shared section system */

.fcg-front-page .fcg-home-section {
  padding-block: var(--fcg-section-y);
  border: 0;
  background: var(--fcg-white);
}

.fcg-front-page .fcg-home-section--tinted,
.fcg-front-page .fcg-home-section--soft,
.fcg-front-page .fcg-home-section--funding {
  background: var(--fcg-blue-pale);
}

.fcg-front-page .fcg-home-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  column-gap: var(--fcg-grid-gap);
  align-items: end;
  max-width: none;
  margin: 0 0 clamp(3rem, 6vw, 6rem);
}

.fcg-front-page .fcg-home-heading .fcg-eyebrow {
  grid-column: 1 / -1;
}

.fcg-front-page .fcg-home-heading h2,
.fcg-front-page .fcg-home-intro__text h2,
.fcg-front-page .fcg-home-funding__copy h2,
.fcg-front-page .fcg-home-transparency__copy h2,
.fcg-front-page .fcg-home-contact__copy h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: var(--fcg-h2);
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.fcg-front-page .fcg-home-heading > p,
.fcg-front-page .fcg-home-intro__text > p,
.fcg-front-page .fcg-home-funding__copy > p,
.fcg-front-page .fcg-home-transparency__copy > p,
.fcg-front-page .fcg-home-contact__copy > p {
  max-width: 39rem;
  margin: 0;
  color: var(--fcg-muted);
  font-size: clamp(0.98rem, 1.22vw, 1.15rem);
  line-height: 1.75;
}

/* Mission */

.fcg-front-page .fcg-home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: var(--fcg-grid-gap);
  align-items: start;
}

.fcg-front-page .fcg-home-intro__text {
  max-width: none;
}

.fcg-front-page .fcg-home-intro__text h2 {
  margin-bottom: clamp(1.7rem, 3.5vw, 3rem);
}

.fcg-front-page .fcg-home-intro__aside {
  display: grid;
  gap: clamp(2rem, 4.5vw, 4.8rem);
}

.fcg-front-page .fcg-home-quote {
  max-width: none;
  margin: 0;
  border: 0;
  border-top: 2px solid var(--fcg-blue);
  padding: clamp(1.5rem, 3vw, 2.8rem) 0 0;
  background: transparent;
}

.fcg-front-page .fcg-home-quote::before {
  display: none;
}

.fcg-front-page .fcg-home-quote p {
  max-width: 24ch;
  margin: 0;
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1.35rem, 2.65vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.fcg-front-page .fcg-home-story {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(14rem, 0.78fr);
  gap: 0;
  align-items: stretch;
}

.fcg-front-page .fcg-home-story__image {
  aspect-ratio: 1.25;
}

.fcg-front-page .fcg-home-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3.5vw, 3.2rem);
  background: var(--fcg-blue-soft);
}

.fcg-front-page .fcg-home-story__copy h3 {
  margin-bottom: 1rem;
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.fcg-front-page .fcg-home-story__copy p {
  margin: 0;
  color: var(--fcg-muted);
  font-size: clamp(0.82rem, 0.95vw, 0.96rem);
  line-height: 1.7;
}

/* What we do */

.fcg-front-page .fcg-home-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--fcg-grid-gap);
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
}

.fcg-front-page .fcg-home-pillar {
  display: grid;
  grid-template-columns: minmax(2.5rem, 0.22fr) minmax(0, 0.78fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  align-content: start;
  border: 0;
  border-top: 1px solid var(--fcg-line);
  border-radius: 0;
  padding: clamp(1.5rem, 3.4vw, 3rem) 0;
  background: transparent;
  box-shadow: none;
}

.fcg-front-page .fcg-home-pillar::before {
  display: none;
}

.fcg-front-page .fcg-home-pillar__number {
  grid-row: 1 / 3;
  color: var(--fcg-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.fcg-front-page .fcg-home-pillar h3 {
  margin: 0 0 0.9rem;
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.fcg-front-page .fcg-home-pillar p {
  margin: 0;
  color: var(--fcg-muted);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.72;
}

.fcg-front-page .fcg-home-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: clamp(2rem, 4.5vw, 4rem);
  background: var(--fcg-blue);
  color: var(--fcg-white);
}

.fcg-front-page .fcg-home-step {
  min-height: 13rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  background: transparent;
  box-shadow: none;
}

.fcg-front-page .fcg-home-step:first-child {
  border-left: 0;
  padding-left: 0;
}

.fcg-front-page .fcg-home-step:last-child {
  padding-right: 0;
}

.fcg-front-page .fcg-home-step::before {
  display: none;
}

.fcg-front-page .fcg-home-step__number {
  display: block;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  color: #bfe0ff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fcg-front-page .fcg-home-step h3 {
  max-width: 13ch;
  margin: 0 0 1rem;
  color: var(--fcg-white);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1.2rem, 1.9vw, 1.8rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.fcg-front-page .fcg-home-step p {
  max-width: 29rem;
  margin: 0;
  color: #e8f4ff;
  font-size: clamp(0.84rem, 0.96vw, 0.96rem);
  line-height: 1.72;
}

/* Team */

.fcg-front-page .fcg-home-founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--fcg-grid-gap);
}

.fcg-front-page .fcg-home-founder {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  border: 0;
  background: transparent;
}

.fcg-front-page .fcg-home-founder__label {
  display: none !important;
}

.fcg-front-page .fcg-home-founder__media {
  aspect-ratio: 0.92;
}

.fcg-front-page .fcg-home-founder__copy {
  max-width: 40rem;
  padding: 0;
}

.fcg-front-page .fcg-home-founder__copy h3 {
  margin-bottom: 0.45rem;
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1.35rem, 2.25vw, 2.25rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.fcg-front-page .fcg-home-founder__role {
  margin-bottom: 1.35rem !important;
  color: var(--fcg-blue) !important;
  font-size: 0.7rem !important;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.55 !important;
  text-transform: uppercase;
}

.fcg-front-page .fcg-home-founder__copy > p:last-child {
  max-width: 48rem;
  margin: 0;
  color: var(--fcg-muted);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.75;
}

/* News */

.fcg-front-page .fcg-home-section--soft {
  border-block: 1px solid var(--fcg-line);
  background: var(--fcg-white);
}

.fcg-front-page .fcg-home-updates {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.65fr));
  gap: var(--fcg-grid-gap);
}

.fcg-front-page .fcg-home-update {
  display: grid;
  gap: 1.5rem;
  border: 0;
  background: transparent;
}

.fcg-front-page .fcg-home-update__image,
.fcg-front-page .fcg-home-update.is-featured .fcg-home-update__image {
  aspect-ratio: 1.2;
}

.fcg-front-page .fcg-home-update__content {
  padding: 0;
}

.fcg-front-page .fcg-home-update__meta {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--fcg-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.fcg-front-page .fcg-home-update__content h3 {
  margin-bottom: 0.85rem;
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.fcg-front-page .fcg-home-update__content h3 a {
  color: var(--fcg-ink);
  text-decoration: none;
}

.fcg-front-page .fcg-home-update__content h3 a:hover,
.fcg-front-page .fcg-home-update__content h3 a:focus-visible {
  color: var(--fcg-blue);
  text-decoration: underline;
}

.fcg-front-page .fcg-home-update__content p {
  margin: 0;
  color: var(--fcg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.fcg-front-page .fcg-home-empty {
  display: block;
  border: 0;
  border-top: 2px solid var(--fcg-blue);
  border-radius: 0;
  padding: clamp(1.6rem, 3vw, 2.5rem) 0 0;
  background: transparent;
}

.fcg-front-page .fcg-home-empty h3 {
  margin-bottom: 0.7rem;
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  letter-spacing: -0.035em;
}

.fcg-front-page .fcg-home-empty p {
  max-width: 48rem;
  margin: 0;
  color: var(--fcg-muted);
  line-height: 1.7;
}

/* Funding */

.fcg-front-page .fcg-home-section--funding {
  border-block: 0;
  background: var(--fcg-blue-soft);
}

.fcg-front-page .fcg-home-funding {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: var(--fcg-grid-gap);
  align-items: center;
  max-width: none;
  margin: 0;
}

.fcg-front-page .fcg-home-funding__copy {
  max-width: none;
}

.fcg-front-page .fcg-home-funding__copy h2 {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.fcg-front-page .fcg-home-funding__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: clamp(2rem, 4vw, 3.8rem) 0 0;
  border: 0;
  border-top: 1px solid #8bb8ed;
}

.fcg-front-page .fcg-home-funding__facts > div {
  border: 0;
  border-right: 1px solid #8bb8ed;
  padding: 1.4rem 1.4rem 0 0;
  background: transparent;
}

.fcg-front-page .fcg-home-funding__facts > div + div {
  border-right: 0;
  padding-left: 1.4rem;
}

.fcg-front-page .fcg-home-funding__facts dt {
  margin-bottom: 0.55rem;
  color: var(--fcg-muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fcg-front-page .fcg-home-funding__facts dd {
  margin: 0;
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.9rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.fcg-front-page .fcg-home-funding__image {
  aspect-ratio: auto;
  border: 1px solid #a8c8ee;
  background: var(--fcg-white);
}

.fcg-front-page .fcg-home-funding__image img {
  height: auto;
  object-fit: contain;
}

/* Transparency */

.fcg-front-page .fcg-home-transparency {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: var(--fcg-grid-gap);
  align-items: start;
}

.fcg-front-page .fcg-home-transparency__copy h2 {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.fcg-front-page .fcg-home-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  margin-top: clamp(1.8rem, 3.5vw, 3rem);
}

.fcg-front-page .fcg-home-legal a,
.fcg-front-page .fcg-home-legal button {
  border: 0;
  border-bottom: 2px solid currentColor;
  padding: 0 0 0.2rem;
  background: transparent;
  color: var(--fcg-blue);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.fcg-front-page .fcg-home-legal a:hover,
.fcg-front-page .fcg-home-legal a:focus-visible,
.fcg-front-page .fcg-home-legal button:hover,
.fcg-front-page .fcg-home-legal button:focus-visible {
  color: var(--fcg-ink);
}

.fcg-front-page .fcg-home-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--fcg-grid-gap);
  border: 0;
  background: transparent;
}

.fcg-front-page .fcg-home-data > div,
.fcg-front-page .fcg-home-data > div.is-wide {
  display: grid;
  min-width: 0;
  grid-column: auto;
  gap: 0.45rem;
  border: 0;
  border-top: 1px solid var(--fcg-line);
  padding: clamp(1.25rem, 2.5vw, 2.2rem) 0;
  background: transparent;
}

.fcg-front-page .fcg-home-data > div.is-wide {
  grid-column: 1 / -1;
}

.fcg-front-page .fcg-home-data span,
.fcg-front-page .fcg-home-contact__panel span {
  color: var(--fcg-blue);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.fcg-front-page .fcg-home-data strong {
  overflow-wrap: anywhere;
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* Contact */

.fcg-front-page .fcg-home-section--cta {
  background: var(--fcg-blue);
  color: var(--fcg-white);
}

.fcg-front-page .fcg-home-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: var(--fcg-grid-gap);
  align-items: end;
}

.fcg-front-page .fcg-home-contact__copy .fcg-eyebrow,
.fcg-front-page .fcg-home-contact__copy .fcg-eyebrow b {
  color: #c6e4ff;
}

.fcg-front-page .fcg-home-contact__copy h2 {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--fcg-white);
}

.fcg-front-page .fcg-home-contact__copy > p {
  color: #e0efff;
}

.fcg-front-page .fcg-home-contact__panel {
  display: grid;
  gap: 0;
  border: 0;
  background: transparent;
}

.fcg-front-page .fcg-home-contact__panel > * {
  position: relative;
  display: grid;
  gap: 0.45rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(2.8rem, 5vw, 5rem) clamp(1.25rem, 2.5vw, 2rem) 0;
  background: transparent;
  color: var(--fcg-white);
}

.fcg-front-page .fcg-home-contact__panel > *:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.fcg-front-page .fcg-home-contact__panel a::after {
  content: "↗";
  position: absolute;
  top: 50%;
  right: 0.4rem;
  font-family: Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  transform: translateY(-50%);
}

.fcg-front-page .fcg-home-contact__panel span {
  color: #c6e4ff;
}

.fcg-front-page .fcg-home-contact__panel strong {
  overflow-wrap: anywhere;
  color: var(--fcg-white);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1rem, 1.65vw, 1.55rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.fcg-front-page .fcg-home-contact__panel a:hover strong,
.fcg-front-page .fcg-home-contact__panel a:focus-visible strong {
  text-decoration: underline;
}

/* Footer */

.fcg-front-page .fcg-footer {
  position: relative;
  border: 0;
  border-top: 1px solid var(--fcg-line);
  padding: clamp(3rem, 6vw, 6rem) 0 1.7rem;
  background: var(--fcg-white);
  color: var(--fcg-ink);
}

.fcg-front-page .fcg-footer::before,
.fcg-front-page .fcg-footer::after {
  display: none !important;
}

.fcg-front-page .fcg-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(8rem, 0.65fr));
  gap: var(--fcg-grid-gap);
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.fcg-front-page .fcg-footer__brand {
  max-width: none;
  padding-right: 0;
}

.fcg-front-page .fcg-footer__eyebrow,
.fcg-front-page .fcg-footer h3 {
  margin: 0 0 1.25rem;
  color: var(--fcg-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.fcg-front-page .fcg-footer__title {
  max-width: 14ch;
  margin: 0;
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1.7rem, 3.25vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.fcg-front-page .fcg-footer__list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.fcg-front-page .fcg-footer__list li,
.fcg-front-page .fcg-footer__list a,
.fcg-front-page .fcg-footer__list button {
  color: var(--fcg-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.fcg-front-page .fcg-footer__list a,
.fcg-front-page .fcg-footer__list button {
  border: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}

.fcg-front-page .fcg-footer__list a::after {
  display: none;
}

.fcg-front-page .fcg-footer__list a:hover,
.fcg-front-page .fcg-footer__list a:focus-visible,
.fcg-front-page .fcg-footer__list button:hover,
.fcg-front-page .fcg-footer__list button:focus-visible {
  color: var(--fcg-blue);
  text-decoration: underline;
}

.fcg-front-page .fcg-footer__bottom {
  border-top: 1px solid var(--fcg-line);
  padding-top: 1.5rem;
  color: var(--fcg-muted);
  font-size: 0.72rem;
}

/* Privacy UI */

.fcg-front-page .fcg-cookie-banner {
  z-index: 240;
  inset: auto max(1rem, var(--fcg-edge)) max(1rem, var(--fcg-edge)) auto;
  width: min(35rem, calc(100vw - var(--fcg-rail) - (2 * max(1rem, var(--fcg-edge)))));
  border: 1px solid var(--fcg-line);
  border-radius: 0;
  padding: 0;
  background: var(--fcg-white);
  box-shadow: none;
}

.fcg-front-page .fcg-cookie-banner__inner {
  display: grid;
  gap: 1.15rem;
  border: 0;
  border-radius: 0;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: var(--fcg-white);
  box-shadow: none;
}

.fcg-front-page .fcg-cookie-banner__copy strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.fcg-front-page .fcg-cookie-banner__copy p {
  margin: 0;
  color: var(--fcg-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.fcg-front-page .fcg-cookie-banner__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  align-items: stretch;
}

.fcg-front-page .fcg-cookie-banner__link {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 0.15rem;
  background: transparent;
  color: var(--fcg-blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.fcg-front-page .fcg-cookie-banner__actions .fcg-button {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
  font-size: 0.78rem;
}

.fcg-front-page .fcg-legal-modal {
  background: transparent;
}

.fcg-front-page .fcg-legal-modal__backdrop {
  background: rgba(3, 39, 91, 0.78);
}

.fcg-front-page .fcg-legal-modal__panel {
  border: 1px solid var(--fcg-line);
  border-radius: 0;
  background: var(--fcg-white);
  box-shadow: none;
}

.fcg-front-page .fcg-legal-modal__header {
  border-bottom: 1px solid var(--fcg-line);
}

.fcg-front-page .fcg-legal-modal__header h2 {
  color: var(--fcg-ink);
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  letter-spacing: -0.04em;
}

.fcg-front-page .fcg-legal-modal__close {
  border: 1px solid var(--fcg-line);
  border-radius: 0;
  background: var(--fcg-blue-soft);
  color: var(--fcg-ink);
}

/* Tablet and mobile navigation */

@media (max-width: 1040px) {
  body.fcg-front-page {
    padding-bottom: 4.25rem !important;
  }

  .fcg-front-page .fcg-header {
    position: sticky;
    z-index: 120;
    top: 0;
    width: 100%;
    height: auto;
    border: 0;
    border-bottom: 1px solid var(--fcg-line);
    background: var(--fcg-white);
    box-shadow: none;
  }

  .fcg-front-page .fcg-header.is-scrolled {
    border-color: var(--fcg-line);
    background: var(--fcg-white);
    box-shadow: none;
  }

  .fcg-front-page .fcg-header__inner {
    display: flex;
    min-height: 5rem;
    align-items: center;
    justify-content: center;
    padding-block: 0.75rem;
  }

  .fcg-front-page .fcg-brand {
    display: inline-flex;
    gap: 0.8rem;
    align-items: center;
    color: var(--fcg-ink);
  }

  .fcg-front-page .fcg-brand__mark {
    width: 3.6rem;
    height: auto;
    border: 0;
    background: transparent;
  }

  .fcg-front-page .fcg-brand__mark img {
    display: block;
    width: 100%;
    height: auto;
  }

  .fcg-front-page .fcg-brand__meta {
    display: block;
  }

  .fcg-front-page .fcg-brand__meta strong {
    font-family: "FCG Archivo Black", "Arial Black", sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    letter-spacing: -0.035em;
  }

  .fcg-front-page .fcg-brand__meta small,
  .fcg-front-page .fcg-nav-toggle,
  .fcg-front-page .fcg-nav,
  .fcg-front-page .fcg-header__progress {
    display: none !important;
  }

  .fcg-front-page .fcg-main,
  .fcg-front-page .fcg-footer {
    width: 100%;
    margin-left: 0;
  }

  .fcg-front-page .fcg-mobile-toolbar {
    position: fixed;
    z-index: 200;
    inset: auto 0 0;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    min-height: 4.25rem;
    border: 0;
    border-top: 1px solid var(--fcg-line);
    border-radius: 0;
    padding: 0;
    background: var(--fcg-white);
    box-shadow: none;
  }

  .fcg-front-page .fcg-mobile-toolbar a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-right: 1px solid var(--fcg-line);
    border-radius: 0;
    padding: 0.7rem 0.25rem;
    background: var(--fcg-white);
    color: var(--fcg-ink);
    text-align: center;
  }

  .fcg-front-page .fcg-mobile-toolbar a:last-child {
    border-right: 0;
  }

  .fcg-front-page .fcg-mobile-toolbar a.is-current {
    background: var(--fcg-blue-soft);
    color: var(--fcg-blue-dark);
  }

  .fcg-front-page .fcg-mobile-toolbar em {
    overflow: hidden;
    font-size: clamp(0.62rem, 2.2vw, 0.74rem);
    font-style: normal;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .fcg-front-page .fcg-home-hero {
    min-height: 0;
    padding-block: var(--fcg-section-y);
  }

  .fcg-front-page .fcg-home-hero__grid,
  .fcg-front-page .fcg-home-heading,
  .fcg-front-page .fcg-home-intro,
  .fcg-front-page .fcg-home-story,
  .fcg-front-page .fcg-home-funding,
  .fcg-front-page .fcg-home-transparency,
  .fcg-front-page .fcg-home-contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .fcg-front-page .fcg-home-hero__grid {
    gap: clamp(3rem, 12vw, 5rem);
  }

  .fcg-front-page .fcg-home-hero h1 {
    max-width: none;
  }

  .fcg-front-page .fcg-home-hero__lead {
    font-size: 1.04rem;
  }

  .fcg-front-page .fcg-home-hero__body {
    font-size: 0.91rem;
  }

  .fcg-front-page .fcg-button-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .fcg-front-page .fcg-home-hero__media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }

  .fcg-front-page .fcg-home-shot--primary {
    grid-column: 1 / -1;
    grid-row: auto;
    height: auto;
    aspect-ratio: 1.25;
  }

  .fcg-front-page .fcg-home-shot--secondary {
    aspect-ratio: 1;
  }

  .fcg-front-page .fcg-home-hero__stamp {
    min-height: 0;
    padding: 1.1rem;
  }

  .fcg-front-page .fcg-home-hero__stamp strong {
    font-size: clamp(0.98rem, 4.5vw, 1.25rem);
  }

  .fcg-front-page .fcg-home-hero__stamp span {
    font-size: 0.7rem;
    line-height: 1.48;
  }

  .fcg-front-page .fcg-values-strip {
    overflow-x: auto;
  }

  .fcg-front-page .fcg-values-strip__inner {
    justify-content: flex-start;
  }

  .fcg-front-page .fcg-home-heading {
    gap: 1.5rem;
    align-items: start;
  }

  .fcg-front-page .fcg-home-heading .fcg-eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .fcg-front-page .fcg-home-heading h2,
  .fcg-front-page .fcg-home-intro__text h2,
  .fcg-front-page .fcg-home-funding__copy h2,
  .fcg-front-page .fcg-home-transparency__copy h2,
  .fcg-front-page .fcg-home-contact__copy h2 {
    max-width: none;
  }

  .fcg-front-page .fcg-home-heading > p,
  .fcg-front-page .fcg-home-intro__text > p,
  .fcg-front-page .fcg-home-funding__copy > p,
  .fcg-front-page .fcg-home-transparency__copy > p,
  .fcg-front-page .fcg-home-contact__copy > p {
    font-size: 0.95rem;
  }

  .fcg-front-page .fcg-home-intro,
  .fcg-front-page .fcg-home-funding,
  .fcg-front-page .fcg-home-transparency,
  .fcg-front-page .fcg-home-contact {
    gap: clamp(3rem, 12vw, 5rem);
  }

  .fcg-front-page .fcg-home-story__image {
    aspect-ratio: 1.2;
  }

  .fcg-front-page .fcg-home-pillars,
  .fcg-front-page .fcg-home-founders,
  .fcg-front-page .fcg-home-updates {
    grid-template-columns: minmax(0, 1fr);
  }

  .fcg-front-page .fcg-home-process {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.5rem;
  }

  .fcg-front-page .fcg-home-step,
  .fcg-front-page .fcg-home-step:first-child,
  .fcg-front-page .fcg-home-step:last-child {
    min-height: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
    padding: 2rem 0;
  }

  .fcg-front-page .fcg-home-step:first-child {
    border-top: 0;
  }

  .fcg-front-page .fcg-home-step__number {
    margin-bottom: 1.5rem;
  }

  .fcg-front-page .fcg-home-founder__media {
    aspect-ratio: 0.9;
  }

  .fcg-front-page .fcg-home-founder + .fcg-home-founder {
    margin-top: 2rem;
  }

  .fcg-front-page .fcg-home-funding__facts,
  .fcg-front-page .fcg-home-data {
    grid-template-columns: minmax(0, 1fr);
  }

  .fcg-front-page .fcg-home-funding__facts > div,
  .fcg-front-page .fcg-home-funding__facts > div + div {
    border-right: 0;
    border-bottom: 1px solid #8bb8ed;
    padding: 1.3rem 0;
  }

  .fcg-front-page .fcg-home-data > div.is-wide {
    grid-column: auto;
  }

  .fcg-front-page .fcg-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fcg-front-page .fcg-footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }

  .fcg-front-page .fcg-cookie-banner {
    inset: auto 0 4.25rem;
    width: 100%;
    border-inline: 0;
    border-bottom: 0;
  }
}

/* 2026-08-12 restraint correction: match the finalcg hierarchy */

:root {
  --fcg-h1: clamp(28.2791px, calc(8.8372vw), 38px);
  --fcg-h2: clamp(23.814px, calc(7.4419vw), 32px);
  --fcg-section-y: clamp(47.6279px, calc(14.8837vw), 64px);
  --fcg-ink: #111111;
  --fcg-muted: rgba(17, 17, 17, 0.72);
  --fcg-blue: #0849a2;
  --fcg-blue-dark: #0849a2;
  --fcg-blue-soft: #d6e9fe;
  --fcg-blue-pale: #f7fbff;
  --fcg-line: transparent;
}

@media (min-width: 430px) {
  :root {
    --fcg-h1: clamp(38px, calc(32.2282px + 1.3423vw), 58px);
    --fcg-h2: clamp(32px, calc(26.8054px + 1.2081vw), 50px);
    --fcg-section-y: clamp(64px, calc(50.1477px + 3.2215vw), 112px);
  }
}

@media (min-width: 1920px) {
  :root {
    --fcg-h1: clamp(58px, calc(3.0208vw), 58px);
    --fcg-h2: clamp(50px, calc(2.6042vw), 50px);
    --fcg-section-y: clamp(112px, calc(5.8333vw), 112px);
  }
}

body.fcg-front-page {
  overflow-x: hidden;
  color: var(--fcg-ink);
}

.fcg-front-page .fcg-eyebrow,
.fcg-front-page .fcg-footer__eyebrow,
.fcg-front-page .fcg-legal-modal__eyebrow,
.fcg-front-page .fcg-home-pillar__number,
.fcg-front-page .fcg-home-step__number {
  display: none !important;
}

.fcg-front-page .fcg-header,
.fcg-front-page .fcg-nav,
.fcg-front-page .fcg-nav__list {
  overflow-x: hidden;
}

.fcg-front-page .fcg-home-hero {
  min-height: auto;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.fcg-front-page .fcg-home-hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(34%, 0.98fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.fcg-front-page .fcg-home-hero h1 {
  max-width: 14ch;
  margin-bottom: clamp(1.5rem, 2.4vw, 2.25rem);
  color: var(--fcg-ink);
  font-size: max(2rem, var(--fcg-h1));
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.fcg-front-page .fcg-home-hero__lead {
  max-width: 42rem;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.62;
}

.fcg-front-page .fcg-home-hero__body {
  max-width: 43rem;
  margin-bottom: clamp(1.7rem, 2.8vw, 2.6rem);
  color: var(--fcg-muted);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.75;
}

.fcg-front-page .fcg-home-hero__stamp {
  justify-content: center;
  min-height: 0;
  padding: clamp(1.25rem, 2.2vw, 2rem);
}

.fcg-front-page .fcg-home-hero__stamp strong {
  margin-bottom: 0.75rem;
  color: var(--fcg-ink);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.08;
}

.fcg-front-page .fcg-home-hero__stamp span {
  color: var(--fcg-muted);
  font-size: clamp(0.75rem, 0.85vw, 0.86rem);
  line-height: 1.55;
}

.fcg-front-page .fcg-home-section {
  padding-block: var(--fcg-section-y);
  border: 0;
}

.fcg-front-page .fcg-home-section--tinted,
.fcg-front-page .fcg-home-section--funding {
  background: var(--fcg-blue-pale);
}

.fcg-front-page .fcg-home-heading {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
  margin-bottom: clamp(2.8rem, 5vw, 5rem);
}

.fcg-front-page .fcg-home-heading h2,
.fcg-front-page .fcg-home-intro__text h2,
.fcg-front-page .fcg-home-funding__copy h2,
.fcg-front-page .fcg-home-transparency__copy h2,
.fcg-front-page .fcg-home-contact__copy h2 {
  max-width: 18ch;
  color: var(--fcg-ink);
  font-size: max(1.75rem, var(--fcg-h2));
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.fcg-front-page .fcg-home-heading > p,
.fcg-front-page .fcg-home-intro__text > p,
.fcg-front-page .fcg-home-funding__copy > p,
.fcg-front-page .fcg-home-transparency__copy > p,
.fcg-front-page .fcg-home-contact__copy > p {
  color: var(--fcg-muted);
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
  line-height: 1.72;
}

.fcg-front-page .fcg-home-intro {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 6vw, 6rem);
}

.fcg-front-page .fcg-home-intro__text h2 {
  margin-bottom: clamp(1.6rem, 2.8vw, 2.5rem);
}

.fcg-front-page .fcg-home-quote {
  border: 0;
  padding-top: 0;
}

.fcg-front-page .fcg-home-quote p {
  max-width: 29ch;
  color: var(--fcg-ink);
  font-family: "FCG Montserrat", Montserrat, Arial, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.17;
}

.fcg-front-page .fcg-home-story__copy {
  background: var(--fcg-blue-soft);
}

.fcg-front-page .fcg-home-story__copy h3,
.fcg-front-page .fcg-home-pillar h3,
.fcg-front-page .fcg-home-founder__copy h3,
.fcg-front-page .fcg-home-update__content h3,
.fcg-front-page .fcg-home-empty h3 {
  color: var(--fcg-ink);
}

.fcg-front-page .fcg-home-pillars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.8rem, 3.5vw, 3.5rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.fcg-front-page .fcg-home-pillar {
  display: block;
  border: 0;
  padding: 0;
}

.fcg-front-page .fcg-home-pillar h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  line-height: 1.12;
}

.fcg-front-page .fcg-home-pillar p {
  color: var(--fcg-muted);
  font-size: clamp(0.86rem, 0.94vw, 0.94rem);
  line-height: 1.7;
}

.fcg-front-page .fcg-home-process {
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(2.2rem, 4vw, 3.75rem);
  background: var(--fcg-blue);
}

.fcg-front-page .fcg-home-step,
.fcg-front-page .fcg-home-step:first-child,
.fcg-front-page .fcg-home-step:last-child {
  min-height: 0;
  border: 0;
  padding: 0;
}

.fcg-front-page .fcg-home-step h3 {
  max-width: 16ch;
  margin-bottom: 0.9rem;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.1;
}

.fcg-front-page .fcg-home-step p {
  font-size: clamp(0.86rem, 0.94vw, 0.94rem);
  line-height: 1.65;
}

.fcg-front-page .fcg-home-founder__copy h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  line-height: 1.08;
}

.fcg-front-page .fcg-home-founder__role {
  margin-bottom: 1rem !important;
  color: var(--fcg-blue) !important;
}

.fcg-front-page .fcg-home-funding {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
}

.fcg-front-page .fcg-home-funding__facts {
  gap: clamp(1.8rem, 3.5vw, 3.5rem);
  border: 0;
}

.fcg-front-page .fcg-home-funding__facts > div,
.fcg-front-page .fcg-home-funding__facts > div + div {
  border: 0;
  padding: 0;
}

.fcg-front-page .fcg-home-funding__facts dd {
  color: var(--fcg-ink);
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  line-height: 1.12;
}

.fcg-front-page .fcg-home-transparency {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.fcg-front-page .fcg-home-data {
  gap: clamp(2rem, 4vw, 4rem) clamp(2.5rem, 5vw, 5rem);
}

.fcg-front-page .fcg-home-data > div,
.fcg-front-page .fcg-home-data > div.is-wide {
  border: 0;
  padding: 0;
}

.fcg-front-page .fcg-home-data strong {
  color: var(--fcg-ink);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.25;
}

.fcg-front-page .fcg-home-contact {
  align-items: center;
}

.fcg-front-page .fcg-home-contact__copy h2 {
  color: var(--fcg-white);
}

.fcg-front-page .fcg-home-contact__copy > p {
  color: #e0efff;
}

.fcg-front-page .fcg-home-contact__panel {
  gap: clamp(1.5rem, 3vw, 2.6rem);
}

.fcg-front-page .fcg-home-contact__panel > *,
.fcg-front-page .fcg-home-contact__panel > *:last-child {
  border: 0;
  padding: 0;
}

.fcg-front-page .fcg-home-contact__panel a::after {
  display: none;
}

.fcg-front-page .fcg-home-contact__panel strong {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.25;
}

.fcg-front-page .fcg-footer {
  border: 0;
}

.fcg-front-page .fcg-footer__grid {
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(8rem, 0.7fr));
}

.fcg-front-page .fcg-footer__title {
  color: var(--fcg-ink);
  font-size: clamp(1.55rem, 2.7vw, 2.55rem);
  line-height: 1.06;
}

.fcg-front-page .fcg-footer__bottom {
  border: 0;
}

.fcg-front-page .fcg-cookie-banner,
.fcg-front-page .fcg-cookie-banner__inner {
  border-color: transparent;
  background: var(--fcg-white);
}

@media (min-width: 1041px) {
  .fcg-front-page .fcg-header,
  .fcg-front-page .fcg-header.is-scrolled {
    border: 0;
  }

  .fcg-front-page .fcg-header .fcg-container,
  .fcg-front-page .fcg-header__inner {
    grid-template-rows: auto 1fr;
    padding-block: clamp(1.5rem, 2.2vw, 2.5rem);
  }

  .fcg-front-page .fcg-header__progress {
    display: none !important;
  }

  .fcg-front-page .fcg-nav {
    padding-top: clamp(2rem, 5vh, 4rem);
  }

  .fcg-front-page .fcg-nav__list {
    gap: 0.35rem;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  }

  .fcg-front-page .fcg-nav__list li,
  .fcg-front-page .fcg-nav__list li:last-child {
    border: 0;
  }

  .fcg-front-page .fcg-nav__list a {
    min-height: 0;
    padding: 0.55rem 0;
    color: rgba(17, 17, 17, 0.68);
    font-size: clamp(0.75rem, 0.8vw, 0.86rem);
  }

  .fcg-front-page .fcg-nav__list a::after {
    display: none;
  }

  .fcg-front-page .fcg-nav__list a:hover,
  .fcg-front-page .fcg-nav__list a:focus-visible,
  .fcg-front-page .fcg-nav__list a.is-current {
    color: var(--fcg-blue);
  }

  .fcg-front-page .fcg-button--nav {
    border: 0;
  }
}

@media (max-width: 1040px) {
  .fcg-front-page .fcg-header,
  .fcg-front-page .fcg-header.is-scrolled {
    border: 0;
  }

  .fcg-front-page .fcg-mobile-toolbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fcg-front-page .fcg-mobile-toolbar a,
  .fcg-front-page .fcg-mobile-toolbar a:last-child {
    border: 0;
  }
}

@media (max-width: 900px) {
  .fcg-front-page .fcg-home-hero__grid,
  .fcg-front-page .fcg-home-heading,
  .fcg-front-page .fcg-home-intro,
  .fcg-front-page .fcg-home-story,
  .fcg-front-page .fcg-home-funding,
  .fcg-front-page .fcg-home-transparency,
  .fcg-front-page .fcg-home-contact {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(2.5rem, 8vw, 4.5rem);
  }

  .fcg-front-page .fcg-home-heading {
    align-items: start;
  }

  .fcg-front-page .fcg-home-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fcg-front-page .fcg-home-process {
    gap: 2rem;
  }

  .fcg-front-page .fcg-home-step,
  .fcg-front-page .fcg-home-step:first-child,
  .fcg-front-page .fcg-home-step:last-child {
    border: 0;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .fcg-front-page .fcg-home-hero {
    padding-block: clamp(3.5rem, 14vw, 4.75rem);
  }

  .fcg-front-page .fcg-home-hero h1 {
    max-width: none;
  }

  .fcg-front-page .fcg-home-pillars {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .fcg-front-page .fcg-home-process {
    gap: 2.25rem;
    margin-inline: 0;
    padding: 1.6rem;
  }

  .fcg-front-page .fcg-home-funding__facts,
  .fcg-front-page .fcg-home-data {
    gap: 1.6rem;
  }

  .fcg-front-page .fcg-home-data {
    grid-template-columns: minmax(0, 1fr);
  }

  .fcg-front-page .fcg-home-data > div.is-wide {
    grid-column: auto;
  }
}

/* 2026-08-12 final density and editorial rhythm */

:root {
  --fcg-section-y-compact: clamp(32.7442px, calc(10.2326vw), 44px);
  --fcg-h1-compact: clamp(23.814px, calc(7.4419vw), 32px);
  --fcg-h2-compact: clamp(22.3256px, calc(6.9767vw), 30px);
  --fcg-section-gap: clamp(17.8605px, calc(5.5814vw), 24px);
}

@media (min-width: 430px) {
  :root {
    --fcg-section-y-compact: clamp(44px, calc(37.0738px + 1.6107vw), 68px);
    --fcg-h1-compact: clamp(32px, calc(27.9597px + 0.9396vw), 46px);
    --fcg-h2-compact: clamp(30px, calc(25.9597px + 0.9396vw), 44px);
    --fcg-section-gap: clamp(24px, calc(17.0738px + 1.6107vw), 48px);
  }
}

@media (min-width: 1920px) {
  :root {
    --fcg-section-y-compact: clamp(68px, calc(3.5417vw), 68px);
    --fcg-h1-compact: clamp(46px, calc(2.3958vw), 46px);
    --fcg-h2-compact: clamp(44px, calc(2.2917vw), 44px);
    --fcg-section-gap: clamp(48px, calc(2.5vw), 48px);
  }
}

.fcg-front-page .fcg-home-hero,
.fcg-front-page .fcg-home-section {
  padding-block: var(--fcg-section-y-compact);
}

.fcg-front-page .fcg-home-hero__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(34%, 0.8fr);
  gap: var(--fcg-section-gap);
}

.fcg-front-page .fcg-home-hero h1 {
  max-width: none;
  margin-bottom: clamp(1rem, 1.6vw, 1.5rem);
  font-size: max(2.05rem, var(--fcg-h1-compact));
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.fcg-front-page .fcg-home-hero__lead {
  max-width: 42rem;
  margin-bottom: 0.8rem;
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.56;
}

.fcg-front-page .fcg-home-hero__body {
  max-width: 42rem;
  margin-bottom: clamp(1.25rem, 2vw, 1.8rem);
  font-size: clamp(0.9rem, 0.95vw, 0.98rem);
  line-height: 1.62;
}

.fcg-front-page .fcg-home-hero__media {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(0.6rem, 1vw, 1rem);
}

.fcg-front-page .fcg-home-shot--primary,
.fcg-front-page .fcg-home-shot--secondary {
  grid-row: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 0.82;
}

.fcg-front-page .fcg-home-shot--primary {
  grid-column: 1;
}

.fcg-front-page .fcg-home-shot--secondary {
  grid-column: 2;
}

.fcg-front-page .fcg-home-heading {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(17rem, 1fr);
  gap: var(--fcg-section-gap);
  align-items: end;
  margin-bottom: var(--fcg-section-gap);
}

.fcg-front-page .fcg-home-heading h2,
.fcg-front-page .fcg-home-intro__title,
.fcg-front-page .fcg-home-funding > h2,
.fcg-front-page .fcg-home-transparency__copy h2,
.fcg-front-page .fcg-home-contact > h2 {
  width: auto;
  max-width: none;
  margin: 0;
  font-family: "FCG Archivo Black", "Arial Black", sans-serif;
  font-size: max(1.75rem, var(--fcg-h2-compact));
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
}

.fcg-front-page .fcg-home-heading > p,
.fcg-front-page .fcg-home-intro__text > p,
.fcg-front-page .fcg-home-funding__copy > p,
.fcg-front-page .fcg-home-transparency__copy > p,
.fcg-front-page .fcg-home-contact__copy > p {
  font-size: clamp(0.9rem, 0.96vw, 1rem);
  line-height: 1.62;
}

.fcg-front-page .fcg-home-intro {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  column-gap: var(--fcg-section-gap);
  row-gap: var(--fcg-section-gap);
}

.fcg-front-page .fcg-home-intro__title,
.fcg-front-page .fcg-home-funding > h2 {
  width: min(72%, 58rem);
}

.fcg-front-page .fcg-home-intro__text > p {
  max-width: 36rem;
}

.fcg-front-page .fcg-home-intro__aside {
  gap: 0;
}

.fcg-front-page .fcg-home-story__image {
  width: 100%;
  aspect-ratio: 1.6;
}

.fcg-front-page .fcg-home-pillars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--fcg-section-gap);
  margin-bottom: 0;
}

.fcg-front-page .fcg-home-pillar {
  display: block;
  padding: 0;
}

.fcg-front-page .fcg-home-pillar h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.04rem, 1.2vw, 1.22rem);
  line-height: 1.12;
}

.fcg-front-page .fcg-home-pillar p {
  font-size: clamp(0.84rem, 0.9vw, 0.92rem);
  line-height: 1.58;
}

.fcg-front-page .fcg-home-founders,
.fcg-front-page .fcg-home-updates {
  gap: var(--fcg-section-gap);
}

.fcg-front-page .fcg-home-founder {
  gap: clamp(1rem, 1.6vw, 1.5rem);
}

.fcg-front-page .fcg-home-founder__media {
  aspect-ratio: 1.2;
}

.fcg-front-page .fcg-home-founder__media img {
  object-position: center 26%;
}

.fcg-front-page .fcg-home-founder__copy h3 {
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  line-height: 1.08;
}

.fcg-front-page .fcg-home-founder__role {
  margin-bottom: 0.7rem !important;
}

.fcg-front-page .fcg-home-founder__copy > p:last-child {
  font-size: clamp(0.86rem, 0.92vw, 0.94rem);
  line-height: 1.6;
}

.fcg-front-page .fcg-home-section--soft {
  background: var(--fcg-white);
}

.fcg-front-page .fcg-home-updates {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fcg-front-page .fcg-home-update {
  gap: 1rem;
}

.fcg-front-page .fcg-home-update__image,
.fcg-front-page .fcg-home-update.is-featured .fcg-home-update__image {
  aspect-ratio: 1.55;
}

.fcg-front-page .fcg-home-update__meta {
  margin-bottom: 0.55rem;
}

.fcg-front-page .fcg-home-update__content h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.12;
}

.fcg-front-page .fcg-home-update__content p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0.75rem;
  font-size: clamp(0.84rem, 0.88vw, 0.9rem);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.fcg-front-page .fcg-text-link {
  color: var(--fcg-blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.fcg-front-page .fcg-home-funding {
  column-gap: var(--fcg-section-gap);
  row-gap: var(--fcg-section-gap);
}

.fcg-front-page .fcg-home-funding__facts {
  gap: var(--fcg-section-gap);
  margin-top: clamp(1.4rem, 2.2vw, 2rem);
}

.fcg-front-page .fcg-home-funding__image {
  max-height: 25rem;
}

.fcg-front-page .fcg-home-transparency {
  gap: var(--fcg-section-gap);
  align-items: start;
}

.fcg-front-page .fcg-home-transparency__copy h2 {
  margin-bottom: clamp(1rem, 1.6vw, 1.5rem);
}

.fcg-front-page .fcg-home-data {
  gap: clamp(1.4rem, 2.2vw, 2.2rem) var(--fcg-section-gap);
}

.fcg-front-page .fcg-home-contact {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  grid-template-rows: auto auto;
  column-gap: var(--fcg-section-gap);
  row-gap: clamp(1.5rem, 2.5vw, 2.25rem);
  align-items: start;
}

.fcg-front-page .fcg-home-contact > h2 {
  grid-column: 1 / -1;
  grid-row: 1;
  color: var(--fcg-white);
}

.fcg-front-page .fcg-home-contact__copy {
  grid-column: 1;
  grid-row: 2;
}

.fcg-front-page .fcg-home-contact__panel {
  grid-column: 2;
  grid-row: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.fcg-front-page .fcg-home-contact__panel > *,
.fcg-front-page .fcg-home-contact__panel > *:last-child {
  align-content: start;
  padding: 0;
}

.fcg-front-page .fcg-home-contact__panel strong {
  font-size: clamp(0.92rem, 1.08vw, 1.08rem);
  line-height: 1.3;
}

@media (max-width: 1040px) {
  .fcg-front-page .fcg-mobile-toolbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .fcg-front-page .fcg-home-hero__grid,
  .fcg-front-page .fcg-home-heading,
  .fcg-front-page .fcg-home-intro,
  .fcg-front-page .fcg-home-funding,
  .fcg-front-page .fcg-home-transparency,
  .fcg-front-page .fcg-home-contact {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 2.5rem);
  }

  .fcg-front-page .fcg-home-heading {
    gap: 0.75rem;
  }

  .fcg-front-page .fcg-home-intro__title,
  .fcg-front-page .fcg-home-funding > h2 {
    width: 100%;
  }

  .fcg-front-page .fcg-home-contact > h2,
  .fcg-front-page .fcg-home-contact__copy,
  .fcg-front-page .fcg-home-contact__panel {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (min-width: 901px) {
  .fcg-front-page .fcg-home-intro,
  .fcg-front-page .fcg-home-funding {
    grid-template-rows: auto auto;
  }

  .fcg-front-page .fcg-home-intro__title,
  .fcg-front-page .fcg-home-funding > h2 {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .fcg-front-page .fcg-home-intro__text,
  .fcg-front-page .fcg-home-funding__copy {
    grid-column: 1;
    grid-row: 2;
  }

  .fcg-front-page .fcg-home-intro__aside,
  .fcg-front-page .fcg-home-funding__image {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  .fcg-front-page .fcg-home-pillars,
  .fcg-front-page .fcg-home-updates {
    grid-template-columns: minmax(0, 1fr);
  }

  .fcg-front-page .fcg-home-pillars {
    gap: 1.5rem;
  }

  .fcg-front-page .fcg-home-founder__media {
    aspect-ratio: 1.1;
  }

  .fcg-front-page .fcg-home-contact__panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .fcg-front-page .fcg-home-hero__media {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  }

  .fcg-front-page .fcg-home-shot--primary,
  .fcg-front-page .fcg-home-shot--secondary {
    aspect-ratio: 0.9;
  }

  .fcg-front-page .fcg-home-story__image {
    aspect-ratio: 1.25;
  }
}

@media (max-width: 430px) {
  .fcg-front-page .fcg-header__inner {
    min-height: 4.6rem;
  }

  .fcg-front-page .fcg-brand__mark {
    width: 3rem;
  }

  .fcg-front-page .fcg-home-hero__media {
    gap: 0.65rem;
  }

  .fcg-front-page .fcg-home-pillar {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .fcg-front-page .fcg-home-story__copy {
    padding: 1.35rem;
  }

  .fcg-front-page .fcg-home-process {
    margin-inline: calc(-1 * max(1rem, var(--fcg-edge)));
  }

  .fcg-front-page .fcg-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .fcg-front-page .fcg-footer__brand {
    grid-column: auto;
    margin-bottom: 1.4rem;
  }

  .fcg-front-page .fcg-cookie-banner__inner {
    gap: 0.9rem;
    padding: 1rem;
  }

  .fcg-front-page .fcg-cookie-banner__copy p {
    font-size: 0.72rem;
  }

  .fcg-front-page .fcg-cookie-banner__actions .fcg-button {
    min-height: 2.75rem;
    font-size: 0.72rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .fcg-front-page .fcg-home-shot:hover img,
  .fcg-front-page .fcg-home-story__image:hover img,
  .fcg-front-page .fcg-home-founder:hover .fcg-home-founder__media img,
  .fcg-front-page .fcg-home-update:hover .fcg-home-update__image img {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fcg-front-page *,
  .fcg-front-page *::before,
  .fcg-front-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
