/* FMC 2026 — trust-led education platform */
:root {
  --fmc-paper: #f3efe5;
  --fmc-paper-2: #e9e3d5;
  --fmc-surface: #fbf9f3;
  --fmc-ink: #111613;
  --fmc-muted: #646b65;
  --fmc-forest: #0d211a;
  --fmc-forest-2: #15372c;
  --fmc-emerald: #0b4b3d;
  --fmc-gold: #c6a45c;
  --fmc-gold-soft: #e2c986;
  --fmc-line: rgba(17, 22, 19, .16);
  --fmc-line-light: rgba(243, 239, 229, .17);
  --fmc-shadow: 0 24px 80px rgba(13, 33, 26, .12);
  --fmc-radius: 2px;
}

[data-theme="dark"] {
  --fmc-paper: #090d0b;
  --fmc-paper-2: #111813;
  --fmc-surface: #151d18;
  --fmc-ink: #f3efe5;
  --fmc-muted: #9ca39c;
  --fmc-line: rgba(243, 239, 229, .15);
  --fmc-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

html {
  background: var(--fmc-paper);
  scroll-padding-top: 96px;
}

body {
  color: var(--fmc-ink);
  background: var(--fmc-paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

main { overflow: clip; }

.container { width: min(1240px, calc(100% - 56px)); }

.eyebrow {
  color: var(--fmc-gold);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.button {
  min-height: 50px;
  gap: .6rem;
  padding: .85rem 1.25rem;
  color: #101713;
  border: 1px solid var(--fmc-gold);
  border-radius: var(--fmc-radius);
  background: var(--fmc-gold);
  box-shadow: none;
  letter-spacing: .08em;
}

.button:hover {
  color: #f3efe5;
  border-color: var(--fmc-emerald);
  background: var(--fmc-emerald);
}

.button-outline,
.button-ghost {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.fmc-inline-link {
  position: relative;
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  padding: .35rem 0;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fmc-inline-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--fmc-gold);
  transform-origin: left;
  transition: transform .3s ease;
}

.fmc-inline-link:hover::after { transform: scaleX(.35); }
.fmc-inline-link span { color: var(--fmc-gold); }

/* Header */
.site-header.fmc-header {
  position: sticky;
  z-index: 300;
  top: 0;
  height: 80px;
  color: var(--fmc-ink);
  border-bottom: 1px solid var(--fmc-line);
  background: color-mix(in srgb, var(--fmc-paper) 93%, transparent);
  backdrop-filter: blur(22px) saturate(130%);
}

.fmc-header-shell {
  width: min(1460px, calc(100% - 44px));
  height: 100%;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) auto minmax(220px, .8fr);
  gap: 2rem;
  align-items: center;
  margin-inline: auto;
}

.fmc-brand {
  width: max-content;
  gap: .7rem;
  color: var(--fmc-ink);
}

.fmc-brand picture,
.fmc-brand img { width: 38px; height: 38px; }

.fmc-brand > span,
.fmc-footer-brand .brand > span {
  display: grid;
  gap: .05rem;
  line-height: 1;
}

.fmc-brand strong,
.fmc-footer-brand .brand strong {
  color: var(--fmc-ink);
  font-size: .9rem;
  letter-spacing: .16em;
}

.fmc-brand small,
.fmc-footer-brand .brand small {
  color: var(--fmc-muted);
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .09em;
}

.fmc-primary-nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
}

.fmc-primary-nav a {
  position: relative;
  padding: .4rem 0;
  color: var(--fmc-muted);
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fmc-primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--fmc-gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.fmc-primary-nav a:hover,
.fmc-primary-nav a.active { color: var(--fmc-ink); }
.fmc-primary-nav a:hover::after,
.fmc-primary-nav a.active::after { transform: scaleX(1); }

.fmc-header-actions {
  display: flex;
  gap: .55rem;
  align-items: center;
  justify-content: flex-end;
}

.fmc-header .theme-toggle {
  width: 38px;
  height: 38px;
  color: var(--fmc-ink);
  border: 1px solid var(--fmc-line);
}

.fmc-header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: .55rem .85rem;
  color: #101713;
  border: 1px solid var(--fmc-gold);
  background: var(--fmc-gold);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fmc-menu-trigger {
  width: 78px;
  height: 38px;
  display: grid;
  grid-template-columns: 1fr 14px;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  padding: 0 .7rem;
  color: var(--fmc-ink);
  border: 1px solid var(--fmc-line);
  background: transparent;
}

.fmc-menu-trigger span {
  grid-row: 1 / 3;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}

.fmc-menu-trigger i {
  width: 14px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform .25s ease;
}

.fmc-menu-trigger i:nth-of-type(1) { align-self: end; margin-bottom: 3px; }
.fmc-menu-trigger i:nth-of-type(2) { align-self: start; margin-top: 3px; }
.fmc-menu-trigger.open i:nth-of-type(1) { align-self: center; margin: 0; transform: translateY(3px) rotate(45deg); }
.fmc-menu-trigger.open i:nth-of-type(2) { align-self: center; margin: 0; transform: translateY(-3px) rotate(-45deg); }

.fmc-menu-layer { position: fixed; z-index: 500; inset: 0; }
.fmc-menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(4, 8, 6, .58);
  backdrop-filter: blur(8px);
}

.fmc-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(580px, 100%);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 1.3rem clamp(1.3rem, 4vw, 3rem) 2rem;
  color: #f3efe5;
  background:
    linear-gradient(rgba(198,164,92,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,164,92,.06) 1px, transparent 1px),
    #0d211a;
  background-size: 48px 48px;
  animation: fmcMenuIn .42s cubic-bezier(.16,1,.3,1) both;
}

.fmc-menu-heading {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--fmc-line-light);
}

.fmc-menu-heading p {
  margin: 0;
  color: rgba(243,239,229,.55);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fmc-menu-heading button {
  width: 38px;
  height: 38px;
  color: #f3efe5;
  border: 1px solid var(--fmc-line-light);
  background: transparent;
  font-size: 1.35rem;
}

.fmc-menu-links { display: grid; padding: 2rem 0; }
.fmc-menu-links a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: .7rem;
  align-items: center;
  padding: .68rem 0;
  color: #f3efe5;
  border-bottom: 1px solid rgba(243,239,229,.11);
}

.fmc-menu-links a > span {
  color: var(--fmc-gold);
  font-size: .54rem;
}

.fmc-menu-links a strong {
  font-size: clamp(1.55rem, 4vw, 2.7rem);
  letter-spacing: -.055em;
  line-height: .9;
  text-transform: uppercase;
}

.fmc-menu-links a > i {
  color: var(--fmc-gold);
  font-style: normal;
  transition: transform .25s ease;
}

.fmc-menu-links a:hover,
.fmc-menu-links a.active { color: var(--fmc-gold-soft); }
.fmc-menu-links a:hover > i { transform: translate(3px, -3px); }

.fmc-menu-contact {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--fmc-line-light);
}

.fmc-menu-contact p {
  color: rgba(243,239,229,.45);
  font-size: .58rem;
  text-transform: uppercase;
}

.fmc-menu-contact > div { display: flex; flex-wrap: wrap; gap: 1rem; }
.fmc-menu-contact a { color: #f3efe5; font-size: .66rem; font-weight: 800; text-transform: uppercase; }

.fmc-trust-rail {
  min-height: 35px;
  color: #f3efe5;
  background: var(--fmc-forest);
}

.fmc-trust-rail-inner {
  width: min(1460px, calc(100% - 44px));
  min-height: 35px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-inline: auto;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fmc-trust-rail-inner > span:first-child { display: flex; gap: .45rem; align-items: center; }
.fmc-trust-rail-inner > span:nth-child(2) { color: rgba(243,239,229,.5); text-align: center; }
.fmc-trust-rail-inner a { justify-self: end; color: var(--fmc-gold-soft); }
.fmc-trust-rail-inner i { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: #7fc79c; }

/* Homepage */
.fmc-home-hero {
  min-height: calc(100svh - 115px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  color: var(--fmc-ink);
  background: var(--fmc-paper);
  border-bottom: 1px solid var(--fmc-line);
}

.fmc-home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8.5rem) clamp(28px, 6vw, 100px);
}

.fmc-hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-bottom: clamp(3.5rem, 8vh, 7rem);
  padding-bottom: .8rem;
  color: var(--fmc-muted);
  border-bottom: 1px solid var(--fmc-line);
  font-size: .57rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fmc-hero-kicker span:last-child { margin-left: auto; }
.fmc-home-hero .eyebrow { margin-bottom: 1rem; }
.fmc-home-hero h1 {
  max-width: 970px;
  margin: 0;
  font-size: clamp(4.5rem, 9.4vw, 10.8rem);
  font-weight: 900;
  letter-spacing: -.095em;
  line-height: .7;
  text-transform: uppercase;
}

.fmc-home-hero h1 > span { display: block; white-space: nowrap; }
.fmc-home-hero h1 em {
  color: var(--fmc-gold);
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.06em;
  text-transform: none;
}

.fmc-home-lede {
  max-width: 720px;
  margin: 2.2rem 0 0;
  color: var(--fmc-muted);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}

.fmc-home-actions { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; margin-top: 2rem; }
.fmc-hero-standards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 6vh, 6rem);
  border-top: 1px solid var(--fmc-line);
  border-left: 1px solid var(--fmc-line);
}

.fmc-hero-standards div {
  min-height: 105px;
  display: grid;
  align-content: end;
  padding: .9rem;
  border-right: 1px solid var(--fmc-line);
  border-bottom: 1px solid var(--fmc-line);
}

.fmc-hero-standards span { color: var(--fmc-gold); font-size: .56rem; }
.fmc-hero-standards strong { margin-top: .5rem; font-size: .68rem; text-transform: uppercase; }
.fmc-hero-standards small { color: var(--fmc-muted); font-size: .58rem; }

.fmc-home-hero-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #f3efe5;
  background:
    radial-gradient(circle at 55% 34%, rgba(38,95,75,.75), transparent 38%),
    #0d211a;
}

.fmc-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .38;
  background:
    linear-gradient(rgba(198,164,92,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,164,92,.11) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(135deg, transparent 4%, #000 28%, #000 76%, transparent 98%);
}

.fmc-hero-portrait {
  position: absolute;
  z-index: 2;
  inset: 4% 8% 0;
  border: 1px solid rgba(198,164,92,.65);
  border-bottom: 0;
  box-shadow: inset 0 0 0 9px rgba(198,164,92,.06);
}

.fmc-hero-portrait::before,
.fmc-hero-portrait::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 54px;
  height: 54px;
  border-color: var(--fmc-gold);
  pointer-events: none;
}

.fmc-hero-portrait::before { top: -1px; left: -1px; border-top: 3px solid; border-left: 3px solid; }
.fmc-hero-portrait::after { right: -1px; bottom: -1px; border-right: 3px solid; border-bottom: 3px solid; }
.fmc-hero-portrait picture,
.fmc-hero-portrait img { width: 100%; height: 100%; }
.fmc-hero-portrait img {
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(.84) contrast(1.05);
}

.fmc-hero-portrait::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--fmc-gold);
  border-bottom: 3px solid var(--fmc-gold);
}

.fmc-hero-chart { position: absolute; z-index: 3; right: 4%; bottom: 24%; left: 4%; height: 150px; pointer-events: none; }
.fmc-hero-chart i {
  position: absolute;
  left: var(--line-left);
  top: var(--line-top);
  width: var(--line-width);
  height: 2px;
  background: var(--fmc-gold);
  box-shadow: 0 0 18px rgba(198,164,92,.42);
  transform: rotate(var(--line-angle));
  transform-origin: left center;
}

.fmc-hero-chart i:nth-child(1) { --line-left: 0%; --line-top: 73%; --line-width: 24%; --line-angle: -17deg; }
.fmc-hero-chart i:nth-child(2) { --line-left: 22%; --line-top: 51%; --line-width: 20%; --line-angle: 12deg; }
.fmc-hero-chart i:nth-child(3) { --line-left: 41%; --line-top: 62%; --line-width: 22%; --line-angle: -25deg; }
.fmc-hero-chart i:nth-child(4) { --line-left: 61%; --line-top: 32%; --line-width: 21%; --line-angle: 9deg; }
.fmc-hero-chart i:nth-child(5) { --line-left: 81%; --line-top: 43%; --line-width: 19%; --line-angle: -20deg; }

.fmc-hero-founder {
  position: absolute;
  z-index: 5;
  right: 4%;
  bottom: 4%;
  min-width: 155px;
  padding: 1rem;
  color: #111613;
  background: var(--fmc-gold);
}

.fmc-hero-founder span,
.fmc-hero-founder small { display: block; font-size: .54rem; text-transform: uppercase; }
.fmc-hero-founder strong { display: block; font-size: 1.2rem; text-transform: uppercase; }
.fmc-illustration-label {
  position: absolute;
  z-index: 4;
  bottom: 1.3rem;
  left: 1.3rem;
  margin: 0;
  color: rgba(243,239,229,.45);
  font-size: .52rem;
  text-transform: uppercase;
}

.fmc-confidence-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #111613;
  background: var(--fmc-gold);
}

.fmc-confidence-strip p {
  margin: 0;
  padding: 1.15rem;
  border-right: 1px solid rgba(17,22,19,.22);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.fmc-home-section { padding: clamp(6rem, 10vw, 10rem) clamp(28px, 6vw, 92px); }
.fmc-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
  gap: 2rem 6rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.fmc-section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.fmc-section-heading h2,
.fmc-path-intro h2,
.fmc-journal-showcase h2,
.fmc-founder-copy h2,
.fmc-community-copy h2,
.fmc-faq-intro h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6.6vw, 7.6rem);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .78;
  text-transform: uppercase;
}

.fmc-section-heading > p:last-child,
.fmc-path-intro > p,
.fmc-journal-showcase-copy > p,
.fmc-founder-copy > p,
.fmc-community-copy > p,
.fmc-faq-intro > p {
  margin: 0;
  color: var(--fmc-muted);
  line-height: 1.6;
}

.fmc-trust-section { color: var(--fmc-ink); background: var(--fmc-surface); }
.fmc-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fmc-line);
  border-left: 1px solid var(--fmc-line);
}

.fmc-trust-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-right: 1px solid var(--fmc-line);
  border-bottom: 1px solid var(--fmc-line);
  transition: color .3s ease, background .3s ease;
}

.fmc-trust-card > span { color: var(--fmc-gold); font-size: .58rem; font-weight: 800; text-transform: uppercase; }
.fmc-trust-card h3 { margin: auto 0 .8rem; font-size: clamp(1.8rem, 2.6vw, 3rem); letter-spacing: -.06em; line-height: .9; text-transform: uppercase; }
.fmc-trust-card p { margin: 0; color: var(--fmc-muted); font-size: .84rem; }
.fmc-trust-card > i { position: absolute; top: 1.2rem; right: 1.2rem; color: var(--fmc-gold); font-style: normal; }
.fmc-trust-card:hover { color: #f3efe5; background: var(--fmc-emerald); }
.fmc-trust-card:hover p { color: rgba(243,239,229,.65); }

.fmc-pillars-section { color: #f3efe5; background: var(--fmc-forest); }
.fmc-section-heading-light > p:last-child { color: rgba(243,239,229,.58); }
.fmc-pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--fmc-line-light); }
.fmc-pillar-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border-top: 1px solid var(--fmc-line-light);
  border-right: 1px solid var(--fmc-line-light);
  border-bottom: 1px solid var(--fmc-line-light);
}

.fmc-pillar-card header { display: flex; justify-content: space-between; color: rgba(243,239,229,.42); font-size: .56rem; text-transform: uppercase; }
.fmc-pillar-card header span { color: var(--fmc-gold); }
.fmc-pillar-card .pillar-graphic { margin: 5rem 0 3rem; }
.fmc-pillar-card h3 { margin: auto 0 .7rem; font-size: clamp(2rem, 3vw, 3.5rem); letter-spacing: -.07em; line-height: .85; text-transform: uppercase; }
.fmc-pillar-card > p { margin: 0; color: rgba(243,239,229,.58); font-size: .82rem; }
.fmc-section-link {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding: 1rem 0;
  color: #f3efe5;
  border-top: 1px solid var(--fmc-line-light);
  border-bottom: 1px solid var(--fmc-line-light);
  font-size: clamp(1.2rem, 2.8vw, 2.6rem);
  font-weight: 850;
  text-transform: uppercase;
}

.fmc-section-link span { color: var(--fmc-gold); }

.fmc-path-section {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 9rem);
  color: var(--fmc-ink);
  background: var(--fmc-paper);
}

.fmc-path-intro { position: sticky; top: 130px; align-self: start; }
.fmc-path-intro h2 { font-size: clamp(3.5rem, 5.5vw, 6.5rem); }
.fmc-path-intro > p { max-width: 560px; margin: 1.5rem 0 2rem; }
.fmc-path-list { border-top: 1px solid var(--fmc-line); }
.fmc-path-step {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 1.5rem;
  padding: 2.3rem 0;
  border-bottom: 1px solid var(--fmc-line);
}

.fmc-path-step > span { color: var(--fmc-gold); font-size: .68rem; font-weight: 800; }
.fmc-path-step small { color: var(--fmc-muted); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.fmc-path-step h3 { margin: .4rem 0 .7rem; font-size: clamp(1.8rem, 3vw, 3.3rem); letter-spacing: -.06em; line-height: .9; text-transform: uppercase; }
.fmc-path-step p { max-width: 680px; margin: 0; color: var(--fmc-muted); font-size: .84rem; }
.fmc-path-step > i { color: var(--fmc-gold); font-style: normal; font-size: 1.1rem; transition: transform .25s ease; }
.fmc-path-step:hover > i { transform: translate(4px, -4px); }

.fmc-journal-showcase {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  color: #f3efe5;
  background: #07110d;
}

.fmc-journal-showcase-copy {
  padding: clamp(5rem, 8vw, 9rem) clamp(28px, 6vw, 92px);
  border-right: 1px solid var(--fmc-line-light);
}

.fmc-journal-showcase h2 { font-size: clamp(3.8rem, 6vw, 7rem); }
.fmc-journal-showcase-copy > p { margin: 1.7rem 0; color: rgba(243,239,229,.62); }
.fmc-journal-features { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2rem 0; }
.fmc-journal-features span {
  padding: .5rem .65rem;
  color: rgba(243,239,229,.7);
  border: 1px solid var(--fmc-line-light);
  font-size: .58rem;
  text-transform: uppercase;
}

.fmc-journal-showcase-copy > small { display: block; margin-top: 1.2rem; color: rgba(243,239,229,.38); font-size: .55rem; text-transform: uppercase; }
.fmc-journal-demo {
  align-self: center;
  margin: clamp(2rem, 5vw, 5rem);
  border: 1px solid rgba(198,164,92,.45);
  background: #0d1712;
  box-shadow: 0 30px 100px rgba(0,0,0,.42);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.fmc-journal-demo-bar {
  min-height: 52px;
  display: flex;
  gap: .5rem;
  align-items: center;
  padding: 0 1.1rem;
  border-bottom: 1px solid var(--fmc-line-light);
  font-size: .57rem;
  letter-spacing: .09em;
}

.fmc-journal-demo-bar span { margin-right: auto; color: var(--fmc-gold-soft); }
.fmc-journal-demo-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(243,239,229,.2); }
.fmc-journal-demo-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--fmc-line-light); }
.fmc-journal-demo-metrics div { min-height: 140px; display: flex; flex-direction: column; padding: 1rem; border-right: 1px solid var(--fmc-line-light); }
.fmc-journal-demo-metrics span { color: rgba(243,239,229,.45); font-size: .55rem; text-transform: uppercase; }
.fmc-journal-demo-metrics strong { margin-top: auto; font-size: 2.2rem; }
.fmc-journal-demo-chart { min-height: 330px; padding: 1.4rem; }
.fmc-journal-demo-chart > span { color: rgba(243,239,229,.48); font-size: .58rem; text-transform: uppercase; }
.fmc-journal-demo-chart > div {
  position: relative;
  height: 210px;
  margin: 1rem 0;
  background:
    linear-gradient(rgba(198,164,92,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,164,92,.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

.fmc-journal-demo-chart i {
  position: absolute;
  left: var(--demo-left);
  top: var(--demo-top);
  width: 28%;
  height: 2px;
  background: var(--fmc-gold);
  transform: rotate(var(--demo-angle));
  transform-origin: left;
}

.fmc-journal-demo-chart i:nth-child(1) { --demo-left: 3%; --demo-top: 69%; --demo-angle: -12deg; }
.fmc-journal-demo-chart i:nth-child(2) { --demo-left: 29%; --demo-top: 53%; --demo-angle: 8deg; }
.fmc-journal-demo-chart i:nth-child(3) { --demo-left: 55%; --demo-top: 64%; --demo-angle: -22deg; }
.fmc-journal-demo-chart i:nth-child(4) { --demo-left: 80%; --demo-top: 36%; --demo-angle: -8deg; width: 17%; }
.fmc-journal-demo-chart small { color: rgba(243,239,229,.35); }
.fmc-journal-demo-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--fmc-line-light); }
.fmc-journal-demo-row span { padding: .8rem; border-right: 1px solid var(--fmc-line-light); color: rgba(243,239,229,.48); font-size: .52rem; text-align: center; text-transform: uppercase; }

.fmc-founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--fmc-ink);
  background: var(--fmc-paper-2);
}

.fmc-founder-photo { position: relative; min-height: 860px; margin: 0; overflow: hidden; }
.fmc-founder-photo picture,
.fmc-founder-photo img { width: 100%; height: 100%; }
.fmc-founder-photo img { object-fit: cover; object-position: center top; filter: saturate(.76) contrast(1.04); }
.fmc-founder-photo figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  justify-content: space-between;
  padding-top: .7rem;
  color: #f3efe5;
  border-top: 1px solid rgba(243,239,229,.55);
  font-size: .57rem;
  text-transform: uppercase;
}

.fmc-founder-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(5rem, 9vw, 10rem) clamp(28px, 7vw, 110px); }
.fmc-founder-copy h2 { font-size: clamp(3.5rem, 5.6vw, 6.8rem); }
.fmc-founder-copy blockquote {
  margin: 2rem 0;
  padding: 1.3rem 0 1.3rem 1.3rem;
  color: var(--fmc-emerald);
  border-left: 2px solid var(--fmc-gold);
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

[data-theme="dark"] .fmc-founder-copy blockquote { color: var(--fmc-gold-soft); }
.fmc-founder-copy .fmc-inline-link { width: max-content; margin-top: 1.5rem; }

.fmc-knowledge-section { color: var(--fmc-ink); background: var(--fmc-surface); }
.fmc-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--fmc-line); border-left: 1px solid var(--fmc-line); }
.fmc-article-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.5rem;
  border-right: 1px solid var(--fmc-line);
  border-bottom: 1px solid var(--fmc-line);
}

.fmc-article-card > span { color: var(--fmc-gold); font-size: .62rem; }
.fmc-article-card > p { margin-top: auto; color: var(--fmc-muted); font-size: .58rem; text-transform: uppercase; }
.fmc-article-card h3 { margin: .8rem 0; font-size: clamp(2.3rem, 3.5vw, 4rem); letter-spacing: -.07em; line-height: .84; text-transform: uppercase; }
.fmc-article-card > small { color: var(--fmc-muted); line-height: 1.45; }
.fmc-article-card > b { display: flex; justify-content: space-between; margin-top: 2rem; padding-top: .8rem; border-top: 1px solid var(--fmc-line); font-size: .62rem; text-transform: uppercase; }
.fmc-article-card > b i { color: var(--fmc-gold); font-style: normal; }
.fmc-article-motif { position: absolute; top: 1.5rem; right: 1.5rem; width: 44%; height: 120px; display: flex; gap: 8px; align-items: flex-end; opacity: .2; }
.fmc-article-motif i { width: 22%; background: var(--fmc-ink); }
.fmc-article-motif i:nth-child(1) { height: 24%; }
.fmc-article-motif i:nth-child(2) { height: 58%; }
.fmc-article-motif i:nth-child(3) { height: 42%; }
.fmc-article-motif i:nth-child(4) { height: 82%; }
.fmc-article-card:hover { color: #f3efe5; background: var(--fmc-emerald); }
.fmc-article-card:hover p,
.fmc-article-card:hover small { color: rgba(243,239,229,.62); }
.fmc-article-card:hover .fmc-article-motif i { background: #f3efe5; }

.fmc-community-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  color: #f3efe5;
  background: var(--fmc-forest);
}

.fmc-community-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(5rem, 8vw, 9rem) clamp(28px, 6vw, 92px); }
.fmc-community-copy h2 { font-size: clamp(3.7rem, 6vw, 7rem); }
.fmc-community-copy > p { margin: 1.5rem 0 2rem; color: rgba(243,239,229,.6); }
.fmc-community-copy .button { width: max-content; }
.fmc-community-gallery { min-height: 900px; display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 1fr 1fr; gap: 10px; padding: 10px; }
.fmc-community-photo { position: relative; margin: 0; overflow: hidden; }
.fmc-community-photo:first-child { grid-row: 1 / 3; }
.fmc-community-photo picture,
.fmc-community-photo img { width: 100%; height: 100%; }
.fmc-community-photo img { object-fit: cover; filter: grayscale(.55); transition: filter .5s ease, transform .7s ease; }
.fmc-community-photo:hover img { filter: grayscale(0); transform: scale(1.02); }
.fmc-community-photo figcaption { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; padding-top: .6rem; color: #f3efe5; border-top: 1px solid rgba(243,239,229,.55); font-size: .54rem; text-transform: uppercase; }
.fmc-community-photo:nth-child(4) { display: none; }

.fmc-faq-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(3rem, 8vw, 9rem);
  color: var(--fmc-ink);
  background: var(--fmc-paper);
}

.fmc-faq-intro h2 { font-size: clamp(3.5rem, 5.4vw, 6rem); }
.fmc-faq-intro > p { margin: 1.5rem 0; }
.fmc-faq-section .faq-list { border-color: var(--fmc-line); }
.fmc-faq-section .faq-item { border-color: var(--fmc-line); }
.fmc-faq-section .faq-item summary { font-family: inherit; font-size: clamp(1.1rem, 1.7vw, 1.45rem); font-weight: 800; letter-spacing: -.02em; text-transform: uppercase; }
.fmc-faq-section .faq-item p { color: var(--fmc-muted); }

.fmc-home-closing {
  position: relative;
  min-height: 780px;
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 10rem) clamp(28px, 6vw, 92px);
  color: #f3efe5;
  background:
    radial-gradient(circle at 20% 60%, rgba(198,164,92,.08), transparent 24%),
    #07110d;
}

.fmc-home-closing-mark { opacity: .7; }
.fmc-home-closing-mark picture,
.fmc-home-closing-mark img { width: min(100%, 410px); }
.fmc-home-closing h2 { margin: 0; font-size: clamp(4rem, 8vw, 9rem); font-weight: 900; letter-spacing: -.09em; line-height: .73; text-transform: uppercase; }
.fmc-home-closing h2 em { color: var(--fmc-gold); font-family: "Iowan Old Style", "Baskerville", serif; font-style: italic; font-weight: 400; text-transform: none; }
.fmc-home-closing > div:last-child > p:not(.eyebrow) { max-width: 680px; margin: 2rem 0; color: rgba(243,239,229,.6); }
.fmc-home-closing > div:last-child > div { display: flex; flex-wrap: wrap; gap: .75rem; }
.fmc-home-closing > div:last-child > small { display: block; max-width: 760px; margin-top: 2rem; color: rgba(243,239,229,.34); font-size: .58rem; }

/* Inner page system */
.page-hero.fmc-page-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: end;
  padding: clamp(7rem, 12vw, 11rem) 0 clamp(4rem, 7vw, 7rem);
  color: var(--fmc-ink);
  border-bottom: 1px solid var(--fmc-line);
  background: var(--fmc-paper-2);
}

.fmc-page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .4;
  background:
    linear-gradient(var(--fmc-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--fmc-line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, transparent);
}

.fmc-page-hero .container { position: relative; z-index: 2; width: min(1240px, calc(100% - 56px)); }
.fmc-page-hero .page-hero-meta {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding-bottom: .75rem;
  border-color: var(--fmc-line);
}

.fmc-page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.fmc-page-hero h1 {
  max-width: 1050px;
  font-size: clamp(4.2rem, 8.2vw, 9.2rem);
  line-height: .75;
}

.fmc-page-hero .page-hero-copy { margin: 0; color: var(--fmc-muted); }
.fmc-page-context {
  display: grid;
  gap: .3rem;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--fmc-line);
  border-bottom: 1px solid var(--fmc-line);
}

.fmc-page-context span { color: var(--fmc-gold); font-size: .56rem; font-weight: 800; text-transform: uppercase; }
.fmc-page-context strong { font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; }
.fmc-page-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.4rem; }
.fmc-page-actions a { display: inline-flex; gap: .4rem; color: var(--fmc-ink); font-size: .6rem; font-weight: 800; text-transform: uppercase; }
.fmc-page-actions a span { color: var(--fmc-gold); }
.fmc-page-hero-candles { position: absolute; right: 4vw; top: 16%; width: 300px; height: 140px; display: flex; gap: 16px; align-items: center; opacity: .14; }
.fmc-page-hero-candles i { position: relative; width: 16px; height: var(--hero-candle, 48px); background: var(--fmc-ink); }
.fmc-page-hero-candles i::before { content: ""; position: absolute; top: -22px; bottom: -22px; left: 50%; width: 1px; background: var(--fmc-ink); }
.fmc-page-hero-candles i:nth-child(2) { --hero-candle: 72px; }
.fmc-page-hero-candles i:nth-child(3) { --hero-candle: 34px; }
.fmc-page-hero-candles i:nth-child(4) { --hero-candle: 82px; }
.fmc-page-hero-candles i:nth-child(5) { --hero-candle: 52px; }
.fmc-page-hero-candles i:nth-child(6) { --hero-candle: 66px; }

.section,
.content-section,
.ivory {
  color: var(--fmc-ink);
  background: var(--fmc-paper);
}

.section,
.content-section { padding: clamp(5rem, 9vw, 9rem) 0; }
.founder-section,
.faq-section { color: var(--fmc-ink); background: var(--fmc-paper-2); }
.section-intro { max-width: 920px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-intro h2,
.display-small,
.content-narrow h2,
.article-body h2 {
  color: var(--fmc-ink);
  font-family: inherit;
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .86;
  text-transform: uppercase;
}

.section-intro h2,
.display-small { font-size: clamp(3rem, 6vw, 6.5rem); }
.section-intro p:last-child,
.content-narrow p,
.content-narrow li,
.article-body p,
.article-body li { color: var(--fmc-muted); }

.feature-grid,
.pillar-grid,
.article-grid { gap: 0; border-top: 1px solid var(--fmc-line); border-left: 1px solid var(--fmc-line); }

.feature-card,
.pillar-card,
.article-card {
  min-height: 360px;
  padding: 1.6rem;
  color: var(--fmc-ink);
  border: 0;
  border-right: 1px solid var(--fmc-line);
  border-bottom: 1px solid var(--fmc-line);
  background: transparent;
}

.feature-card h2,
.pillar-card h2,
.article-card h2 { color: var(--fmc-ink); font-size: clamp(1.8rem, 2.8vw, 3rem); letter-spacing: -.055em; }
.feature-card p,
.pillar-card p,
.article-card p { color: var(--fmc-muted); }
.feature-icon { color: #111613; background: var(--fmc-gold); }
.card-number { color: var(--fmc-gold); }

.deep-section,
.photo-band,
.cta-band,
.article-hero { color: #f3efe5; background: var(--fmc-forest); }
.cta-band { border-top: 1px solid var(--fmc-line-light); }
.cta-inner { min-height: 330px; }
.cta-inner h2 { color: #f3efe5; font-size: clamp(3.3rem, 7vw, 7rem); }
.photo-copy { min-height: 540px; padding: clamp(3rem, 6vw, 6rem); }
.photo-copy h2 { font-size: clamp(3rem, 5vw, 5.5rem); }

.resource-list { border-color: var(--fmc-line); }
.resource-row { min-height: 190px; border: 0; border-bottom: 1px solid var(--fmc-line); background: transparent; }
.resource-row h2 { color: var(--fmc-ink); }
.resource-row p { color: var(--fmc-muted); }

.contact-layout { gap: clamp(3rem, 9vw, 9rem); }
.contact-link,
.contact-form {
  color: var(--fmc-ink);
  border: 1px solid var(--fmc-line);
  background: var(--fmc-surface);
}
.contact-link strong { color: var(--fmc-emerald); }
[data-theme="dark"] .contact-link strong { color: var(--fmc-gold-soft); }
.field input,
.field textarea { color: var(--fmc-ink); border-color: var(--fmc-line); background: var(--fmc-paper); }

.content-narrow { width: min(820px, calc(100% - 48px)); }
.content-narrow h2 { margin-top: 4rem; font-size: clamp(1.9rem, 3.2vw, 3.2rem); }
.content-narrow blockquote { color: var(--fmc-ink); border-color: var(--fmc-gold); background: var(--fmc-paper-2); }
.legal-date { color: var(--fmc-gold) !important; }

.article-hero { min-height: 690px; padding: clamp(8rem, 14vw, 13rem) 0 5rem; }
.article-hero h1 { color: #f3efe5; font-size: clamp(4rem, 8vw, 8.8rem); line-height: .78; }
.article-hero .lede { color: rgba(243,239,229,.66); }
.article-body { width: min(820px, calc(100% - 48px)); }
.article-body aside { color: var(--fmc-ink); border-left-color: var(--fmc-gold); background: var(--fmc-paper-2); }

.trade-course-map,
.trade-guide { color: #f3efe5; background: #0a120e; }
.trade-trust-strip { color: var(--fmc-ink); background: var(--fmc-gold); }
.trade-final-cta { background: var(--fmc-gold); }

/* Footer */
.site-footer.fmc-footer {
  padding: 0;
  color: rgba(243,239,229,.64);
  background: #07110d;
}

.fmc-footer-cta {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: end;
  padding: clamp(5rem, 9vw, 9rem) clamp(28px, 6vw, 92px);
  border-bottom: 1px solid var(--fmc-line-light);
}

.fmc-footer-cta h2 {
  max-width: 1000px;
  margin: 0;
  color: #f3efe5;
  font-size: clamp(3.4rem, 6.5vw, 7rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  text-transform: uppercase;
}

.fmc-footer-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: flex-end; }
.fmc-footer-actions .button-outline { color: #f3efe5; border-color: rgba(243,239,229,.4); }
.fmc-footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .6fr);
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(4rem, 7vw, 7rem) clamp(28px, 6vw, 92px);
}

.fmc-footer-brand .brand { color: #f3efe5; }
.fmc-footer-brand .brand picture,
.fmc-footer-brand .brand img { width: 50px; height: 50px; }
.fmc-footer-brand .brand strong { color: #f3efe5; }
.fmc-footer-brand > p { max-width: 430px; color: rgba(243,239,229,.55); }
.fmc-footer-brand > span { color: var(--fmc-gold); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.fmc-footer-column { display: flex; flex-direction: column; gap: .55rem; }
.fmc-footer-column > p { margin: 0 0 .7rem; color: var(--fmc-gold); font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.fmc-footer-column a { color: rgba(243,239,229,.68); font-size: .72rem; }
.fmc-footer-column a:hover { color: #f3efe5; }
.fmc-footer-legal > span { margin-top: 1rem; color: rgba(243,239,229,.36); font-size: .58rem; line-height: 1.5; }
.fmc-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  padding: 1.2rem clamp(28px, 6vw, 92px);
  border-top: 1px solid var(--fmc-line-light);
  color: rgba(243,239,229,.35);
  font-size: .55rem;
  text-transform: uppercase;
}

.fmc-footer-bottom p { margin: 0; }
.fmc-footer-bottom p:nth-child(2) { text-align: center; }
.fmc-footer-bottom p:last-child { text-align: right; }

/* Chat */
.compact-chat { right: 20px; bottom: 20px; }
.chat-launcher {
  min-width: 124px;
  min-height: 48px;
  color: #111613;
  border: 1px solid var(--fmc-gold);
  border-radius: 0;
  background: var(--fmc-gold);
  box-shadow: 0 12px 36px rgba(7,17,13,.22);
}
.chat-panel {
  border: 1px solid rgba(198,164,92,.5);
  border-radius: 0;
  background: var(--fmc-surface);
  box-shadow: var(--fmc-shadow);
}

/* Motion: restrained and useful */
.motion-target {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

.motion-target.is-visible { opacity: 1; transform: translateY(0); }
.kinetic-loader { background: var(--fmc-forest); }
.kinetic-loader-line span,
.kinetic-progress { background: var(--fmc-gold); }

@keyframes fmcMenuIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Tablet */
@media (max-width: 1180px) {
  .fmc-header-shell { grid-template-columns: auto 1fr; }
  .fmc-primary-nav { display: none; }
  .fmc-header-actions { grid-column: 2; }
  .fmc-home-hero { grid-template-columns: 1fr 1fr; }
  .fmc-home-hero-copy { padding-inline: 42px; }
  .fmc-home-hero h1 { font-size: clamp(4.4rem, 8vw, 7.2rem); }
  .fmc-trust-grid,
  .fmc-pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .fmc-trust-card { min-height: 310px; }
  .fmc-section-heading { grid-template-columns: 1fr; }
  .fmc-section-heading .eyebrow { grid-column: auto; }
  .fmc-path-section { grid-template-columns: .8fr 1.2fr; gap: 4rem; }
  .fmc-journal-showcase { grid-template-columns: 1fr; }
  .fmc-journal-showcase-copy { border-right: 0; border-bottom: 1px solid var(--fmc-line-light); }
  .fmc-community-section { grid-template-columns: 1fr; }
  .fmc-community-copy { min-height: 620px; }
  .fmc-footer-main { grid-template-columns: 1.2fr repeat(3, .7fr); gap: 2.5rem; }
}

@media (max-width: 900px) {
  .site-header.fmc-header { height: 72px; }
  .fmc-header-shell { width: min(100% - 28px, 1460px); }
  .fmc-header-cta { display: none; }
  .fmc-trust-rail-inner { width: min(100% - 28px, 1460px); grid-template-columns: 1fr auto; }
  .fmc-trust-rail-inner > span:nth-child(2) { display: none; }
  .fmc-home-hero { grid-template-columns: 1fr; }
  .fmc-home-hero-copy { min-height: 780px; padding: 5rem 28px; }
  .fmc-home-hero-visual { min-height: 780px; }
  .fmc-hero-kicker { margin-bottom: 4rem; }
  .fmc-confidence-strip { grid-template-columns: 1fr 1fr; }
  .fmc-path-section { grid-template-columns: 1fr; }
  .fmc-path-intro { position: relative; top: auto; }
  .fmc-founder-section { grid-template-columns: 1fr; }
  .fmc-founder-photo { min-height: 760px; }
  .fmc-article-grid { grid-template-columns: 1fr; }
  .fmc-article-card { min-height: 420px; }
  .fmc-faq-section { grid-template-columns: 1fr; }
  .fmc-home-closing { grid-template-columns: 1fr; }
  .fmc-home-closing-mark { display: none; }
  .fmc-page-hero-layout { grid-template-columns: 1fr; gap: 3rem; }
  .fmc-page-hero-aside { max-width: 680px; margin-left: auto; }
  .fmc-footer-cta { grid-template-columns: 1fr; }
  .fmc-footer-actions { justify-content: flex-start; }
  .fmc-footer-main { grid-template-columns: 1fr 1fr; }
  .fmc-footer-brand { grid-column: 1 / -1; margin-bottom: 1rem; }
  .fmc-footer-bottom { grid-template-columns: 1fr; }
  .fmc-footer-bottom p:nth-child(2),
  .fmc-footer-bottom p:last-child { text-align: left; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { width: min(100% - 32px, 1240px); }
  .fmc-brand small { display: none; }
  .fmc-brand strong { font-size: .78rem; }
  .fmc-menu-trigger { width: 44px; padding: 0 12px; grid-template-columns: 1fr; }
  .fmc-menu-trigger span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .fmc-trust-rail-inner { font-size: .48rem; }
  .fmc-trust-rail-inner > span:first-child { white-space: nowrap; }
  .fmc-trust-rail-inner a { font-size: 0; }
  .fmc-trust-rail-inner a span { font-size: .7rem; }
  .fmc-home-hero-copy { min-height: auto; padding: 4.5rem 20px; }
  .fmc-hero-kicker { gap: .5rem; margin-bottom: 3rem; }
  .fmc-hero-kicker span:last-child { width: 100%; margin-left: 0; }
  .fmc-home-hero h1 { font-size: clamp(4.2rem, 20vw, 6rem); line-height: .74; }
  .fmc-home-hero h1 > span { white-space: normal; }
  .fmc-home-lede { font-size: .98rem; }
  .fmc-home-actions { align-items: stretch; flex-direction: column; }
  .fmc-home-actions .button { width: 100%; }
  .fmc-home-actions .fmc-inline-link { width: max-content; }
  .fmc-hero-standards { grid-template-columns: 1fr; }
  .fmc-hero-standards div { min-height: 88px; }
  .fmc-home-hero-visual { min-height: 620px; }
  .fmc-hero-portrait { inset: 5% 4% 0; }
  .fmc-hero-founder { right: 2%; bottom: 2%; }
  .fmc-confidence-strip { grid-template-columns: 1fr; }
  .fmc-confidence-strip p { text-align: left; }
  .fmc-home-section { padding: 5.5rem 20px; }
  .fmc-section-heading h2,
  .fmc-path-intro h2,
  .fmc-journal-showcase h2,
  .fmc-founder-copy h2,
  .fmc-community-copy h2,
  .fmc-faq-intro h2 { font-size: clamp(3.4rem, 15vw, 5rem); }
  .fmc-trust-grid,
  .fmc-pillar-grid { grid-template-columns: 1fr; }
  .fmc-trust-card { min-height: 280px; }
  .fmc-pillar-card { min-height: 430px; }
  .fmc-path-step { grid-template-columns: 32px 1fr; gap: 1rem; }
  .fmc-path-step > i { display: none; }
  .fmc-journal-showcase-copy { padding: 5.5rem 20px; }
  .fmc-journal-demo { margin: 20px; transform: none; }
  .fmc-journal-demo-metrics { grid-template-columns: 1fr; }
  .fmc-journal-demo-metrics div { min-height: 90px; }
  .fmc-journal-demo-chart { min-height: 270px; }
  .fmc-journal-demo-row { grid-template-columns: 1fr 1fr; }
  .fmc-founder-photo { min-height: 610px; }
  .fmc-founder-copy,
  .fmc-community-copy { min-height: auto; padding: 5.5rem 20px; }
  .fmc-community-copy .button { width: 100%; }
  .fmc-community-gallery { min-height: 940px; grid-template-columns: 1fr; grid-template-rows: repeat(3, 1fr); }
  .fmc-community-photo:first-child { grid-row: auto; }
  .fmc-faq-section { padding-inline: 20px; }
  .fmc-home-closing { min-height: 720px; padding: 5.5rem 20px; }
  .fmc-home-closing h2 { font-size: clamp(4rem, 18vw, 6rem); }
  .fmc-home-closing > div:last-child > div { align-items: stretch; flex-direction: column; }
  .fmc-home-closing .button { width: 100%; }
  .page-hero.fmc-page-hero { min-height: 620px; padding: 7rem 0 4rem; }
  .fmc-page-hero .container { width: min(100% - 32px, 1240px); }
  .fmc-page-hero h1 { font-size: clamp(3.7rem, 16vw, 5.7rem); }
  .fmc-page-hero .page-hero-meta { margin-bottom: 3rem; }
  .fmc-page-hero-candles { display: none; }
  .feature-grid,
  .pillar-grid,
  .article-grid { grid-template-columns: 1fr; }
  .fmc-footer-cta,
  .fmc-footer-main { padding-inline: 20px; }
  .fmc-footer-main { grid-template-columns: 1fr 1fr; }
  .fmc-footer-legal { grid-column: 1 / -1; }
  .fmc-footer-bottom { padding-inline: 20px; }
  .compact-chat { right: 10px; bottom: 10px; }
}

@media (hover: none), (pointer: coarse) {
  .fmc-trust-card:hover,
  .fmc-article-card:hover { color: inherit; background: transparent; }
  .fmc-trust-card:hover p,
  .fmc-article-card:hover p,
  .fmc-article-card:hover small { color: var(--fmc-muted); }
}

@media (prefers-reduced-motion: reduce) {
  .fmc-menu-panel,
  .motion-target,
  .fmc-community-photo img,
  .fmc-inline-link::after { animation: none !important; transition: none !important; }
  .motion-target { opacity: 1; transform: none; }
}
