@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA,
    U+02BD-02C5,
    U+02C7-02CC,
    U+02CE-02D7,
    U+02DD-02FF,
    U+0304,
    U+0308,
    U+0329,
    U+1D00-1DBF,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AC,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF,
    U+20AD-20C0;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

:root {
  --fcg-blue-950: #0f3871;
  --fcg-blue-900: #004aad;
  --fcg-blue-700: #1f78db;
  --fcg-blue-100: #d1eaff;
  --fcg-blue-50: #edf6ff;
  --fcg-green-700: #006633;
  --fcg-white: #ffffff;
  --fcg-ink: #16324f;
  --fcg-ink-soft: #4a6280;
  --fcg-line: rgba(0, 74, 173, 0.12);
  --fcg-shadow: 0 24px 60px rgba(15, 56, 113, 0.1);
  --fcg-shadow-soft: 0 16px 30px rgba(15, 56, 113, 0.08);
  --fcg-radius-lg: 32px;
  --fcg-radius-md: 22px;
  --fcg-radius-sm: 16px;
  --fcg-container: min(1180px, calc(100vw - 2 * clamp(18px, 4vw, 40px)));
  --fcg-space-section: clamp(72px, 8vw, 124px);
  --fcg-space-gap: clamp(18px, 2.6vw, 28px);
  --fcg-font-body: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fcg-display-xl: clamp(42px, 4.9vw, 76px);
  --fcg-display-lg: clamp(30px, 3.2vw, 52px);
  --fcg-display-md: clamp(24px, 2.3vw, 36px);
  --fcg-body-lg: clamp(18px, 1.6vw, 22px);
  --fcg-body: clamp(16px, 1.2vw, 18px);
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--fcg-font-body);
  font-size: var(--fcg-body);
  line-height: 1.7;
  color: var(--fcg-ink);
  background:
    radial-gradient(circle at top left, rgba(209, 234, 255, 0.82), transparent 38%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 28%, #f5fbff 100%);
}

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

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

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

.fcg-container {
  width: var(--fcg-container);
  margin: 0 auto;
}

.fcg-main > * {
  position: relative;
}

.fcg-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--fcg-blue-900);
  color: var(--fcg-white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.fcg-skip-link:focus,
.fcg-skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fcg-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.fcg-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 74, 173, 0.08);
  box-shadow: 0 12px 28px rgba(15, 56, 113, 0.05);
}

.fcg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fcg-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.fcg-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 3.5vw, 68px);
}

.fcg-brand__mark img {
  max-height: 48px;
  width: auto;
}

.fcg-brand__meta {
  display: grid;
  gap: 2px;
}

.fcg-brand__meta strong {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 800;
  color: var(--fcg-blue-950);
}

.fcg-brand__meta small {
  font-size: 13px;
  color: var(--fcg-ink-soft);
}

.fcg-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.fcg-nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fcg-nav__list a {
  font-size: 15px;
  font-weight: 600;
  color: var(--fcg-blue-950);
  transition: color 0.2s ease;
}

.fcg-nav__list a:hover,
.fcg-nav__list a:focus-visible {
  color: var(--fcg-blue-700);
}

.fcg-nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.fcg-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  border-radius: 999px;
  background: var(--fcg-blue-950);
}

.fcg-button-row,
.fcg-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.fcg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fcg-blue-900), var(--fcg-blue-700));
  color: var(--fcg-white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 24px rgba(0, 74, 173, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fcg-button:hover,
.fcg-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 74, 173, 0.2);
}

.fcg-button--ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 74, 173, 0.12);
  color: var(--fcg-blue-950);
  box-shadow: none;
}

.fcg-button--ghost:hover,
.fcg-button--ghost:focus-visible {
  background: rgba(209, 234, 255, 0.72);
  box-shadow: none;
}

.fcg-button--nav {
  min-height: 48px;
  padding-inline: 22px;
}

.fcg-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--fcg-blue-900);
}

.fcg-link-arrow svg {
  width: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.fcg-section,
.fcg-page-hero,
.fcg-hero {
  padding: var(--fcg-space-section) 0;
}

.fcg-section--soft {
  background: linear-gradient(180deg, rgba(209, 234, 255, 0.35), rgba(237, 246, 255, 0.45));
}

.fcg-section--cta {
  padding-top: calc(var(--fcg-space-section) * 0.8);
}

.fcg-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(209, 234, 255, 0.8);
  color: var(--fcg-blue-900);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fcg-section-heading {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 50px);
}

.fcg-section-heading h2,
.fcg-page-hero__content h1,
.fcg-hero__content h1,
.fcg-cta-panel h2,
.fcg-story__copy h2 {
  margin: 0;
  font-size: var(--fcg-display-lg);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--fcg-blue-950);
}

.fcg-section-heading p,
.fcg-page-hero__content p,
.fcg-hero__lead,
.fcg-hero__copy,
.fcg-story__copy p,
.fcg-cta-panel p {
  margin: 0;
  color: var(--fcg-ink-soft);
}

.fcg-hero {
  overflow: clip;
  padding-top: clamp(56px, 7vw, 92px);
}

.fcg-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.fcg-hero__content {
  display: grid;
  gap: 20px;
  max-width: 650px;
}

.fcg-hero__content h1 {
  font-size: var(--fcg-display-xl);
}

.fcg-hero__lead {
  font-size: var(--fcg-body-lg);
  max-width: 620px;
}

.fcg-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.fcg-hero__signals li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--fcg-line);
  color: var(--fcg-blue-950);
  font-size: 14px;
  font-weight: 600;
}

.fcg-hero__visual {
  position: relative;
  min-height: clamp(420px, 48vw, 640px);
}

.fcg-hero__image {
  position: absolute;
  overflow: hidden;
  border-radius: var(--fcg-radius-lg);
  box-shadow: var(--fcg-shadow);
}

.fcg-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fcg-hero__image--primary {
  inset: 0 7% 12% 0;
}

.fcg-hero__image--secondary {
  width: 44%;
  height: 42%;
  right: 0;
  bottom: 0;
  border: 8px solid rgba(255, 255, 255, 0.86);
}

.fcg-hero__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 74, 173, 0.1);
  color: var(--fcg-blue-950);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--fcg-shadow-soft);
  animation: fcgFloat 7s ease-in-out infinite;
}

.fcg-hero__badge--top {
  left: 14%;
  top: -16px;
}

.fcg-hero__badge--bottom {
  right: 8%;
  top: 18%;
  animation-delay: 1.3s;
}

.fcg-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.fcg-story__copy {
  display: grid;
  gap: 18px;
}

.fcg-story__card,
.fcg-cta-panel,
.fcg-empty-card,
.fcg-data-card,
.fcg-contact-panel,
.fcg-action-card,
.fcg-pillar-card,
.fcg-post-card,
.fcg-article {
  border: 1px solid var(--fcg-line);
  border-radius: var(--fcg-radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--fcg-shadow-soft);
}

.fcg-story__card {
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(180deg, rgba(209, 234, 255, 0.5), rgba(255, 255, 255, 0.96));
}

.fcg-story__card h3 {
  margin: 0 0 12px;
  font-size: var(--fcg-display-md);
  letter-spacing: -0.03em;
  color: var(--fcg-blue-950);
}

.fcg-story__card p {
  margin: 0;
}

.fcg-story__media {
  overflow: hidden;
  border-radius: var(--fcg-radius-lg);
  box-shadow: var(--fcg-shadow);
  min-height: clamp(320px, 34vw, 520px);
}

.fcg-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fcg-pillar-grid,
.fcg-post-grid {
  display: grid;
  gap: var(--fcg-space-gap);
}

.fcg-pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fcg-action-grid {
  display: grid;
  gap: var(--fcg-space-gap);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fcg-pillar-card,
.fcg-action-card,
.fcg-data-card,
.fcg-empty-card,
.fcg-contact-panel,
.fcg-cta-panel {
  padding: clamp(22px, 3vw, 30px);
}

.fcg-pillar-card h3,
.fcg-action-card h3,
.fcg-data-card h2,
.fcg-empty-card h2,
.fcg-empty-card h3,
.fcg-cta-panel h2 {
  margin: 0 0 10px;
  color: var(--fcg-blue-950);
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.03em;
}

.fcg-pillar-card p,
.fcg-action-card p,
.fcg-data-card p,
.fcg-empty-card p,
.fcg-footer__copy {
  margin: 0;
  color: var(--fcg-ink-soft);
}

.fcg-icon,
.fcg-action-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(209, 234, 255, 0.95), rgba(230, 245, 255, 0.95));
  color: var(--fcg-blue-900);
}

.fcg-icon svg,
.fcg-action-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fcg-pillar-card,
.fcg-data-card,
.fcg-empty-card {
  display: grid;
  gap: 16px;
}

.fcg-action-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.fcg-updates {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.fcg-post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fcg-post-grid--archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fcg-post-card {
  overflow: hidden;
}

.fcg-post-card--featured {
  grid-column: span 2;
}

.fcg-post-card__image {
  display: block;
  aspect-ratio: 1.35;
  overflow: hidden;
}

.fcg-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.fcg-post-card:hover .fcg-post-card__image img,
.fcg-post-card:focus-within .fcg-post-card__image img {
  transform: scale(1.03);
}

.fcg-post-card__content {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.fcg-post-card__content h2,
.fcg-post-card__content h3 {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fcg-blue-950);
}

.fcg-post-card__meta {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fcg-blue-700);
}

.fcg-post-card__content p {
  margin: 0;
  color: var(--fcg-ink-soft);
}

.fcg-transparency {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.fcg-transparency__copy {
  display: grid;
  gap: 18px;
}

.fcg-data-grid {
  display: grid;
  gap: var(--fcg-space-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fcg-data-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--fcg-ink-soft);
}

.fcg-cta-panel {
  display: grid;
  gap: 18px;
  text-align: center;
  padding: clamp(34px, 6vw, 56px);
  background:
    radial-gradient(circle at top right, rgba(209, 234, 255, 0.95), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(209, 234, 255, 0.72));
}

.fcg-page-hero {
  padding-top: clamp(56px, 7vw, 90px);
  padding-bottom: clamp(32px, 5vw, 56px);
}

.fcg-page-hero__content {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.fcg-detail-grid {
  display: grid;
  gap: var(--fcg-space-gap);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.fcg-contact-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.fcg-contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.fcg-contact-row small {
  display: block;
  margin-bottom: 4px;
  color: var(--fcg-ink-soft);
}

.fcg-contact-row a,
.fcg-contact-row strong {
  color: var(--fcg-blue-950);
  font-size: 18px;
}

.fcg-prose {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

.fcg-prose h2,
.fcg-prose h3 {
  margin: 12px 0 0;
  color: var(--fcg-blue-950);
  letter-spacing: -0.03em;
}

.fcg-prose p,
.fcg-prose ul,
.fcg-prose ol {
  margin: 0;
  color: var(--fcg-ink-soft);
}

.fcg-prose ul,
.fcg-prose ol {
  padding-left: 1.2em;
}

.fcg-article {
  padding: clamp(22px, 3vw, 34px);
}

.fcg-article__image {
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: calc(var(--fcg-radius-lg) - 8px);
}

.fcg-article__image img {
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
}

.fcg-pagination {
  margin-top: clamp(24px, 4vw, 40px);
}

.fcg-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fcg-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding-inline: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--fcg-line);
  font-weight: 700;
  color: var(--fcg-blue-950);
}

.fcg-pagination .current {
  background: var(--fcg-blue-900);
  color: var(--fcg-white);
}

.fcg-footer {
  padding: clamp(44px, 6vw, 72px) 0 28px;
  background: linear-gradient(180deg, rgba(15, 56, 113, 0.98), rgba(10, 44, 91, 0.98));
  color: rgba(255, 255, 255, 0.92);
}

.fcg-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.fcg-footer__title,
.fcg-footer h3 {
  margin: 0 0 12px;
  color: var(--fcg-white);
}

.fcg-footer__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.8);
}

.fcg-footer__bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fcgFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

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

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

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

@media (max-width: 1100px) {
  .fcg-hero__grid,
  .fcg-story,
  .fcg-transparency,
  .fcg-detail-grid,
  .fcg-footer__grid {
    grid-template-columns: 1fr;
  }

  .fcg-pillar-grid,
  .fcg-action-grid,
  .fcg-post-grid,
  .fcg-post-grid--archive,
  .fcg-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fcg-post-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .fcg-nav-toggle {
    display: inline-block;
  }

  .fcg-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--fcg-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--fcg-shadow);
  }

  .fcg-nav.is-open {
    display: flex;
  }

  .fcg-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .fcg-brand__meta small {
    display: none;
  }

  .fcg-updates {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .fcg-hero__visual {
    min-height: 320px;
  }

  .fcg-hero__image--primary {
    inset: 0 5% 20% 0;
  }

  .fcg-hero__image--secondary {
    width: 48%;
    height: 38%;
  }

  .fcg-pillar-grid,
  .fcg-action-grid,
  .fcg-post-grid,
  .fcg-post-grid--archive,
  .fcg-data-grid {
    grid-template-columns: 1fr;
  }

  .fcg-post-card--featured {
    grid-column: auto;
  }
}

html {
  scroll-behavior: smooth;
}

.fcg-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 70, 170, 0.08);
  backdrop-filter: blur(16px);
}

.fcg-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(0, 70, 170, 0.08);
}

.fcg-brand__mark {
  width: clamp(54px, 6vw, 72px);
  height: clamp(54px, 6vw, 72px);
  border-radius: 20px;
  background: rgba(232, 245, 255, 0.95);
  box-shadow: none;
}

.fcg-brand__meta strong {
  font-size: clamp(16px, 1.2vw, 18px);
}

.fcg-button--nav {
  background: var(--fcg-blue-900);
  color: var(--fcg-white);
  box-shadow: none;
}

.fcg-footer {
  background:
    radial-gradient(circle at top right, rgba(180, 224, 255, 0.45), transparent 28%),
    linear-gradient(180deg, #e9f6ff 0%, #dff0ff 100%);
  color: var(--fcg-blue-950);
  border-top: 1px solid rgba(0, 70, 170, 0.08);
}

.fcg-footer__copy,
.fcg-footer__bottom,
.fcg-footer__list a,
.fcg-footer__list li {
  color: rgba(0, 70, 170, 0.88);
}

.fcg-footer h3,
.fcg-footer__title {
  color: var(--fcg-blue-950);
}

.fcg-landing-hero {
  position: relative;
  padding: clamp(72px, 10vw, 132px) 0 clamp(64px, 9vw, 112px);
  overflow: clip;
}

.fcg-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 70, 170, 0.12), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(0, 70, 170, 0.1), transparent 26%),
    linear-gradient(180deg, #f7fcff 0%, #f1f9ff 42%, #ffffff 100%);
  pointer-events: none;
}

.fcg-landing-hero__grid,
.fcg-landing-intro,
.fcg-landing-transparency,
.fcg-landing-contact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

.fcg-landing-hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
}

.fcg-landing-hero__content {
  display: grid;
  gap: 20px;
  max-width: 680px;
}

.fcg-landing-hero__logo {
  width: clamp(180px, 22vw, 280px);
  height: auto;
}

.fcg-landing-hero__lead {
  max-width: 58ch;
  font-size: clamp(18px, 1.7vw, 23px);
  color: rgba(14, 50, 105, 0.92);
}

.fcg-landing-hero__copy {
  max-width: 60ch;
}

.fcg-landing-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.fcg-landing-hero__signals li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 70, 170, 0.12);
  color: var(--fcg-blue-950);
  font-size: 14px;
  font-weight: 600;
}

.fcg-landing-hero__media {
  position: relative;
  min-height: clamp(420px, 48vw, 680px);
}

.fcg-landing-hero__photo {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(0, 70, 170, 0.14);
}

.fcg-landing-hero__photo img,
.fcg-landing-intro__image img,
.fcg-landing-update__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fcg-landing-hero__photo--main {
  inset: 0 10% 12% 0;
}

.fcg-landing-hero__photo--accent {
  width: 40%;
  height: 42%;
  right: 0;
  bottom: 2%;
  border-radius: 28px;
}

.fcg-landing-hero__note {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  gap: 6px;
  max-width: 280px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 70, 170, 0.08);
  box-shadow: 0 20px 50px rgba(0, 70, 170, 0.1);
}

.fcg-landing-hero__note strong {
  font-size: 20px;
  color: var(--fcg-blue-950);
}

.fcg-landing-hero__note span {
  color: var(--fcg-ink-soft);
}

.fcg-landing-section {
  padding-top: clamp(54px, 6vw, 92px);
  padding-bottom: clamp(54px, 6vw, 92px);
}

.fcg-landing-section--blue {
  background: linear-gradient(180deg, rgba(232, 245, 255, 0.92), rgba(245, 251, 255, 0.96));
}

.fcg-landing-section--soft {
  background: linear-gradient(180deg, rgba(246, 252, 255, 0.98), rgba(235, 247, 255, 0.72));
}

.fcg-landing-section--contact {
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.fcg-landing-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.fcg-landing-heading h2,
.fcg-landing-intro__copy h2,
.fcg-landing-process__lead h2,
.fcg-landing-transparency__copy h2,
.fcg-landing-contact__copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fcg-blue-950);
}

.fcg-landing-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
}

.fcg-landing-intro__copy {
  max-width: 620px;
}

.fcg-landing-intro__story {
  display: grid;
  gap: 18px;
}

.fcg-landing-intro__image {
  overflow: hidden;
  border-radius: 32px;
  min-height: clamp(300px, 34vw, 460px);
  box-shadow: 0 24px 56px rgba(0, 70, 170, 0.12);
}

.fcg-landing-intro__story-copy {
  max-width: 560px;
  padding-left: clamp(8px, 2vw, 22px);
  border-left: 3px solid rgba(0, 70, 170, 0.16);
}

.fcg-landing-intro__story-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.1vw, 32px);
  color: var(--fcg-blue-950);
}

.fcg-landing-pillar-list {
  display: grid;
  gap: 16px;
}

.fcg-landing-pillar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: clamp(20px, 2vw, 28px) 0;
  border-top: 1px solid rgba(0, 70, 170, 0.12);
}

.fcg-landing-pillar:last-child {
  border-bottom: 1px solid rgba(0, 70, 170, 0.12);
}

.fcg-landing-pillar__icon,
.fcg-landing-step__icon,
.fcg-landing-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 70, 170, 0.12);
  color: var(--fcg-blue-900);
}

.fcg-landing-pillar__icon svg,
.fcg-landing-step__icon svg,
.fcg-landing-empty__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.fcg-landing-pillar__body h3,
.fcg-landing-step h3,
.fcg-landing-update__content h3,
.fcg-landing-empty h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.7vw, 28px);
  color: var(--fcg-blue-950);
}

.fcg-landing-process {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

.fcg-landing-process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.fcg-landing-step {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 2vw, 26px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 70, 170, 0.12);
}

.fcg-landing-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fcg-landing-step__count {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  color: rgba(0, 70, 170, 0.42);
  letter-spacing: 0.12em;
}

.fcg-landing-updates {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: clamp(18px, 2vw, 24px);
}

.fcg-landing-update {
  display: grid;
  gap: 14px;
}

.fcg-landing-update.is-featured {
  grid-row: span 2;
}

.fcg-landing-update__image {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  min-height: 220px;
  box-shadow: 0 18px 42px rgba(0, 70, 170, 0.1);
}

.fcg-landing-update.is-featured .fcg-landing-update__image {
  min-height: clamp(280px, 30vw, 420px);
}

.fcg-landing-update__content {
  display: grid;
  gap: 10px;
}

.fcg-landing-update__meta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 70, 170, 0.6);
}

.fcg-landing-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 70, 170, 0.12);
}

.fcg-landing-transparency {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  align-items: start;
}

.fcg-landing-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.fcg-landing-legal a {
  color: var(--fcg-blue-900);
  font-weight: 700;
}

.fcg-landing-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fcg-landing-data__item {
  display: grid;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 70, 170, 0.12);
}

.fcg-landing-data__item span,
.fcg-landing-contact__panel span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 70, 170, 0.56);
}

.fcg-landing-data__item strong,
.fcg-landing-contact__panel strong {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.35;
  color: var(--fcg-blue-950);
}

.fcg-landing-data__item--wide {
  grid-column: span 2;
}

.fcg-landing-contact {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(190, 228, 255, 0.72), transparent 34%),
    linear-gradient(135deg, #f8fcff 0%, #eaf6ff 100%);
  border: 1px solid rgba(0, 70, 170, 0.12);
  box-shadow: 0 28px 80px rgba(0, 70, 170, 0.1);
}

.fcg-landing-contact__panel {
  display: grid;
  gap: 12px;
}

.fcg-landing-contact__panel > * {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 70, 170, 0.12);
}

.fcg-landing-contact__panel a {
  text-decoration: none;
}

@media (max-width: 1100px) {
  .fcg-landing-hero__grid,
  .fcg-landing-intro,
  .fcg-landing-transparency,
  .fcg-landing-contact {
    grid-template-columns: 1fr;
  }

  .fcg-landing-updates,
  .fcg-landing-process__steps {
    grid-template-columns: 1fr;
  }

  .fcg-landing-update.is-featured {
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  .fcg-landing-hero {
    padding-top: clamp(54px, 12vw, 86px);
  }

  .fcg-landing-hero__media {
    min-height: 360px;
  }

  .fcg-landing-hero__photo--main {
    inset: 0 6% 18% 0;
  }

  .fcg-landing-hero__photo--accent {
    width: 46%;
    height: 36%;
  }

  .fcg-landing-data {
    grid-template-columns: 1fr;
  }

  .fcg-landing-data__item--wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .fcg-landing-hero__signals {
    gap: 8px;
  }

  .fcg-landing-hero__signals li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .fcg-landing-hero__media {
    min-height: 320px;
  }

  .fcg-landing-hero__note {
    max-width: calc(100% - 18px);
    right: 0;
  }

  .fcg-landing-empty {
    grid-template-columns: 1fr;
  }
}

/* --- 2026-03-31 landing refinement: editorial foundation direction --- */

:root {
  --fcg-blue-950: #082f70;
  --fcg-blue-900: #0046aa;
  --fcg-blue-800: #075cca;
  --fcg-blue-700: #2695ff;
  --fcg-blue-100: #d8eeff;
  --fcg-blue-50: #f3faff;
  --fcg-line: rgba(0, 70, 170, 0.14);
  --fcg-shadow: 0 22px 60px rgba(8, 47, 112, 0.12);
  --fcg-shadow-soft: 0 14px 32px rgba(8, 47, 112, 0.08);
  --fcg-radius-lg: 18px;
  --fcg-radius-md: 14px;
  --fcg-radius-sm: 10px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(216, 238, 255, 0.95), transparent 34%),
    radial-gradient(circle at bottom right, rgba(196, 233, 255, 0.65), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 36%, #f5fbff 100%);
}

.fcg-button {
  min-height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fcg-blue-900), #30a3ff);
  box-shadow: 0 16px 34px rgba(0, 70, 170, 0.18);
}

.fcg-button:hover,
.fcg-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 70, 170, 0.22);
}

.fcg-button--ghost {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 70, 170, 0.16);
}

.fcg-brand__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(8, 47, 112, 0.55);
}

.fcg-brand__meta {
  gap: 6px;
}

.fcg-brand__meta strong {
  font-size: clamp(18px, 1.2vw, 20px);
  line-height: 1.1;
}

.fcg-brand__meta small {
  font-size: 13px;
  line-height: 1.45;
  max-width: 20ch;
}

.fcg-header__progress {
  display: none;
}

.fcg-front-page .fcg-header {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 132px;
  padding: 26px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 250, 255, 0.88));
  border-right: 1px solid rgba(0, 70, 170, 0.1);
  border-bottom: none;
  box-shadow: none;
}

.fcg-front-page .fcg-header .fcg-container {
  width: 100%;
  max-width: none;
  padding: 0 20px;
}

.fcg-front-page .fcg-header__inner {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
  align-items: stretch;
}

.fcg-front-page .fcg-nav {
  display: grid;
  align-content: center;
  gap: 22px;
}

.fcg-front-page .fcg-nav__list {
  display: grid;
  gap: 14px;
}

.fcg-front-page .fcg-nav__list a {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(8, 47, 112, 0.72);
}

.fcg-front-page .fcg-nav__list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 70, 170, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.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-950);
}

.fcg-front-page .fcg-nav__list a:hover::before,
.fcg-front-page .fcg-nav__list a:focus-visible::before,
.fcg-front-page .fcg-nav__list a.is-current::before {
  background: linear-gradient(135deg, var(--fcg-blue-900), #58c7ff);
  box-shadow: 0 0 0 6px rgba(0, 70, 170, 0.08);
  transform: scale(1.08);
}

.fcg-front-page .fcg-header__progress {
  display: block;
  width: 2px;
  height: clamp(120px, 18vh, 180px);
  margin-left: 2px;
  background: rgba(0, 70, 170, 0.12);
  overflow: hidden;
}

.fcg-front-page .fcg-header__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: top center;
  transform: scaleY(0);
  background: linear-gradient(180deg, var(--fcg-blue-900), #67d4ff);
}

.fcg-front-page .fcg-main,
.fcg-front-page .fcg-footer {
  margin-left: 132px;
}

.fcg-front-page .fcg-button--nav {
  min-height: 46px;
  padding-inline: 0;
  width: 100%;
  font-size: 14px;
}

.fcg-home-hero {
  position: relative;
  overflow: clip;
  min-height: 100svh;
  padding: clamp(56px, 7vw, 92px) 0 clamp(48px, 7vw, 90px);
}

.fcg-home-hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 70, 170, 0.12), transparent 18%),
    radial-gradient(circle at 78% 24%, rgba(42, 149, 255, 0.18), transparent 20%),
    radial-gradient(circle at 84% 84%, rgba(160, 224, 255, 0.22), transparent 18%);
  animation: fcgAurora 18s ease-in-out infinite alternate;
}

.fcg-home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.fcg-home-hero__copy {
  display: grid;
  gap: 18px;
  max-width: 700px;
}

.fcg-home-hero__logo {
  width: min(340px, 72vw);
  height: auto;
}

.fcg-home-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(44px, 5.2vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: var(--fcg-blue-950);
}

.fcg-home-hero__lead {
  margin: 0;
  max-width: 38ch;
  font-size: clamp(18px, 1.6vw, 24px);
  color: rgba(8, 47, 112, 0.88);
}

.fcg-home-hero__body {
  margin: 0;
  max-width: 50ch;
  color: var(--fcg-ink-soft);
}

.fcg-home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.fcg-home-hero__tags li {
  padding: 8px 12px;
  border: 1px solid rgba(0, 70, 170, 0.14);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(8, 47, 112, 0.7);
}

.fcg-home-hero__media {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  align-items: end;
}

.fcg-home-shot {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(0, 70, 170, 0.12);
  background: #fff;
  box-shadow: var(--fcg-shadow-soft);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  will-change: transform;
}

.fcg-home-shot img,
.fcg-home-update__image img,
.fcg-home-founder__media img,
.fcg-home-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.fcg-home-shot:hover,
.fcg-home-update:hover .fcg-home-update__image,
.fcg-home-founder:hover .fcg-home-founder__media {
  box-shadow: 0 26px 70px rgba(8, 47, 112, 0.16);
}

.fcg-home-shot:hover img,
.fcg-home-update:hover .fcg-home-update__image img,
.fcg-home-founder:hover .fcg-home-founder__media img,
.fcg-home-story__image:hover img {
  transform: scale(1.04);
}

.fcg-home-shot--primary {
  grid-row: span 2;
  min-height: 560px;
}

.fcg-home-shot--secondary {
  min-height: 250px;
}

.fcg-home-hero__stamp {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 180px;
  padding: 18px;
  background: linear-gradient(145deg, var(--fcg-blue-900), #5ac6ff);
  color: var(--fcg-white);
  box-shadow: var(--fcg-shadow-soft);
}

.fcg-home-hero__stamp strong {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.1;
}

.fcg-home-hero__stamp span {
  max-width: 24ch;
  font-size: 14px;
  line-height: 1.5;
}

.fcg-home-section {
  position: relative;
  padding: clamp(54px, 7vw, 96px) 0;
  border-top: 1px solid rgba(0, 70, 170, 0.08);
}

.fcg-home-section--tinted {
  background:
    linear-gradient(180deg, rgba(229, 244, 255, 0.58) 0%, rgba(255, 255, 255, 0.84) 100%);
}

.fcg-home-section--soft {
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.84) 0%, rgba(240, 248, 255, 0.7) 100%);
}

.fcg-home-section--cta {
  background:
    linear-gradient(135deg, rgba(0, 70, 170, 0.05), rgba(108, 209, 255, 0.12));
}

.fcg-home-heading {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.fcg-home-heading h2,
.fcg-home-intro__text h2,
.fcg-home-contact__copy h2,
.fcg-home-transparency__copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fcg-blue-950);
}

.fcg-home-heading p,
.fcg-home-intro__text p,
.fcg-home-contact__copy p,
.fcg-home-transparency__copy p {
  margin: 0;
  max-width: 56ch;
  color: var(--fcg-ink-soft);
}

.fcg-home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 4vw, 44px);
}

.fcg-home-intro__text {
  display: grid;
  gap: 16px;
}

.fcg-home-intro__aside {
  display: grid;
  gap: 22px;
}

.fcg-home-quote {
  padding: 22px 0 0;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--fcg-blue-900), #5ac6ff) 1;
}

.fcg-home-quote p {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.35;
  color: var(--fcg-blue-950);
}

.fcg-home-story {
  display: grid;
  gap: 16px;
}

.fcg-home-story__image {
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(0, 70, 170, 0.12);
  box-shadow: var(--fcg-shadow-soft);
  will-change: transform;
}

.fcg-home-story__copy {
  display: grid;
  gap: 10px;
}

.fcg-home-story__copy h3,
.fcg-home-founder__copy h3,
.fcg-home-pillar h3,
.fcg-home-step h3,
.fcg-home-update__content h3,
.fcg-home-empty h3 {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.1;
  color: var(--fcg-blue-950);
}

.fcg-home-story__copy p,
.fcg-home-founder__copy p,
.fcg-home-pillar p,
.fcg-home-step p,
.fcg-home-update__content p,
.fcg-home-empty p {
  margin: 0;
  color: var(--fcg-ink-soft);
}

.fcg-home-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.fcg-home-pillar,
.fcg-home-step {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--fcg-blue-900), #73d9ff) 1;
}

.fcg-home-pillar__icon,
.fcg-home-step__icon,
.fcg-home-empty__icon {
  color: var(--fcg-blue-900);
}

.fcg-home-pillar__icon svg,
.fcg-home-step__icon svg,
.fcg-home-empty__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.fcg-home-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fcg-home-step {
  align-content: start;
}

.fcg-home-step__count,
.fcg-home-update__meta,
.fcg-home-founder__role,
.fcg-home-data span,
.fcg-home-contact__panel span,
.fcg-footer__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(8, 47, 112, 0.54);
}

.fcg-home-founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.fcg-home-founder {
  display: grid;
  gap: 18px;
}

.fcg-home-founder__media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(0, 70, 170, 0.12);
  box-shadow: var(--fcg-shadow-soft);
  will-change: transform;
}

.fcg-home-founder__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 54%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 47, 112, 0.85) 100%);
}

.fcg-home-founder__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: var(--fcg-white);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.fcg-home-founder:hover .fcg-home-founder__label {
  transform: translateY(-6px);
}

.fcg-home-founder__label span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.fcg-home-founder__label strong {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.fcg-home-founder__copy {
  display: grid;
  gap: 12px;
}

.fcg-home-updates {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  gap: 20px;
}

.fcg-home-update {
  display: grid;
  gap: 14px;
}

.fcg-home-update.is-featured {
  grid-row: span 2;
}

.fcg-home-update__image {
  display: block;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(0, 70, 170, 0.12);
  box-shadow: var(--fcg-shadow-soft);
}

.fcg-home-update.is-featured .fcg-home-update__image {
  min-height: 420px;
}

.fcg-home-update__content {
  display: grid;
  gap: 10px;
}

.fcg-home-update__content a {
  text-decoration: none;
}

.fcg-home-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--fcg-blue-900), #73d9ff) 1;
}

.fcg-home-transparency {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.fcg-home-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.fcg-home-legal a {
  font-weight: 700;
  color: var(--fcg-blue-900);
}

.fcg-home-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fcg-home-data > div,
.fcg-home-contact__panel > * {
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, rgba(0, 70, 170, 0.94), rgba(100, 210, 255, 0.7)) 1;
}

.fcg-home-data strong,
.fcg-home-contact__panel strong {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.35;
  color: var(--fcg-blue-950);
}

.fcg-home-data .is-wide {
  grid-column: span 2;
}

.fcg-home-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 4vw, 42px);
  align-items: start;
}

.fcg-home-contact__copy {
  display: grid;
  gap: 14px;
}

.fcg-home-contact__panel {
  display: grid;
  gap: 16px;
}

.fcg-home-contact__panel a {
  text-decoration: none;
}

.fcg-footer {
  padding: 40px 0 22px;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.76), rgba(235, 246, 255, 0.92));
  border-top: 1px solid rgba(0, 70, 170, 0.08);
}

.fcg-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.75fr));
  gap: clamp(24px, 3vw, 34px);
}

.fcg-footer__brand {
  display: grid;
  gap: 14px;
}

.fcg-footer__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--fcg-blue-950);
}

.fcg-footer__grid h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(8, 47, 112, 0.56);
}

.fcg-footer__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fcg-footer__list a:hover,
.fcg-footer__list a:focus-visible {
  color: var(--fcg-blue-900);
}

.fcg-footer__bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 70, 170, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fcgAurora {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.88;
  }
  100% {
    transform: translate3d(1.8%, -1.2%, 0) scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .fcg-home-hero__grid,
  .fcg-home-intro,
  .fcg-home-transparency,
  .fcg-home-contact {
    grid-template-columns: 1fr;
  }

  .fcg-home-pillars,
  .fcg-home-process,
  .fcg-home-founders,
  .fcg-home-updates,
  .fcg-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fcg-home-update.is-featured {
    grid-row: auto;
  }
}

@media (max-width: 1040px) {
  .fcg-front-page .fcg-header,
  .fcg-header {
    position: sticky;
    width: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 70, 170, 0.08);
    box-shadow: 0 10px 26px rgba(8, 47, 112, 0.05);
  }

  .fcg-front-page .fcg-header .fcg-container,
  .fcg-header .fcg-container {
    width: var(--fcg-container);
    padding: 0;
  }

  .fcg-front-page .fcg-header__inner,
  .fcg-header__inner {
    display: flex;
    height: auto;
    gap: 18px;
  }

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

  .fcg-nav-toggle {
    display: block;
    margin-left: auto;
  }

  .fcg-nav,
  .fcg-front-page .fcg-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 70, 170, 0.12);
    box-shadow: var(--fcg-shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .fcg-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .fcg-nav__list,
  .fcg-front-page .fcg-nav__list {
    display: grid;
    gap: 14px;
  }

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

@media (max-width: 760px) {
  .fcg-home-hero {
    min-height: auto;
  }

  .fcg-home-hero__media,
  .fcg-home-pillars,
  .fcg-home-process,
  .fcg-home-founders,
  .fcg-home-updates,
  .fcg-footer__grid {
    grid-template-columns: 1fr;
  }

  .fcg-home-shot--primary {
    min-height: 380px;
  }

  .fcg-home-founder__media {
    min-height: 420px;
  }

  .fcg-home-data {
    grid-template-columns: 1fr;
  }

  .fcg-home-data .is-wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .fcg-home-hero__tags {
    gap: 8px;
  }

  .fcg-home-hero__tags li {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .fcg-home-empty {
    grid-template-columns: 1fr;
  }

  .fcg-home-hero__media {
    gap: 12px;
  }
}

/* --- 2026-03-31 visual polish pass --- */

html {
  cursor: default;
}

a,
button,
[type="button"] {
  cursor: pointer;
}

.fcg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(8, 47, 112, 0.62);
}

.fcg-eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--fcg-blue-900), #7fdbff);
}

.fcg-front-page .fcg-header {
  width: 176px;
  padding: 34px 0 28px;
}

.fcg-front-page .fcg-main,
.fcg-front-page .fcg-footer {
  margin-left: 176px;
}

.fcg-front-page .fcg-header .fcg-container {
  padding: 0 22px;
}

.fcg-front-page .fcg-header__inner {
  gap: 34px;
  grid-template-rows: auto 1fr auto;
}

.fcg-brand {
  display: grid;
  gap: 12px;
  align-content: start;
}

.fcg-brand__mark {
  width: 58px;
  height: 58px;
}

.fcg-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fcg-brand__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
}

.fcg-brand__meta strong {
  font-size: 18px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.fcg-brand__meta small {
  font-size: 12px;
  line-height: 1.55;
  max-width: 15ch;
}

.fcg-front-page .fcg-nav {
  align-content: start;
  gap: 26px;
}

.fcg-front-page .fcg-nav__list {
  gap: 16px;
}

.fcg-front-page .fcg-nav__list a {
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.5;
}

.fcg-front-page .fcg-nav__list a::before {
  width: 7px;
  height: 7px;
  top: 0.58em;
}

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

.fcg-front-page .fcg-button--nav {
  min-height: 50px;
}

.fcg-button {
  position: relative;
  overflow: hidden;
  padding-inline: 28px;
  font-size: 16px;
  border-radius: 14px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease,
    background-color 0.25s ease;
}

.fcg-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--fcg-blue-900), #1d7fe5 45%, #66d9ff);
  transform: translateX(-16%);
  transition: transform 0.35s ease, filter 0.35s ease;
  z-index: -1;
}

.fcg-button:hover::before,
.fcg-button:focus-visible::before {
  transform: translateX(0);
  filter: saturate(1.05);
}

.fcg-button:hover,
.fcg-button:focus-visible {
  transform: none;
  box-shadow: 0 18px 38px rgba(0, 70, 170, 0.2);
}

.fcg-button--ghost::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(232, 246, 255, 0.98));
}

.fcg-button--ghost:hover,
.fcg-button--ghost:focus-visible {
  border-color: rgba(0, 70, 170, 0.2);
}

.fcg-home-hero {
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(72px, 10vw, 124px);
}

.fcg-home-hero__grid {
  gap: clamp(44px, 5vw, 82px);
}

.fcg-home-hero__copy {
  gap: 24px;
}

.fcg-home-hero h1 {
  max-width: 10.8ch;
  font-size: clamp(38px, 4.1vw, 66px);
  font-weight: 700;
  line-height: 0.98;
}

.fcg-home-hero__lead {
  max-width: 34ch;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.6;
}

.fcg-home-hero__body {
  max-width: 50ch;
  font-size: clamp(16px, 1.2vw, 18px);
}

.fcg-home-hero__media {
  gap: 22px;
}

.fcg-home-shot,
.fcg-home-story__image,
.fcg-home-founder__media,
.fcg-home-update__image {
  position: relative;
}

.fcg-home-shot img,
.fcg-home-story__image img,
.fcg-home-founder__media img,
.fcg-home-update__image img {
  position: absolute;
  inset: 0;
}

.fcg-home-shot {
  min-height: auto;
}

.fcg-home-shot--primary {
  min-height: 0;
  aspect-ratio: 4 / 5.1;
}

.fcg-home-shot--secondary {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.fcg-home-hero__stamp {
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 22px;
}

.fcg-home-hero__stamp strong {
  font-size: clamp(18px, 1.6vw, 25px);
}

.fcg-home-hero__stamp span {
  font-size: 14px;
}

.fcg-home-section {
  padding: clamp(82px, 9vw, 132px) 0;
}

.fcg-home-heading {
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.fcg-home-heading h2,
.fcg-home-intro__text h2,
.fcg-home-contact__copy h2,
.fcg-home-transparency__copy h2 {
  max-width: 16ch;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 700;
  line-height: 1.04;
}

.fcg-home-heading p,
.fcg-home-intro__text p,
.fcg-home-contact__copy p,
.fcg-home-transparency__copy p,
.fcg-home-story__copy p,
.fcg-home-founder__copy p,
.fcg-home-pillar p,
.fcg-home-step p,
.fcg-home-update__content p,
.fcg-home-empty p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.75;
}

.fcg-home-intro {
  gap: clamp(40px, 5vw, 70px);
}

.fcg-home-intro__text,
.fcg-home-intro__aside,
.fcg-home-story,
.fcg-home-founder,
.fcg-home-founder__copy,
.fcg-home-update__content,
.fcg-home-contact__copy {
  gap: 18px;
}

.fcg-home-quote {
  padding-top: 26px;
}

.fcg-home-quote p {
  max-width: 24ch;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.42;
}

.fcg-home-story__image {
  min-height: 0;
  aspect-ratio: 1.1 / 1;
}

.fcg-home-pillars {
  gap: 34px;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.fcg-home-process {
  gap: 34px;
}

.fcg-home-pillar,
.fcg-home-step,
.fcg-home-data > div,
.fcg-home-contact__panel > * {
  padding-top: 22px;
}

.fcg-home-pillar h3,
.fcg-home-step h3,
.fcg-home-update__content h3,
.fcg-home-empty h3,
.fcg-home-story__copy h3,
.fcg-home-founder__copy h3 {
  font-size: clamp(22px, 1.6vw, 28px);
  font-weight: 700;
  line-height: 1.16;
}

.fcg-home-founder__media {
  min-height: 0;
  aspect-ratio: 4 / 4.8;
  background: linear-gradient(180deg, rgba(230, 244, 255, 0.9), rgba(244, 250, 255, 0.95));
}

.fcg-home-founder__media img {
  object-fit: cover;
  object-position: center top;
}

.fcg-home-update__image {
  min-height: 0;
  aspect-ratio: 4 / 3.25;
}

.fcg-home-update.is-featured .fcg-home-update__image {
  min-height: 0;
  aspect-ratio: 4 / 4.8;
}

.fcg-home-update__content a,
.fcg-home-legal a,
.fcg-footer__list a {
  position: relative;
}

.fcg-home-update__content a::after,
.fcg-home-legal a::after,
.fcg-footer__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--fcg-blue-900), #79ddff);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.fcg-home-update__content a:hover::after,
.fcg-home-update__content a:focus-visible::after,
.fcg-home-legal a:hover::after,
.fcg-home-legal a:focus-visible::after,
.fcg-footer__list a:hover::after,
.fcg-footer__list a:focus-visible::after {
  transform: scaleX(1);
}

.fcg-home-transparency {
  gap: clamp(40px, 5vw, 70px);
}

.fcg-home-data {
  gap: 22px;
}

.fcg-home-contact {
  gap: clamp(40px, 5vw, 70px);
}

.fcg-footer {
  padding-top: 58px;
}

.fcg-footer__grid {
  gap: clamp(34px, 4vw, 52px);
}

@media (max-width: 1180px) {
  .fcg-home-heading h2,
  .fcg-home-intro__text h2,
  .fcg-home-contact__copy h2,
  .fcg-home-transparency__copy h2 {
    max-width: 18ch;
  }
}

@media (max-width: 1040px) {
  .fcg-brand {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "mark eyebrow"
      "mark meta";
    column-gap: 14px;
    row-gap: 6px;
    align-items: center;
  }

  .fcg-brand__mark {
    grid-area: mark;
    width: 46px;
    height: 46px;
  }

  .fcg-brand__eyebrow {
    grid-area: eyebrow;
    font-size: 10px;
  }

  .fcg-brand__meta {
    grid-area: meta;
  }

  .fcg-brand__meta strong {
    font-size: 17px;
  }

  .fcg-brand__meta small {
    max-width: none;
  }

  .fcg-home-hero {
    padding-top: clamp(52px, 9vw, 82px);
  }
}

@media (max-width: 760px) {
  .fcg-home-hero h1 {
    max-width: none;
    font-size: clamp(34px, 10vw, 48px);
  }

  .fcg-home-heading h2,
  .fcg-home-intro__text h2,
  .fcg-home-contact__copy h2,
  .fcg-home-transparency__copy h2 {
    max-width: none;
    font-size: clamp(28px, 8vw, 40px);
  }

  .fcg-home-shot--primary,
  .fcg-home-update.is-featured .fcg-home-update__image,
  .fcg-home-founder__media {
    aspect-ratio: 4 / 4.2;
  }

  .fcg-home-hero__stamp {
    aspect-ratio: auto;
    min-height: 180px;
  }
}

/* --- 2026-03-31 motion and spacing refinement --- */

.fcg-brand__eyebrow {
  display: none;
}

.fcg-front-page .fcg-header {
  width: 208px;
  padding: 28px 0 30px;
}

.fcg-front-page .fcg-main,
.fcg-front-page .fcg-footer {
  margin-left: 208px;
}

.fcg-front-page .fcg-header .fcg-container {
  padding: 0 26px;
}

.fcg-front-page .fcg-header__inner {
  gap: 42px;
}

.fcg-brand {
  gap: 14px;
}

.fcg-brand__mark {
  width: 72px;
  height: 72px;
}

.fcg-brand__meta strong {
  font-size: clamp(16px, 0.95vw, 18px);
  font-weight: 700;
  line-height: 1.08;
}

.fcg-brand__meta small {
  max-width: 16ch;
  font-size: 12px;
  line-height: 1.65;
}

.fcg-front-page .fcg-nav {
  gap: 32px;
}

.fcg-front-page .fcg-nav__list {
  gap: 18px;
}

.fcg-front-page .fcg-nav__list a {
  padding-left: 18px;
  font-size: 14px;
  font-weight: 600;
}

.fcg-front-page .fcg-button--nav {
  min-height: 52px;
  width: 100%;
}

.fcg-home-hero {
  padding-top: clamp(88px, 10vw, 136px);
  padding-bottom: clamp(92px, 11vw, 148px);
}

.fcg-home-hero__grid {
  gap: clamp(56px, 6vw, 96px);
  align-items: center;
}

.fcg-home-hero__copy {
  gap: 28px;
}

.fcg-home-hero h1 {
  max-width: 11.5ch;
  font-size: clamp(34px, 3.9vw, 58px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.fcg-home-hero__lead {
  max-width: 38ch;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.72;
}

.fcg-home-hero__body {
  max-width: 54ch;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.9;
}

.fcg-button-row {
  gap: 18px;
}

.fcg-button {
  min-height: 56px;
  padding-inline: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fcg-blue-900), #37a9ff);
  background-size: 160% 160%;
}

.fcg-button::before {
  background: linear-gradient(110deg, #0d4ca7 0%, #2485eb 52%, #82e0ff 100%);
  transform: translateX(-8%);
}

.fcg-button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  opacity: 0.75;
  pointer-events: none;
}

.fcg-button:hover,
.fcg-button:focus-visible {
  box-shadow: 0 18px 38px rgba(0, 70, 170, 0.18);
}

.fcg-button--ghost {
  color: var(--fcg-blue-950);
}

.fcg-button--ghost::before {
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.98), rgba(230, 244, 255, 0.98));
}

.fcg-button--ghost::after {
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.03), rgba(0, 74, 173, 0));
}

.fcg-button:hover::before,
.fcg-button:focus-visible::before {
  transform: translateX(0);
}

.fcg-values-strip {
  position: relative;
  overflow: clip;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 74, 173, 0.08);
  border-bottom: 1px solid rgba(0, 74, 173, 0.08);
  background:
    linear-gradient(90deg, rgba(229, 244, 255, 0.9), rgba(255, 255, 255, 0.88), rgba(229, 244, 255, 0.9));
}

.fcg-values-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 74, 173, 0.05), transparent 18%, transparent 82%, rgba(0, 74, 173, 0.05));
  pointer-events: none;
}

.fcg-values-strip__track {
  display: flex;
  width: max-content;
  animation: fcgTicker 30s linear infinite;
  will-change: transform;
}

.fcg-values-strip:hover .fcg-values-strip__track {
  animation-play-state: paused;
}

.fcg-values-strip__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.fcg-values-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding-right: 4px;
}

.fcg-values-strip__item i {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fcg-blue-900), #7edfff);
  box-shadow: 0 0 0 6px rgba(0, 74, 173, 0.07);
}

.fcg-values-strip__item em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(8, 47, 112, 0.78);
}

.fcg-home-section {
  padding: clamp(96px, 10vw, 156px) 0;
}

.fcg-home-heading {
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.fcg-home-heading h2,
.fcg-home-intro__text h2,
.fcg-home-contact__copy h2,
.fcg-home-transparency__copy h2 {
  max-width: 17ch;
  font-size: clamp(28px, 2.7vw, 44px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.038em;
}

.fcg-home-heading p,
.fcg-home-intro__text p,
.fcg-home-contact__copy p,
.fcg-home-transparency__copy p,
.fcg-home-story__copy p,
.fcg-home-founder__copy p,
.fcg-home-pillar p,
.fcg-home-step p,
.fcg-home-update__content p,
.fcg-home-empty p {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.92;
}

.fcg-home-intro,
.fcg-home-transparency,
.fcg-home-contact {
  gap: clamp(54px, 6vw, 92px);
}

.fcg-home-intro__text,
.fcg-home-intro__aside,
.fcg-home-story,
.fcg-home-founder,
.fcg-home-founder__copy,
.fcg-home-update__content,
.fcg-home-contact__copy {
  gap: 22px;
}

.fcg-home-quote {
  padding-top: 30px;
}

.fcg-home-quote p {
  max-width: 25ch;
  font-size: clamp(19px, 1.65vw, 27px);
  line-height: 1.5;
}

.fcg-home-shot,
.fcg-home-story__image,
.fcg-home-founder__media,
.fcg-home-update__image {
  overflow: hidden;
  border: 1px solid rgba(0, 74, 173, 0.08);
  box-shadow: 0 20px 48px rgba(15, 56, 113, 0.09);
}

.fcg-home-shot::after,
.fcg-home-story__image::after,
.fcg-home-founder__media::before,
.fcg-home-update__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 74, 173, 0.02));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.fcg-home-shot:hover,
.fcg-home-story__image:hover,
.fcg-home-founder:hover .fcg-home-founder__media,
.fcg-home-update:hover .fcg-home-update__image {
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(15, 56, 113, 0.14);
}

.fcg-home-shot:hover::after,
.fcg-home-story__image:hover::after,
.fcg-home-founder:hover .fcg-home-founder__media::before,
.fcg-home-update:hover .fcg-home-update__image::after {
  opacity: 1;
}

.fcg-home-shot:hover img,
.fcg-home-story__image:hover img,
.fcg-home-founder:hover .fcg-home-founder__media img,
.fcg-home-update:hover .fcg-home-update__image img {
  transform: scale(1.06);
}

.fcg-home-shot--primary {
  aspect-ratio: 4 / 4.75;
}

.fcg-home-shot--secondary {
  aspect-ratio: 1 / 1.02;
}

.fcg-home-hero__stamp {
  aspect-ratio: 1 / 1.05;
  padding: 28px;
  background: linear-gradient(150deg, #0a4aa5 0%, #2b89ef 58%, #7ddfff 100%);
}

.fcg-home-hero__stamp strong {
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.14;
}

.fcg-home-story__image {
  aspect-ratio: 1.18 / 1;
}

.fcg-home-pillars,
.fcg-home-process {
  gap: 38px;
}

.fcg-home-pillar,
.fcg-home-step,
.fcg-home-data > div,
.fcg-home-contact__panel > * {
  gap: 16px;
  padding-top: 26px;
}

.fcg-home-pillar h3,
.fcg-home-step h3,
.fcg-home-update__content h3,
.fcg-home-empty h3,
.fcg-home-story__copy h3,
.fcg-home-founder__copy h3 {
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 650;
  line-height: 1.18;
}

.fcg-home-founders {
  gap: clamp(32px, 4vw, 52px);
}

.fcg-home-founder__media {
  aspect-ratio: 4 / 4.65;
  background: linear-gradient(180deg, rgba(232, 244, 255, 0.78), rgba(247, 251, 255, 0.94));
}

.fcg-home-founder__label {
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.fcg-home-founder__label strong {
  font-size: clamp(20px, 1.65vw, 28px);
}

.fcg-home-updates {
  gap: 28px;
}

.fcg-home-update {
  gap: 18px;
}

.fcg-home-update__image {
  aspect-ratio: 4 / 3.05;
}

.fcg-home-update.is-featured .fcg-home-update__image {
  aspect-ratio: 4 / 4.25;
}

.fcg-home-update__content,
.fcg-home-legal,
.fcg-footer__list {
  gap: 14px;
}

.fcg-home-data {
  gap: 24px;
}

.fcg-home-contact__panel {
  gap: 24px;
}

.fcg-home-contact__panel > * {
  min-height: 96px;
}

.fcg-footer {
  position: relative;
  overflow: clip;
  padding: 78px 0 26px;
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.9), rgba(231, 244, 255, 0.98));
}

.fcg-footer::before {
  content: "";
  position: absolute;
  inset: -12% -18% auto;
  height: 220px;
  background:
    radial-gradient(circle at 15% 40%, rgba(0, 74, 173, 0.14), transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(86, 202, 255, 0.22), transparent 30%),
    linear-gradient(110deg, rgba(8, 47, 112, 0.02), rgba(126, 223, 255, 0.16), rgba(8, 47, 112, 0.02));
  filter: blur(10px);
  animation: fcgFooterGradient 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.fcg-footer > * {
  position: relative;
  z-index: 1;
}

.fcg-footer__grid {
  gap: clamp(40px, 4.8vw, 60px);
}

.fcg-footer__brand {
  gap: 18px;
}

.fcg-footer__title {
  max-width: 18ch;
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 650;
  line-height: 1.12;
}

.fcg-footer__bottom {
  margin-top: 28px;
  padding-top: 22px;
}

@keyframes fcgTicker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes fcgFooterGradient {
  0% {
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 2%, 0) scale(1.05);
  }
}

@media (max-width: 1280px) {
  .fcg-front-page .fcg-header {
    width: 196px;
  }

  .fcg-front-page .fcg-main,
  .fcg-front-page .fcg-footer {
    margin-left: 196px;
  }
}

@media (max-width: 1040px) {
  .fcg-front-page .fcg-header,
  .fcg-header {
    width: auto;
    padding: 14px 0;
  }

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

  .fcg-brand {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 4px;
    align-items: center;
  }

  .fcg-brand__mark {
    width: 50px;
    height: 50px;
  }

  .fcg-brand__meta small {
    max-width: none;
  }

  .fcg-values-strip {
    padding: 16px 0;
  }
}

@media (max-width: 760px) {
  .fcg-home-hero {
    padding-top: 58px;
    padding-bottom: 84px;
  }

  .fcg-home-hero h1 {
    max-width: none;
    font-size: clamp(30px, 9vw, 42px);
  }

  .fcg-home-heading h2,
  .fcg-home-intro__text h2,
  .fcg-home-contact__copy h2,
  .fcg-home-transparency__copy h2 {
    max-width: none;
    font-size: clamp(26px, 8vw, 34px);
  }

  .fcg-home-section {
    padding: clamp(76px, 16vw, 108px) 0;
  }

  .fcg-home-shot--primary,
  .fcg-home-update.is-featured .fcg-home-update__image,
  .fcg-home-founder__media {
    aspect-ratio: 4 / 4.35;
  }

  .fcg-values-strip__inner {
    gap: 14px;
  }

  .fcg-values-strip__item em {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .fcg-footer {
    padding-top: 58px;
  }
}

/* --- 2026-03-31 hover refinement --- */

.fcg-button {
  isolation: isolate;
}

.fcg-button::before {
  transform: scaleX(0.18);
  transform-origin: left center;
  opacity: 0.42;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.fcg-button:hover::before,
.fcg-button:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

.fcg-button--ghost::before {
  background: linear-gradient(125deg, rgba(215, 238, 255, 0.58), rgba(126, 223, 255, 0.94));
  opacity: 0.18;
}

.fcg-button--ghost:hover::before,
.fcg-button--ghost:focus-visible::before {
  opacity: 0.9;
}

.fcg-home-shot,
.fcg-home-story__image,
.fcg-home-founder__media,
.fcg-home-update__image {
  transition: box-shadow 0.45s ease, border-color 0.35s ease, filter 0.45s ease;
}

.fcg-home-shot::after,
.fcg-home-story__image::after,
.fcg-home-founder__media::before,
.fcg-home-update__image::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 74, 173, 0.03));
  transition: opacity 0.45s ease;
}

.fcg-home-shot:hover,
.fcg-home-story__image:hover,
.fcg-home-founder:hover .fcg-home-founder__media,
.fcg-home-update:hover .fcg-home-update__image {
  transform: none;
  border-color: rgba(0, 74, 173, 0.14);
  box-shadow: 0 26px 60px rgba(15, 56, 113, 0.14);
}

.fcg-home-shot:hover img,
.fcg-home-story__image:hover img,
.fcg-home-founder:hover .fcg-home-founder__media img,
.fcg-home-update:hover .fcg-home-update__image img {
  transform: scale(1.025);
  filter: brightness(1.08) saturate(1.06);
}

.fcg-footer::before {
  inset: -18% -16% auto;
  height: 260px;
  background:
    linear-gradient(110deg, rgba(8, 47, 112, 0.02), rgba(126, 223, 255, 0.2), rgba(8, 47, 112, 0.02)),
    radial-gradient(circle at 16% 40%, rgba(0, 74, 173, 0.15), transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(86, 202, 255, 0.24), transparent 32%);
  background-size: 200% 200%, 140% 140%, 140% 140%;
  animation: fcgFooterFlow 18s linear infinite;
}

.fcg-footer::after {
  content: "";
  position: absolute;
  inset: auto -8% -44px;
  height: 180px;
  background: radial-gradient(circle at 50% 0%, rgba(126, 223, 255, 0.24), transparent 62%);
  filter: blur(18px);
  animation: fcgFooterGlow 14s linear infinite alternate;
  pointer-events: none;
}

@keyframes fcgFooterFlow {
  0% {
    background-position: 0% 50%, 0% 50%, 55% 45%;
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  50% {
    background-position: 100% 50%, 30% 65%, 75% 35%;
    transform: translate3d(1%, 1%, 0) scale(1.03);
  }
  100% {
    background-position: 200% 50%, 60% 45%, 95% 55%;
    transform: translate3d(4%, 0, 0) scale(1.06);
  }
}

@keyframes fcgFooterGlow {
  0% {
    transform: translate3d(-5%, 0, 0);
    opacity: 0.55;
  }
  100% {
    transform: translate3d(5%, 0, 0);
    opacity: 0.95;
  }
}

/* --- 2026-03-31 final motion polish --- */

.fcg-front-page .fcg-header__progress,
.fcg-header__progress {
  display: block !important;
  width: 4px;
  height: clamp(160px, 25vh, 228px);
  margin-left: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 74, 173, 0.08), rgba(126, 223, 255, 0.1));
  box-shadow: inset 0 0 0 1px rgba(0, 74, 173, 0.08);
  overflow: hidden;
}

.fcg-front-page .fcg-header__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: top center;
  transform: scaleY(0);
  background: linear-gradient(180deg, #0a4aa5 0%, #2f8df0 54%, #7ce2ff 100%);
  box-shadow: 0 0 22px rgba(47, 141, 240, 0.32);
}

.fcg-front-page .fcg-nav {
  gap: 26px;
}

.fcg-button {
  background: linear-gradient(135deg, #0f56b8 0%, #2b88ee 58%, #57cfff 100%);
  box-shadow: 0 16px 34px rgba(0, 70, 170, 0.16);
}

.fcg-button::before {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #0a469e 0%, #2a86eb 45%, #86e2ff 100%);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.fcg-button::after {
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  opacity: 1;
}

.fcg-button:hover::before,
.fcg-button:focus-visible::before {
  transform: scaleX(1);
}

.fcg-button--ghost {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 74, 173, 0.12);
  box-shadow: none;
}

.fcg-button--ghost::before {
  background: linear-gradient(90deg, rgba(214, 238, 255, 0.92) 0%, rgba(147, 217, 255, 0.92) 100%);
  transform: scaleX(0);
}

.fcg-button--ghost::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.36));
}

.fcg-button--ghost:hover,
.fcg-button--ghost:focus-visible {
  box-shadow: 0 14px 28px rgba(0, 74, 173, 0.1);
}

.fcg-home-intro {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
  gap: clamp(68px, 7vw, 104px);
}

.fcg-home-intro__text,
.fcg-home-intro__aside {
  align-content: start;
}

.fcg-home-intro__text h2 {
  max-width: 12.6ch;
}

.fcg-home-intro__text p {
  max-width: 37ch;
}

.fcg-home-quote {
  padding-top: 22px;
}

.fcg-home-quote p {
  max-width: 21ch;
}

.fcg-home-story {
  gap: 18px;
}

.fcg-home-story__copy h3 {
  margin-top: 2px;
}

.fcg-footer {
  background:
    linear-gradient(120deg, rgba(244, 250, 255, 0.96) 0%, rgba(231, 244, 255, 0.98) 20%, rgba(217, 238, 255, 0.98) 40%, rgba(232, 247, 255, 0.98) 60%, rgba(205, 235, 255, 0.98) 80%, rgba(244, 250, 255, 0.96) 100%);
  background-size: 260% 260%;
  animation: fcgFooterBaseFlow 14s linear infinite;
}

.fcg-footer::before {
  inset: -22% -22% auto;
  height: 300px;
  background:
    linear-gradient(90deg, rgba(0, 74, 173, 0.06) 0%, rgba(83, 201, 255, 0.22) 24%, rgba(0, 74, 173, 0.06) 48%, rgba(140, 228, 255, 0.24) 72%, rgba(0, 74, 173, 0.06) 100%),
    radial-gradient(circle at 20% 34%, rgba(0, 74, 173, 0.18), transparent 30%),
    radial-gradient(circle at 76% 30%, rgba(86, 202, 255, 0.28), transparent 34%);
  background-size: 220% 220%, 145% 145%, 145% 145%;
  animation: fcgFooterFlow 12s linear infinite;
  opacity: 0.92;
}

.fcg-footer::after {
  inset: auto -10% -52px;
  height: 210px;
  background: radial-gradient(circle at 50% 0%, rgba(126, 223, 255, 0.3), transparent 62%);
  animation: fcgFooterGlow 10s linear infinite alternate;
}

@keyframes fcgFooterBaseFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes fcgFooterFlow {
  0% {
    background-position: 0% 50%, 8% 44%, 68% 36%;
    transform: translate3d(-1%, 0, 0) scale(1);
  }
  50% {
    background-position: 100% 50%, 24% 56%, 82% 48%;
    transform: translate3d(1%, 1%, 0) scale(1.04);
  }
  100% {
    background-position: 200% 50%, 40% 44%, 96% 40%;
    transform: translate3d(3%, 0, 0) scale(1.07);
  }
}

@media (max-width: 1040px) {
  .fcg-front-page .fcg-header__progress,
  .fcg-header__progress {
    display: none !important;
  }

  .fcg-home-intro {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

/* --- 2026-03-31 footer flow refinement --- */

.fcg-footer {
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(241, 249, 255, 0.94) 0%, rgba(221, 241, 255, 0.97) 22%, rgba(206, 234, 255, 0.98) 46%, rgba(229, 246, 255, 0.98) 68%, rgba(197, 231, 255, 0.98) 100%);
  background-size: 320% 320%;
  animation: fcgFooterSea 18s ease-in-out infinite alternate;
}

.fcg-footer::before {
  inset: -10% -18%;
  height: auto;
  background:
    radial-gradient(circle at 12% 30%, rgba(9, 88, 193, 0.22), transparent 26%),
    radial-gradient(circle at 36% 68%, rgba(87, 208, 255, 0.3), transparent 22%),
    radial-gradient(circle at 72% 26%, rgba(5, 70, 173, 0.18), transparent 28%),
    radial-gradient(circle at 86% 74%, rgba(130, 227, 255, 0.28), transparent 24%),
    linear-gradient(100deg, rgba(8, 70, 173, 0.05) 0%, rgba(126, 223, 255, 0.22) 28%, rgba(14, 85, 187, 0.08) 52%, rgba(108, 220, 255, 0.2) 76%, rgba(8, 70, 173, 0.05) 100%);
  background-size: 180% 180%, 170% 170%, 185% 185%, 170% 170%, 260% 260%;
  animation: fcgFooterCurrent 19s linear infinite;
  opacity: 0.96;
  filter: blur(2px);
}

.fcg-footer::after {
  inset: -8% -16%;
  height: auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(161, 231, 255, 0.16) 26%, rgba(255, 255, 255, 0) 52%, rgba(0, 91, 191, 0.12) 74%, rgba(255, 255, 255, 0) 100%);
  background-size: 220% 100%;
  animation: fcgFooterStream 11s linear infinite;
  opacity: 0.85;
  filter: blur(22px);
}

@keyframes fcgFooterSea {
  0% {
    background-position: 0% 40%;
  }
  50% {
    background-position: 55% 60%;
  }
  100% {
    background-position: 100% 42%;
  }
}

@keyframes fcgFooterCurrent {
  0% {
    background-position: 0% 26%, 22% 80%, 80% 22%, 90% 84%, 0% 50%;
    transform: translate3d(-2%, 0, 0) scale(1.02);
  }
  50% {
    background-position: 36% 38%, 50% 64%, 62% 34%, 74% 70%, 100% 50%;
    transform: translate3d(1%, 1.5%, 0) scale(1.06);
  }
  100% {
    background-position: 78% 30%, 72% 74%, 38% 42%, 22% 60%, 200% 50%;
    transform: translate3d(3%, -1%, 0) scale(1.03);
  }
}

@keyframes fcgFooterStream {
  0% {
    background-position: 0% 50%;
    transform: translate3d(-4%, 0, 0);
  }
  100% {
    background-position: 200% 50%;
    transform: translate3d(4%, 0, 0);
  }
}

/* --- 2026-03-31 privacy, mobile and PSI refinement --- */

@supports (content-visibility: auto) {
  .fcg-home-section,
  .fcg-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 920px;
  }

  .fcg-home-hero,
  .fcg-values-strip {
    content-visibility: visible;
  }
}

.fcg-cookie-banner {
  position: fixed;
  right: clamp(14px, 2.2vw, 28px);
  bottom: clamp(14px, 2.2vw, 28px);
  z-index: 1400;
  width: min(560px, calc(100vw - 28px));
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.34s ease;
}

.fcg-cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fcg-cookie-banner__inner {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(0, 74, 173, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 48px rgba(15, 56, 113, 0.18);
  backdrop-filter: blur(18px);
}

.fcg-cookie-banner__copy {
  display: grid;
  gap: 8px;
}

.fcg-cookie-banner__copy strong {
  font-size: 16px;
  line-height: 1.2;
  color: var(--fcg-blue-950);
}

.fcg-cookie-banner__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fcg-ink-soft);
}

.fcg-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.fcg-cookie-banner__actions > a {
  font-size: 14px;
  font-weight: 700;
  color: var(--fcg-blue-900);
}

.fcg-cookie-banner__actions .fcg-button {
  min-height: 46px;
  padding-inline: 18px;
}

.fcg-mobile-toolbar {
  display: none;
}

@media (max-width: 860px) {
  body.fcg-front-page {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .fcg-mobile-toolbar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 1250;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 9px;
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 44px rgba(15, 56, 113, 0.16);
    backdrop-filter: blur(18px);
  }

  .fcg-mobile-toolbar a {
    display: grid;
    justify-items: center;
    gap: 6px;
    min-height: 58px;
    padding: 8px 6px;
    border-radius: 16px;
    color: var(--fcg-blue-950);
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
  }

  .fcg-mobile-toolbar a.is-current {
    background: linear-gradient(135deg, rgba(11, 87, 186, 0.16), rgba(122, 224, 255, 0.22));
    color: var(--fcg-blue-900);
  }

  .fcg-mobile-toolbar a:active {
    transform: translateY(1px);
  }

  .fcg-mobile-toolbar__icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .fcg-mobile-toolbar__icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
  }

  .fcg-mobile-toolbar em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-align: center;
  }

  .fcg-cookie-banner {
    right: 10px;
    left: 10px;
    width: auto;
    bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  }

  .fcg-cookie-banner__inner {
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .fcg-cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fcg-cookie-banner__actions > a {
    grid-column: 1 / -1;
  }

  .fcg-cookie-banner__actions .fcg-button {
    width: 100%;
    min-width: 0;
  }
}

/* --- 2026-04-08 responsive stability pass --- */

.fcg-front-page {
  --fcg-side-rail-width: clamp(156px, 14vw, 196px);
}

@media (min-width: 1041px) {
  .fcg-front-page .fcg-header {
    width: var(--fcg-side-rail-width);
    height: 100dvh;
    max-height: 100dvh;
    padding: clamp(22px, 3vh, 34px) 0 clamp(18px, 2.6vh, 28px);
    overflow: hidden;
  }

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

  .fcg-front-page .fcg-main .fcg-container,
  .fcg-front-page .fcg-footer .fcg-container {
    width: min(
      1180px,
      calc(100vw - var(--fcg-side-rail-width) - 2 * clamp(18px, 4vw, 40px))
    );
  }

  .fcg-front-page .fcg-header .fcg-container {
    padding-inline: clamp(16px, 1.5vw, 22px);
  }

  .fcg-front-page .fcg-header__inner {
    min-height: 100%;
    gap: clamp(18px, 2.6vh, 30px);
    grid-template-rows: auto minmax(0, 1fr);
  }

  .fcg-front-page .fcg-nav {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: stretch;
    gap: clamp(14px, 2vh, 22px);
  }

  .fcg-front-page .fcg-nav__list {
    min-height: 0;
    align-content: start;
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 56, 113, 0.18) transparent;
  }

  .fcg-front-page .fcg-button--nav {
    min-height: clamp(44px, 5vh, 52px);
    padding-inline: clamp(16px, 1.4vw, 22px);
  }

  .fcg-front-page .fcg-home-hero__copy,
  .fcg-front-page .fcg-home-intro__text,
  .fcg-front-page .fcg-home-contact__copy,
  .fcg-front-page .fcg-home-transparency__copy {
    max-width: min(100%, 640px);
  }
}

@media (max-width: 1360px) and (min-width: 1041px) {
  .fcg-front-page .fcg-home-hero__grid,
  .fcg-front-page .fcg-home-intro,
  .fcg-front-page .fcg-home-transparency,
  .fcg-front-page .fcg-home-contact {
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 56px);
  }

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

  .fcg-front-page .fcg-home-update.is-featured {
    grid-row: auto;
  }

  .fcg-front-page .fcg-home-hero__media {
    width: 100%;
    max-width: min(100%, 720px);
    justify-self: start;
  }
}

@media (max-height: 860px) and (min-width: 1041px) {
  .fcg-front-page .fcg-header {
    padding: 20px 0 18px;
  }

  .fcg-front-page .fcg-header__inner {
    gap: 18px;
  }

  .fcg-front-page .fcg-brand__mark {
    width: 52px;
    height: 52px;
  }

  .fcg-front-page .fcg-brand__meta strong {
    font-size: 16px;
  }

  .fcg-front-page .fcg-brand__meta small {
    max-width: 15ch;
    font-size: 11px;
    line-height: 1.5;
  }

  .fcg-front-page .fcg-nav__list {
    gap: 12px;
  }

  .fcg-front-page .fcg-nav__list a {
    padding-left: 15px;
    font-size: 12px;
    line-height: 1.35;
  }
}

html.fcg-nav-open,
html.fcg-nav-open body {
  overflow: hidden;
}

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

  .fcg-header__inner,
  .fcg-front-page .fcg-header__inner {
    align-items: center;
    gap: 14px;
  }

  .fcg-brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .fcg-brand__meta {
    min-width: 0;
  }

  .fcg-brand__meta strong,
  .fcg-brand__meta small {
    overflow-wrap: anywhere;
  }

  .fcg-nav,
  .fcg-front-page .fcg-nav {
    top: calc(100% + 8px);
    left: max(12px, env(safe-area-inset-left, 0px) + 12px);
    right: max(12px, env(safe-area-inset-right, 0px) + 12px);
    max-height: calc(100dvh - 92px);
    overflow: auto;
  }

  .fcg-nav__list,
  .fcg-front-page .fcg-nav__list {
    gap: 12px;
  }

  .fcg-button--nav,
  .fcg-front-page .fcg-button--nav {
    width: 100%;
    min-height: 48px;
  }

  .fcg-home-hero {
    min-height: auto;
    padding-top: clamp(44px, 8vw, 72px);
    padding-bottom: clamp(68px, 9vw, 96px);
  }

  .fcg-home-section {
    padding: clamp(64px, 10vw, 96px) 0;
  }
}

@media (max-width: 760px) {
  .fcg-home-hero__grid {
    gap: 28px;
  }

  .fcg-home-hero__copy {
    gap: 18px;
  }

  .fcg-button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fcg-button-row .fcg-button {
    width: 100%;
    min-width: 0;
  }

  .fcg-home-shot--primary,
  .fcg-home-update.is-featured .fcg-home-update__image,
  .fcg-home-founder__media {
    aspect-ratio: 4 / 4.5;
  }

  .fcg-home-contact__panel {
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .fcg-home-hero {
    padding-top: 40px;
    padding-bottom: 74px;
  }

  .fcg-mobile-toolbar {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
    padding: 8px;
    border-radius: 20px;
  }

  .fcg-mobile-toolbar a {
    min-height: 54px;
    padding: 8px 4px;
  }

  .fcg-mobile-toolbar em {
    font-size: 10px;
  }

  .fcg-cookie-banner {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }

  .fcg-cookie-banner__actions {
    grid-template-columns: 1fr;
  }
}

/* --- 2026-04-08 rail and nav polish --- */

.fcg-front-page {
  --fcg-side-rail-width: clamp(172px, 15vw, 208px);
}

.fcg-front-page .fcg-header .fcg-container {
  padding-inline: 22px 24px;
}

.fcg-front-page .fcg-nav {
  align-items: stretch;
  gap: 22px;
}

.fcg-front-page .fcg-nav__list a::before {
  left: 2px;
  width: 8px;
  height: 8px;
  background: rgba(0, 70, 170, 0.2);
  box-shadow: none;
  transform: none;
}

.fcg-front-page .fcg-nav__list a:hover::before,
.fcg-front-page .fcg-nav__list a:focus-visible::before,
.fcg-front-page .fcg-nav__list a.is-current::before {
  background: linear-gradient(135deg, #0a4aa5 0%, #63d8ff 100%);
  box-shadow: none;
  transform: none;
}

.fcg-front-page .fcg-header__progress,
.fcg-header__progress {
  width: 4px;
  margin-left: 14px;
  border-radius: 999px;
  background: rgba(8, 67, 157, 0.1);
  box-shadow: none;
  overflow: hidden;
}

.fcg-front-page .fcg-header__progress span,
.fcg-header__progress span {
  border-radius: inherit;
  background: linear-gradient(180deg, #0a4aa5 0%, #2d8cf0 56%, #79deff 100%);
  box-shadow: none;
}

.fcg-front-page .fcg-button--nav,
.fcg-button--nav {
  min-height: 54px;
  width: 100%;
  border-radius: 16px;
  padding-inline: 22px;
  border: 0;
  outline: none;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #0d56b7 0%, #2d8bf0 58%, #58ceff 100%);
  background-size: 100% 100%;
  background-position: 50% 50%;
  box-shadow: none;
  transform: none;
}

.fcg-front-page .fcg-button--nav::before,
.fcg-front-page .fcg-button--nav::after,
.fcg-button--nav::before,
.fcg-button--nav::after {
  display: none;
  content: none;
}

.fcg-front-page .fcg-button--nav:hover,
.fcg-front-page .fcg-button--nav:focus-visible,
.fcg-button--nav:hover,
.fcg-button--nav:focus-visible {
  background: linear-gradient(135deg, #0b4ea8 0%, #2682e6 58%, #53c8fa 100%);
  box-shadow: none;
  transform: none;
}

@media (max-width: 1040px) {
  .fcg-front-page .fcg-button--nav,
  .fcg-button--nav {
    min-height: 50px;
    border-radius: 15px;
  }
}

/* --- 2026-04-08 image hover polish --- */

.fcg-home-founder__label {
  z-index: 3;
}

@media (hover: hover) and (pointer: fine) {
  .fcg-home-shot,
  .fcg-home-story__image,
  .fcg-home-founder__media,
  .fcg-home-update__image {
    transform: translate3d(0, 0, 0);
    transition:
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.55s ease,
      border-color 0.35s ease;
  }

  .fcg-home-shot::before,
  .fcg-home-story__image::before,
  .fcg-home-founder__media::before,
  .fcg-home-update__image::before {
    content: "";
    position: absolute;
    inset: -10% -52%;
    background: linear-gradient(
      115deg,
      transparent 18%,
      rgba(255, 255, 255, 0.02) 34%,
      rgba(255, 255, 255, 0.14) 44%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0.14) 56%,
      transparent 72%
    );
    opacity: 0;
    transform: translateX(-130%) skewX(-18deg);
    transition:
      transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.4s ease;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 2;
  }

  .fcg-home-shot::after,
  .fcg-home-story__image::after,
  .fcg-home-update__image::after {
    opacity: 0.42;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 74, 173, 0.08));
    transition:
      opacity 0.35s ease,
      transform 0.55s ease;
  }

  .fcg-home-founder__media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(8, 47, 112, 0.92) 100%);
    transition:
      opacity 0.35s ease,
      transform 0.55s ease;
  }

  .fcg-home-shot:hover,
  .fcg-home-story__image:hover,
  .fcg-home-founder:hover .fcg-home-founder__media,
  .fcg-home-update:hover .fcg-home-update__image {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(44, 129, 236, 0.22);
    box-shadow: 0 34px 82px rgba(15, 56, 113, 0.17);
  }

  .fcg-home-shot:hover::before,
  .fcg-home-story__image:hover::before,
  .fcg-home-founder:hover .fcg-home-founder__media::before,
  .fcg-home-update:hover .fcg-home-update__image::before {
    opacity: 1;
    transform: translateX(120%) skewX(-18deg);
  }

  .fcg-home-shot:hover::after,
  .fcg-home-story__image:hover::after,
  .fcg-home-founder:hover .fcg-home-founder__media::after,
  .fcg-home-update:hover .fcg-home-update__image::after {
    opacity: 0.88;
    transform: scale(1.02);
  }

  .fcg-home-shot:hover img,
  .fcg-home-story__image:hover img,
  .fcg-home-founder:hover .fcg-home-founder__media img,
  .fcg-home-update:hover .fcg-home-update__image img {
    transform: scale(1.09);
    filter: saturate(1.08) contrast(1.03);
  }
}

/* --- 2026-04-15 funding notice --- */

.fcg-home-section--funding {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.86) 100%);
}

.fcg-home-funding {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
}

.fcg-home-funding__copy {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
}

.fcg-home-funding__copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--fcg-blue-950);
}

.fcg-home-funding__copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--fcg-ink-soft);
}

.fcg-home-funding__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin: clamp(6px, 1vw, 12px) 0 0;
}

.fcg-home-funding__facts > div {
  display: grid;
  gap: 8px;
  padding-top: clamp(14px, 1.6vw, 18px);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, rgba(0, 70, 170, 0.94), rgba(100, 210, 255, 0.7)) 1;
}

.fcg-home-funding__facts dt {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(8, 47, 112, 0.54);
}

.fcg-home-funding__facts dd {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--fcg-blue-950);
}

.fcg-home-funding__image {
  overflow: hidden;
  margin: 0;
  padding: clamp(8px, 1.4vw, 14px);
  border: 1px solid rgba(0, 70, 170, 0.12);
  border-radius: 8px;
  background: var(--fcg-white);
  box-shadow: var(--fcg-shadow-soft);
}

.fcg-home-funding__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

@media (max-width: 1180px) {
  .fcg-home-funding {
    grid-template-columns: 1fr;
  }

  .fcg-home-funding__copy h2 {
    max-width: 16ch;
  }
}

@media (max-width: 680px) {
  .fcg-home-funding__facts {
    grid-template-columns: 1fr;
  }

  .fcg-home-funding__image {
    padding: 6px;
  }
}

/* --- 2026-04-16 mobile navigation polish --- */

@media (max-width: 860px) {
  body.fcg-front-page {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

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

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

  .fcg-front-page .fcg-header {
    padding: 10px 0;
  }

  .fcg-front-page .fcg-header__inner {
    justify-content: center;
  }

  .fcg-front-page .fcg-brand {
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .fcg-front-page .fcg-brand__mark {
    width: 44px;
    height: 44px;
  }

  .fcg-front-page .fcg-brand__mark img {
    max-height: 42px;
  }

  .fcg-front-page .fcg-brand__meta strong {
    display: block;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.2;
  }

  .fcg-front-page .fcg-brand__meta small {
    display: none;
  }

  .fcg-front-page .fcg-home-section,
  .fcg-front-page .fcg-home-section--cta {
    scroll-margin-top: 78px;
  }

  .fcg-front-page .fcg-home-hero {
    padding-top: clamp(42px, 11vw, 64px);
    padding-bottom: clamp(74px, 14vw, 96px);
  }

  .fcg-front-page .fcg-button-row {
    gap: 12px;
  }

  .fcg-front-page .fcg-button {
    min-height: 52px;
    border-radius: 10px;
  }

  .fcg-mobile-toolbar {
    left: max(10px, env(safe-area-inset-left, 0px) + 10px);
    right: max(10px, env(safe-area-inset-right, 0px) + 10px);
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    z-index: 1300;
    gap: 6px;
    padding: 7px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 34px rgba(15, 56, 113, 0.18);
  }

  .fcg-mobile-toolbar a {
    min-height: 56px;
    padding: 8px 4px;
    border-radius: 12px;
    outline: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .fcg-mobile-toolbar a.is-current {
    background: #e8f4ff;
    color: var(--fcg-blue-900);
    box-shadow: inset 0 0 0 1px rgba(0, 74, 173, 0.1);
  }

  .fcg-mobile-toolbar a:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(0, 74, 173, 0.28);
  }

  .fcg-mobile-toolbar a:active {
    transform: translateY(1px) scale(0.985);
  }

  .fcg-mobile-toolbar__icon {
    width: 21px;
    height: 21px;
  }

  .fcg-mobile-toolbar em {
    font-size: 10.5px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .fcg-cookie-banner {
    z-index: 1400;
    max-height: calc(100dvh - 112px - env(safe-area-inset-bottom, 0px));
    overflow: auto;
    overscroll-behavior: contain;
  }

  .fcg-cookie-banner__copy p {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .fcg-mobile-toolbar {
    left: 8px;
    right: 8px;
  }

  .fcg-mobile-toolbar em {
    font-size: 10px;
  }
}
