:root {
  --fz-color-ink: #101722;
  --fz-color-deep: #07111f;
  --fz-color-navy: #0c1828;
  --fz-color-blue: #2f62ff;
  --fz-color-blue-dark: #1e49d8;
  --fz-color-field: #2f62ff;
  --fz-color-lime: #b8ccff;
  --fz-color-paper: #fff;
  --fz-color-soft: #f3f6f8;
  --fz-color-muted: #637080;
  --fz-color-line: #dce3e9;
  --fz-font-sans:
    Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  --fz-space-1: 0.25rem;
  --fz-space-2: 0.5rem;
  --fz-space-3: 0.75rem;
  --fz-space-4: 1rem;
  --fz-space-6: 1.5rem;
  --fz-space-8: 2rem;
  --fz-space-12: 3rem;
  --fz-radius-sm: 0.375rem;
  --fz-radius-md: 0.75rem;
  --fz-header: 76px;
  --fz-shell: 1200px;
  --fz-focus-ring: 0 0 0 3px rgb(47 98 255 / 35%);

  /* Compatibility aliases used by the current handoff styles. */
  --fz-ink: var(--fz-color-ink);
  --fz-deep: var(--fz-color-deep);
  --fz-navy: var(--fz-color-navy);
  --fz-blue: var(--fz-color-blue);
  --fz-blue-dark: var(--fz-color-blue-dark);
  --fz-green: var(--fz-color-field);
  --fz-lime: var(--fz-color-lime);
  --fz-paper: var(--fz-color-paper);
  --fz-soft: var(--fz-color-soft);
  --fz-muted: var(--fz-color-muted);
  --fz-line: var(--fz-color-line);
}

body {
  font-family: var(--fz-font-sans);
}

:where(h1, h2) {
  text-wrap: balance;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--fz-color-blue);
  outline-offset: 3px;
  box-shadow: var(--fz-focus-ring);
}

:where(img, picture, video, iframe, svg) {
  max-inline-size: 100%;
}

:where(img, video) {
  block-size: auto;
}

:where(picture, video, iframe) {
  display: block;
}

:where(figure, picture, video, iframe) {
  min-inline-size: 0;
}

:where(img, video)[width][height] {
  aspect-ratio: attr(width) / attr(height);
}

:where([data-touch-claim]) {
  color: var(--fz-color-blue);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.35;
  font-weight: 900;
  word-break: keep-all;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.nav-product-menu {
  position: relative;
}

.nav-product-menu summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  color: rgb(255 255 255 / 70%);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

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

.nav-product-menu summary::after {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-product-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-product-menu summary:hover,
.nav-product-menu[open] summary,
.nav-product-menu[data-current="true"] summary {
  color: #fff;
  background: rgb(255 255 255 / 9%);
}

.nav-product-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 328px;
  display: grid;
  padding: 10px;
  color: #101722;
  border: 1px solid #dce3e9;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgb(0 0 0 / 28%);
  transform: translateX(-50%);
}

.main-nav .nav-product-panel a {
  min-height: 54px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-content: center;
  padding: 8px 10px;
  color: #394654;
  border-radius: 5px;
}

.main-nav .nav-product-panel a:hover,
.main-nav .nav-product-panel a[aria-current="page"] {
  color: #101722;
  background: #f2f5f7;
}

.nav-product-panel a small {
  color: #2f62ff;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 900;
}

.nav-product-panel a strong {
  min-width: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 850;
}

.nav-product-label {
  display: block;
  padding: 13px 10px 5px;
  color: #788490;
  border-top: 1px solid #e4e9ed;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 850;
}

.nav-product-panel > a:first-child + .nav-product-label {
  border-top: 0;
}

@media (max-width: 48rem) {
  :where(img, video, iframe) {
    inline-size: 100%;
  }

  :where([data-touch-claim]) {
    font-size: 1.125rem;
  }
}

@media (max-width: 61.25rem) {
  .main-nav .nav-product-menu {
    width: min(100%, 520px);
    justify-self: center;
  }

  .nav-product-menu summary {
    width: 100%;
    min-height: 64px;
    justify-content: space-between;
    padding: 0 4px;
    color: rgb(255 255 255 / 70%);
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    border-radius: 0;
    font-size: 18px;
  }

  .nav-product-menu[data-current="true"] summary,
  .nav-product-menu[open] summary {
    padding-left: 18px;
    color: #fff;
    background: rgb(255 255 255 / 4.5%);
    box-shadow: inset 3px 0 0 #2f62ff;
  }

  .nav-product-panel {
    position: static;
    width: 100%;
    padding: 0 0 12px 18px;
    color: #fff;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .main-nav .nav-product-panel a {
    width: 100%;
    min-height: 48px;
    grid-template-columns: 30px minmax(0, 1fr);
    justify-self: stretch;
    padding: 7px 10px;
    color: rgb(255 255 255 / 72%);
    border-bottom: 0;
    font-size: 14px;
  }

  .main-nav .nav-product-panel a:hover,
  .main-nav .nav-product-panel a[aria-current="page"] {
    padding-left: 10px;
    color: #fff;
    background: rgb(255 255 255 / 6%);
    box-shadow: none;
  }

  .nav-product-panel a strong {
    font-size: 15px;
  }

  .nav-product-label {
    padding: 12px 10px 4px;
    color: rgb(255 255 255 / 46%);
    border-top-color: rgb(255 255 255 / 10%);
  }
}

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

/* 2026-08 whole-site visual system */
:root {
  --fz-color-ink: #111820;
  --fz-color-deep: #081118;
  --fz-color-navy: #101a23;
  --fz-color-blue: #1f5eff;
  --fz-color-blue-dark: #1748c7;
  --fz-color-field: #187a58;
  --fz-color-lime: #c9f37a;
  --fz-color-paper: #fff;
  --fz-color-soft: #f3f5f4;
  --fz-color-muted: #5f6b73;
  --fz-color-line: #d9dfdc;
  --fz-header: 72px;
  --fz-shell: 1240px;
  --v9-ink: var(--fz-color-ink);
  --v9-deep: var(--fz-color-deep);
  --v9-navy: var(--fz-color-navy);
  --v9-blue: var(--fz-color-blue);
  --v9-blue-dark: var(--fz-color-blue-dark);
  --v9-blue-soft: #eef3ff;
  --v9-paper: var(--fz-color-paper);
  --v9-soft: var(--fz-color-soft);
  --v9-muted: var(--fz-color-muted);
  --v9-line: var(--fz-color-line);
}

html {
  background: var(--fz-color-deep);
}

body {
  color: var(--fz-color-ink);
  background: var(--fz-color-paper);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

.shell {
  width: min(calc(100% - 64px), var(--fz-shell));
  margin-inline: auto;
}

.site-header {
  height: var(--fz-header);
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  background: rgb(8 17 24 / 94%);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: var(--fz-header);
  grid-template-columns: 160px minmax(360px, 1fr) minmax(280px, auto);
  gap: 20px;
}

.brand-logo {
  width: 160px;
}

.brand-logo img {
  width: 122px;
  height: auto;
}

.brand-logo img[src*="footballzon-horizontal"] {
  filter: brightness(0) invert(1);
}

.main-nav > a,
.nav-product-menu summary {
  min-height: 44px;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  font-weight: 760;
}

.main-nav > a:hover,
.main-nav > a[aria-current="page"] {
  color: #fff;
}

.main-nav > a[aria-current="page"]::after {
  background: var(--fz-color-lime);
}

.nav-cta,
.btn {
  min-height: 48px;
  border-radius: 6px;
  font-weight: 820;
  letter-spacing: 0;
}

.nav-cta {
  min-height: 40px;
  padding-inline: 18px;
  background: var(--fz-color-blue);
}

.btn-primary {
  background: var(--fz-color-blue);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--fz-color-blue-dark);
}

.v9-kicker,
.overline {
  color: var(--fz-color-blue);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.v9-section,
.overhaul-section {
  padding-block: 108px;
}

.v9-section-head,
.overhaul-heading {
  margin-bottom: 52px;
}

.v9-title,
.overhaul-heading h2,
.proof-copy h2,
.practical-grid h2,
.faq-grid h2,
.final-cta h2 {
  font-size: 52px;
  line-height: 1.07;
  letter-spacing: 0;
  word-break: keep-all;
}

.v9-lead,
.overhaul-heading > p:last-child,
.proof-copy > p,
.practical-grid p {
  color: var(--fz-color-muted);
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.v9-hero,
.overhaul-hero,
.detail-hero {
  min-height: 690px;
  background: var(--fz-color-deep);
}

.v9-hero::after,
.overhaul-hero::after,
.detail-hero::after {
  background:
    linear-gradient(90deg, rgb(5 13 20 / 94%) 0%, rgb(5 13 20 / 61%) 49%, rgb(5 13 20 / 16%) 100%),
    linear-gradient(0deg, rgb(5 13 20 / 58%) 0%, transparent 44%);
}

.v9-hero-media img,
.overhaul-hero-media img,
.detail-hero-media img {
  filter: saturate(0.86) contrast(1.05);
}

.v9-hero-inner,
.overhaul-hero-grid,
.detail-hero-copy {
  min-height: 690px;
}

.v9-hero h1,
.overhaul-hero-copy h1,
.detail-hero-copy h1 {
  max-width: 790px;
  margin-block: 18px 24px;
  font-size: 66px;
  line-height: 1.02;
  letter-spacing: 0;
  word-break: keep-all;
}

.v9-hero-lead,
.overhaul-hero-copy > p:not(.overline),
.detail-hero-copy > p:not(.overline) {
  max-width: 610px;
  color: rgb(255 255 255 / 78%);
  font-size: 18px;
  line-height: 1.7;
  word-break: keep-all;
}

.v9-hero-rail,
.hero-fact-rail {
  border-top: 1px solid rgb(255 255 255 / 22%);
  border-bottom: 1px solid rgb(255 255 255 / 22%);
}

.v9-hero-rail li,
.hero-fact-rail > div {
  min-height: 68px;
}

.v9-flow,
.method-steps,
.module-grid,
.v9-diagnosis,
.v9-step-list {
  border-color: var(--fz-color-line);
}

.v9-flow li,
.method-steps li,
.module-grid article,
.v9-diagnosis article,
.v9-step-list li {
  border-color: var(--fz-color-line);
}

.v9-flow-media,
.compare-media,
.proof-media,
.v9-product-visual,
.v9-opportunity-media {
  overflow: hidden;
  border-radius: 6px;
  background: var(--fz-color-deep);
}

.v9-flow-media img,
.compare-media img,
.proof-media img,
.v9-product-visual img,
.v9-opportunity-media img {
  transition: transform 420ms ease;
}

@media (hover: hover) {
  .v9-flow li:hover img,
  .compare-card:hover .compare-media img,
  .v9-product-lineup article:hover .v9-product-visual img {
    transform: scale(1.025);
  }
}

.v9-split {
  min-height: 650px;
  background: var(--fz-color-soft);
}

.v9-split-copy h2,
.v9-validation h2,
.v9-opportunity-title,
.v9-ops-standalone h2 {
  font-size: 52px;
  line-height: 1.07;
  letter-spacing: 0;
}

.v9-rule-list li,
.proof-copy dl > div,
.practical-grid dl > div,
.v9-boundaries li {
  border-color: var(--fz-color-line);
}

.v9-product-lineup,
.v9-model-compare,
.compare-grid {
  border-color: var(--fz-color-line);
}

.v9-product-lineup article,
.v9-model-compare article,
.compare-card {
  border-color: var(--fz-color-line);
  background: #fff;
}

.v9-product-lineup article.is-highlight,
.v9-model-compare article.is-highlight {
  background: #eef3ff;
}

.academy-hub .program-compare {
  background: #fff;
}

.academy-hub .compare-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--fz-color-line);
  border-radius: 8px;
  background: var(--fz-color-line);
}

.academy-hub .compare-card {
  min-width: 0;
  border: 0;
}

.academy-hub .compare-media {
  border-radius: 0;
}

.academy-hub .compare-copy {
  padding: 34px;
}

.academy-hub .compare-copy h3 {
  margin-block: 16px 8px;
  font-size: 31px;
  line-height: 1.15;
}

.academy-hub .compare-copy strong {
  font-size: 16px;
  line-height: 1.55;
}

.academy-coaches {
  background: var(--fz-color-soft);
}

.coach-layout {
  align-items: stretch;
}

.coach-lead,
.coach-list {
  border: 1px solid var(--fz-color-line);
  border-radius: 8px;
  background: #fff;
}

.coach-lead figure {
  min-height: 360px;
  background: linear-gradient(180deg, #dfe5e2, #f7f8f7);
}

.coach-lead figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.coach-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.coach-list li {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--fz-color-line);
}

.coach-list li:last-child {
  border-bottom: 0;
}

.coach-list li::before {
  width: 8px;
  height: 8px;
  margin-right: 16px;
  border-radius: 50%;
  background: var(--fz-color-field);
  content: "";
}

.coach-list strong {
  font-size: 19px;
}

.academy-detail .module-section,
.academy-detail .practical-section {
  background: var(--fz-color-soft);
}

.academy-detail .facility-proof {
  background: #fff;
}

.academy-detail .module-grid {
  overflow: hidden;
  border: 1px solid var(--fz-color-line);
  border-radius: 8px;
  background: #fff;
}

.academy-detail .module-grid article {
  min-height: 250px;
  padding: 36px;
}

.academy-detail .proof-media {
  min-height: 500px;
}

.academy-detail .proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list details {
  border-color: var(--fz-color-line);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.final-cta,
.v9-final {
  background: #0b151e;
}

.site-footer {
  background: #071018;
}

.analysis-page .analysis-hero {
  min-height: 660px;
  background: #09131c;
}

.analysis-page .analysis-hero .hero-inner {
  min-height: 660px;
}

.analysis-page .analysis-hero h1 {
  max-width: 780px;
  font-size: 64px;
  line-height: 1.03;
  letter-spacing: 0;
  word-break: keep-all;
}

.analysis-page .section {
  padding-block: 104px;
}

.analysis-page .section-heading,
.analysis-page .analysis-team h2 {
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}

.analysis-page .moment-list,
.analysis-page .privacy-principles {
  overflow: hidden;
  gap: 1px;
  border: 1px solid var(--fz-color-line);
  border-radius: 8px;
  background: var(--fz-color-line);
}

.analysis-page .privacy-principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.analysis-page .moment-list article,
.analysis-page .privacy-principles li {
  border: 0;
  background: #fff;
}

.analysis-page .analysis-story-visual,
.analysis-page .pilot-program,
.analysis-page .team-facts {
  overflow: hidden;
  border-radius: 8px;
}

.analysis-page .section-soft {
  background: var(--fz-color-soft);
}

.analysis-page .analysis-team {
  background: #0d171f;
}

.partner-saas-link {
  padding-block: 36px;
  border-block: 1px solid var(--fz-color-line);
  background: #fff;
}

.partner-saas-link .shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.2fr) auto;
  align-items: center;
  gap: 40px;
}

.partner-saas-link h2 {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.partner-saas-link p:not(.v9-kicker) {
  margin: 0;
  color: var(--fz-color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.v9-partner .v9-business-models {
  background: var(--fz-color-soft);
}

.v9-partner .v9-model-compare {
  overflow: hidden;
  gap: 1px;
  border: 1px solid var(--fz-color-line);
  border-radius: 8px;
  background: var(--fz-color-line);
}

.v9-partner .v9-model-compare article {
  border: 0;
}

.v9-partner .v9-model-compare article.is-highlight {
  color: #fff;
  background: #10221a;
}

.v9-partner .v9-model-compare article.is-highlight p,
.v9-partner .v9-model-compare article.is-highlight dt,
.v9-partner .v9-model-compare article.is-highlight dd {
  color: rgb(255 255 255 / 72%);
  border-color: rgb(255 255 255 / 14%);
}

.v9-partner .v9-opportunity {
  background: #fff;
}

.v9-partner .v9-opportunity-stage {
  overflow: hidden;
  border: 1px solid var(--fz-color-line);
  border-radius: 8px;
}

.v9-partner .v9-opportunity-modes {
  background: var(--fz-color-soft);
}

.v9-partner .v9-diagnosis {
  overflow: hidden;
  border: 1px solid var(--fz-color-line);
  border-radius: 8px;
}

.v9-partner #process {
  background: #0d171f;
}

.v9-partner .v9-validation figure {
  overflow: hidden;
  border-radius: 6px;
}

@media (max-width: 61.25rem) {
  .partner-saas-link .shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .analysis-page .analysis-hero h1 {
    font-size: 50px;
  }

  .analysis-page .section-heading,
  .analysis-page .analysis-team h2 {
    font-size: 42px;
  }

  .analysis-page .privacy-principles {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 61.3125rem) and (max-width: 67.5rem) {
  .nav-shell {
    grid-template-columns: 150px minmax(0, 1fr) 150px;
    gap: 12px;
  }

  .brand-logo {
    width: 150px;
  }

  .header-socials {
    display: none;
  }
}

@media (max-width: 47.5rem) {
  .platform-page {
    padding-bottom: 0;
  }

  .partner-saas-link {
    padding-block: 30px;
  }

  .partner-saas-link h2 {
    font-size: 22px;
  }

  .analysis-page .analysis-hero,
  .analysis-page .analysis-hero .hero-inner {
    min-height: 600px;
  }

  .analysis-page .analysis-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .analysis-page .section {
    padding-block: 68px;
  }

  .analysis-page .section-heading,
  .analysis-page .analysis-team h2 {
    font-size: 34px;
  }
}

@media (max-width: 61.25rem) {
  .shell {
    width: min(calc(100% - 40px), var(--fz-shell));
  }

  .site-header {
    height: 64px;
  }

  .nav-shell {
    min-height: 64px;
  }

  .main-nav {
    top: 64px;
    min-height: calc(100dvh - 64px);
    background: #081118;
  }

  .v9-section,
  .overhaul-section {
    padding-block: 84px;
  }

  .v9-title,
  .overhaul-heading h2,
  .proof-copy h2,
  .practical-grid h2,
  .faq-grid h2,
  .final-cta h2,
  .v9-split-copy h2,
  .v9-validation h2,
  .v9-opportunity-title,
  .v9-ops-standalone h2 {
    font-size: 42px;
  }

  .v9-hero,
  .overhaul-hero,
  .detail-hero,
  .v9-hero-inner,
  .overhaul-hero-grid,
  .detail-hero-copy {
    min-height: 650px;
  }

  .v9-hero h1,
  .overhaul-hero-copy h1,
  .detail-hero-copy h1 {
    font-size: 52px;
  }
}

@media (max-width: 47.5rem) {
  .shell {
    width: min(calc(100% - 32px), var(--fz-shell));
  }

  .v9-section,
  .overhaul-section {
    padding-block: 68px;
  }

  .v9-section-head,
  .overhaul-heading {
    margin-bottom: 34px;
  }

  .v9-title,
  .overhaul-heading h2,
  .proof-copy h2,
  .practical-grid h2,
  .faq-grid h2,
  .final-cta h2,
  .v9-split-copy h2,
  .v9-validation h2,
  .v9-opportunity-title,
  .v9-ops-standalone h2 {
    font-size: 34px;
    line-height: 1.13;
  }

  .v9-hero,
  .overhaul-hero,
  .detail-hero,
  .v9-hero-inner,
  .overhaul-hero-grid,
  .detail-hero-copy {
    min-height: 610px;
  }

  .v9-hero h1,
  .overhaul-hero-copy h1,
  .detail-hero-copy h1 {
    max-width: 11em;
    font-size: 42px;
    line-height: 1.05;
  }

  .v9-hero-lead,
  .overhaul-hero-copy > p:not(.overline),
  .detail-hero-copy > p:not(.overline),
  .v9-lead,
  .overhaul-heading > p:last-child,
  .proof-copy > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .v9-actions,
  .overhaul-actions {
    width: 100%;
  }

  .v9-hero .v9-actions,
  .overhaul-hero .overhaul-actions,
  .detail-hero .overhaul-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .v9-hero .v9-actions .btn,
  .overhaul-hero .overhaul-actions .btn,
  .detail-hero .overhaul-actions .btn {
    width: 100%;
    min-width: 0;
    flex: none;
    padding-inline: 14px;
  }

  .menu-toggle {
    position: absolute;
    top: 8px;
    right: 16px;
    z-index: 120;
    display: grid !important;
  }

  .academy-hub .compare-copy {
    padding: 26px;
  }

  .academy-hub .compare-copy h3 {
    font-size: 27px;
  }

  .coach-lead figure {
    min-height: 300px;
  }

  .academy-detail .module-grid article {
    min-height: auto;
    padding: 28px;
  }

  .academy-detail .proof-media {
    min-height: 320px;
  }
}

.home-space-gap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  background: var(--fz-color-soft);
}

.home-entry {
  padding-block: 54px;
  color: #fff;
  background: #0b151e;
}

.home-entry-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  gap: 64px;
  align-items: end;
}

.home-entry-head h2 {
  margin-top: 12px;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0;
  word-break: keep-all;
}

.home-entry-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 22%);
}

.home-entry-nav a {
  position: relative;
  min-width: 0;
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 22px 42px 18px 18px;
  color: #fff;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.home-entry-nav a:last-child {
  border-right: 0;
}

.home-entry-nav a:hover,
.home-entry-nav a:focus-visible {
  background: rgb(255 255 255 / 6%);
}

.home-entry-nav small {
  color: #aab9c4;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 760;
}

.home-entry-nav strong {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 880;
  word-break: keep-all;
}

.home-entry-nav span {
  position: absolute;
  right: 18px;
  bottom: 20px;
  color: #b9ff31;
  font-size: 20px;
  line-height: 1;
}

.home-space-gap-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.home-space-gap-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 66%, rgb(8 17 24 / 24%));
  content: "";
  pointer-events: none;
}

.home-space-gap-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-space-gap-media figcaption,
.home-proof figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  padding: 7px 9px;
  color: #fff;
  background: rgb(8 17 24 / 78%);
  font-size: 11px;
  line-height: 1.4;
}

.home-space-gap-copy {
  align-self: center;
  max-width: 610px;
  padding: 72px 64px;
}

.home-space-gap-copy h2,
.home-proof-copy h2 {
  margin-block: 16px 24px;
  font-size: 52px;
  line-height: 1.07;
  letter-spacing: 0;
  word-break: keep-all;
}

.home-space-gap-copy > p,
.home-proof-copy > p {
  color: var(--fz-color-muted);
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.home-space-gap-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.home-space-gap-copy li {
  padding: 8px 11px;
  color: #314039;
  border: 1px solid #cdd8d2;
  border-radius: 5px;
  background: rgb(255 255 255 / 76%);
  font-size: 13px;
  font-weight: 800;
}

.home-space-gap-copy > small {
  display: block;
  margin-top: 22px;
  color: #5e6963;
  font-size: 11px;
  line-height: 1.6;
}

.footer-connect {
  display: grid;
  justify-items: end;
  gap: 22px;
}

.footer-nav {
  display: grid;
  justify-items: end;
  gap: 9px;
}

.footer-nav a {
  color: rgb(255 255 255 / 76%);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 760;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

@media (max-width: 67.5rem) {
  .footer-connect {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .footer-nav {
    justify-items: start;
  }
}

.home-system {
  background: #fff;
}

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

.home-system-product {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--fz-color-line);
  border-radius: 8px;
  background: #fff;
}

.home-system-media,
.home-ops-demo {
  min-height: 340px;
  margin: 0;
}

.home-system-media {
  position: relative;
  overflow: hidden;
  background: var(--fz-color-deep);
}

.home-system-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.home-system-media figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  color: #fff;
  border-radius: 4px;
  background: rgb(8 17 24 / 78%);
  font-size: 11px;
}

.home-system-copy {
  padding: 38px;
}

.home-system-copy h3 {
  margin-block: 14px 14px;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0;
}

.home-system-copy > p:not(.v9-kicker) {
  min-height: 3.4em;
  color: var(--fz-color-muted);
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.home-system-copy > ul {
  display: grid;
  gap: 0;
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid var(--fz-color-line);
  list-style: none;
}

.home-system-copy > ul li {
  padding-block: 12px;
  border-bottom: 1px solid var(--fz-color-line);
  font-size: 13px;
  font-weight: 760;
}

.home-system-copy .v9-actions {
  align-items: center;
  gap: 24px;
}

button.v9-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--fz-color-blue);
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.home-ops-demo {
  padding: 30px;
  color: #14211b;
  background: #e9eeeb;
}

.home-ops-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: #fff;
  border-radius: 6px 6px 0 0;
  background: #11221a;
  font-size: 13px;
}

.home-ops-bar span {
  color: rgb(255 255 255 / 58%);
  font-size: 10px;
}

.home-ops-body {
  min-height: 250px;
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  border: 1px solid #d4ddd7;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  background: #fff;
}

.home-ops-body nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 14px;
  color: #59645e;
  border-right: 1px solid #e2e7e4;
  background: #f6f8f7;
  font-size: 10px;
}

.home-ops-body nav b {
  padding: 8px;
  color: #145f43;
  border-radius: 4px;
  background: #e1f1e9;
}

.home-ops-body > div {
  min-width: 0;
  padding: 20px;
}

.home-ops-body p {
  margin: 0;
  color: #56625b;
  font-size: 9px;
}

.home-ops-body h4 {
  margin: 4px 0 15px;
  font-size: 18px;
}

.home-ops-body dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 14px;
}

.home-ops-body dl div {
  padding: 11px;
  border: 1px solid #e2e7e4;
  border-radius: 4px;
}

.home-ops-body dl div.is-revenue {
  border-color: #b9d9c9;
  background: #f1f9f5;
}

.home-ops-body dl div.is-alert {
  border-color: #e9d8c8;
  background: #fff9f3;
}

.home-ops-body dt {
  color: #5b655f;
  font-size: 8px;
}

.home-ops-body dd {
  margin: 5px 0 0;
  font-size: 19px;
  font-weight: 900;
}

.home-ops-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-ops-body li {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 8px;
  padding-block: 9px;
  border-top: 1px solid #edf0ee;
  font-size: 9px;
}

.home-ops-body li em {
  color: #1d61d8;
  font-style: normal;
  font-weight: 800;
}

.home-proof {
  background: var(--fz-color-soft);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.home-proof figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--fz-color-deep);
}

.home-proof figure img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.home-proof-copy dl {
  margin: 34px 0 0;
  border-top: 1px solid var(--fz-color-line);
}

.home-proof-copy dl div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  padding-block: 18px;
  border-bottom: 1px solid var(--fz-color-line);
}

.home-proof-copy dt {
  font-weight: 850;
}

.home-proof-copy dd {
  margin: 0;
  color: var(--fz-color-muted);
  line-height: 1.6;
}

.academy-method .overhaul-heading .overline,
.academy-method .method-steps > li > span,
.detail-flow .overhaul-heading .overline,
.detail-flow .method-steps > li > span {
  color: #9bb4ff;
}

.academy-coaches .overhaul-heading .overline,
.facility-proof .proof-copy .overline,
.facility-proof .proof-copy dt {
  color: #174bc7;
}

.v9-partner .v9-model-compare article.is-highlight small {
  color: #b5c5ff;
}

@media (max-width: 61.25rem) {
  .home-entry-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-space-gap {
    grid-template-columns: 1fr;
  }

  .home-space-gap-media {
    min-height: 520px;
  }

  .home-space-gap-copy {
    max-width: none;
    padding: 68px max(32px, calc((100vw - min(calc(100vw - 40px), var(--fz-shell))) / 2));
  }

  .home-space-gap-copy h2,
  .home-proof-copy h2 {
    font-size: 42px;
  }

  .home-system-grid,
  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-grid {
    gap: 48px;
  }
}

@media (max-width: 47.5rem) {
  .home-entry {
    padding-block: 44px;
  }

  .home-entry-head h2 {
    font-size: 28px;
  }

  .home-entry-nav {
    grid-template-columns: 1fr;
  }

  .home-entry-nav a {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
  }

  .home-entry-nav a:last-child {
    border-bottom: 0;
  }

  .footer-connect,
  .footer-nav {
    justify-items: start;
  }

  .home-space-gap-media {
    min-height: 360px;
  }

  .home-space-gap-copy {
    padding: 56px 16px 64px;
  }

  .home-space-gap-copy h2,
  .home-proof-copy h2 {
    font-size: 34px;
    line-height: 1.13;
  }

  .home-system-grid {
    gap: 12px;
  }

  .home-system-media,
  .home-system-media img {
    min-height: 260px;
    height: 260px;
  }

  .home-system-copy {
    padding: 28px;
  }

  .home-system-copy h3 {
    font-size: 27px;
  }

  .home-system-copy > p:not(.v9-kicker) {
    min-height: 0;
  }

  .home-ops-demo {
    min-height: 330px;
    height: auto;
    padding: 16px;
  }

  .home-ops-body {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .home-ops-body nav {
    padding: 14px 8px;
  }

  .home-ops-body > div {
    padding: 15px;
  }

  .home-ops-body dl {
    gap: 4px;
  }

  .home-ops-body dl div {
    padding: 8px;
  }

  .home-ops-body dd {
    font-size: 15px;
  }

  .home-ops-body li em {
    display: none;
  }

  .home-ops-body li {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .home-proof figure,
  .home-proof figure img {
    min-height: 340px;
    height: 340px;
  }

  .home-proof-copy dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Shared mobile navigation: keep the shell stable across every page family. */
@media (max-width: 61.25rem) {
  :root {
    --fz-mobile-header: 64px;
  }

  .site-header {
    height: var(--fz-mobile-header);
  }

  .nav-shell {
    width: min(calc(100% - 32px), var(--fz-shell));
    height: var(--fz-mobile-header);
    min-height: var(--fz-mobile-header);
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .brand-logo {
    width: 132px;
    height: var(--fz-mobile-header);
    overflow: hidden;
  }

  .brand-logo img {
    width: 122px;
    max-height: 56px;
  }

  .nav-actions {
    width: 44px;
  }

  .menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    width: 44px;
    height: 44px;
  }

  .main-nav {
    position: fixed;
    inset: var(--fz-mobile-header) 0 0;
    z-index: 101;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    align-content: start;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 12px 20px calc(176px + env(safe-area-inset-bottom));
    border-top: 1px solid rgb(255 255 255 / 10%);
    background: #081118;
    box-shadow: none;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a,
  .main-nav .nav-product-menu {
    width: min(100%, 520px);
    justify-self: center;
  }

  .main-nav > a,
  .nav-product-menu summary {
    min-height: 58px;
    padding: 0 4px;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    border-radius: 0;
    font-size: 16px;
  }

  .main-nav > a[aria-current="page"],
  .nav-product-menu[data-current="true"] summary,
  .nav-product-menu[open] summary {
    padding-left: 16px;
    color: #fff;
    background: rgb(255 255 255 / 5%);
    box-shadow: inset 3px 0 0 var(--fz-color-blue);
  }

  .nav-product-panel {
    padding: 6px 0 12px 16px;
  }

  .main-nav .nav-product-panel a {
    min-height: 50px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 7px 10px;
  }

  .nav-product-label {
    padding: 12px 10px 5px;
    line-height: 1.45;
  }

  body.menu-open .nav-cta {
    right: auto;
    bottom: calc(76px + env(safe-area-inset-bottom));
    left: 50%;
    width: min(520px, calc(100% - 40px));
    transform: translateX(-50%);
  }

  body.menu-open .header-socials {
    left: max(20px, calc((100vw - 520px) / 2));
  }
}

@media (max-width: 61.25rem) and (max-height: 45rem) {
  .main-nav {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  body.menu-open .header-socials,
  body.menu-open .nav-cta {
    display: none;
  }
}

/* Partner mobile layout: one text edge, predictable wrapping, compact steps. */
@media (max-width: 47.5rem) {
  .v9-partner :where(h1, h2, h3, p, dt, dd, strong) {
    min-width: 0;
    text-align: left;
  }

  .v9-partner :where(h1, h2) {
    text-wrap: wrap;
    word-break: keep-all;
  }

  .v9-partner :where(p, dd) {
    overflow-wrap: break-word;
  }

  .v9-partner .v9-section,
  .v9-partner .v9-opportunity {
    padding-block: 64px;
  }

  .v9-partner .v9-section-head,
  .v9-partner .v9-opportunity-head {
    gap: 16px;
    margin-bottom: 30px;
  }

  .v9-partner .v9-title,
  .v9-partner .v9-opportunity-title,
  .v9-partner .v9-validation h2 {
    max-width: 10.5em;
    font-size: 32px;
    line-height: 1.14;
  }

  .v9-partner .v9-lead {
    max-width: 31em;
    font-size: 15px;
    line-height: 1.68;
  }

  .v9-partner .v9-model-compare article {
    gap: 22px;
    padding: 30px 24px;
  }

  .v9-partner .v9-model-compare h3 {
    margin-top: 14px;
    font-size: 27px;
  }

  .v9-partner .v9-model-compare p {
    margin-top: 9px;
    line-height: 1.62;
  }

  .v9-partner .v9-model-compare dl div {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding-block: 11px;
  }

  .v9-partner .v9-model-compare dd {
    line-height: 1.55;
  }

  .v9-partner .partner-saas-link .shell {
    gap: 12px;
  }

  .v9-partner .partner-saas-link p:not(.v9-kicker) {
    max-width: 32em;
  }

  .v9-partner .partner-saas-link .v9-link {
    margin-top: 4px;
  }

  .v9-partner .v9-opportunity-stage {
    border-radius: 6px;
  }

  .v9-partner .v9-opportunity-modes article {
    padding: 26px 24px;
  }

  .v9-partner .v9-opportunity-modes strong {
    margin-top: 10px;
    font-size: 23px;
  }

  .v9-partner .v9-opportunity-modes p {
    margin-top: 9px;
    line-height: 1.65;
  }

  .v9-partner .v9-opportunity-media figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    padding: 6px 8px;
    font-size: 10px;
    text-align: left;
  }

  .v9-partner .v9-opportunity-actions {
    gap: 20px;
    margin-top: 28px;
  }

  .v9-partner .v9-opportunity-actions > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .v9-partner .v9-diagnosis article {
    padding: 26px 24px;
  }

  .v9-partner .v9-diagnosis h3 {
    margin-top: 18px;
    font-size: 23px;
  }

  .v9-partner .v9-diagnosis p {
    margin-top: 8px;
    line-height: 1.62;
  }

  .v9-partner .v9-step-list li,
  .v9-partner .v9-step-list li:last-child {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px 14px;
    align-items: start;
    padding: 22px 0;
  }

  .v9-partner .v9-step-list small {
    grid-row: 1 / span 2;
    padding-top: 3px;
  }

  .v9-partner .v9-step-list h3 {
    grid-column: 2;
    margin: 0;
    font-size: 21px;
    line-height: 1.25;
  }

  .v9-partner .v9-step-list p {
    grid-column: 2;
    margin: 0;
    line-height: 1.6;
  }

  .v9-partner .v9-validation {
    gap: 32px;
  }

  .v9-partner .v9-validation > div > p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.68;
  }

  .v9-partner .v9-cycle {
    margin-top: 26px;
  }

  .v9-partner .v9-cycle li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .v9-partner .v9-final {
    padding-block: 64px;
  }

  .v9-partner .v9-final-grid {
    gap: 26px;
  }

  .v9-partner .v9-final h2 {
    max-width: 9.5em;
    font-size: 34px;
    line-height: 1.12;
    text-wrap: wrap;
  }

  .v9-partner .v9-final p:not(.v9-kicker) {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 23.75rem) {
  .v9-partner .v9-model-compare article,
  .v9-partner .v9-opportunity-modes article,
  .v9-partner .v9-diagnosis article {
    padding-inline: 20px;
  }

  .v9-partner .v9-model-compare dl div {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
  }
}

/* Shared FZ Hub product preview */
.fz-hub-demo {
  min-width: 0;
  overflow: hidden;
  color: #202126;
  border: 1px solid #dfe1e6;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 24px 60px rgb(25 28 40 / 11%);
}

.fz-hub-demo__bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  border-bottom: 1px solid #e2e3e7;
  background: #fff;
}

.fz-hub-demo__brand,
.fz-hub-demo__mode {
  display: inline-flex;
  align-items: center;
}

.fz-hub-demo__brand {
  gap: 9px;
}

.fz-hub-demo__brand b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 6px;
  background: #5c63e6;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}

.fz-hub-demo__brand strong {
  color: #24252a;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.fz-hub-demo__mode {
  gap: 6px;
  color: #777b84;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
}

.fz-hub-demo__mode i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #279b72;
}

.fz-hub-demo__shell {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 452px;
}

.fz-hub-demo__nav {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 3px;
  padding: 14px 8px;
  border-right: 1px solid #e2e3e7;
  background: #f8f8f9;
}

.fz-hub-demo__nav strong {
  margin: 10px 8px 3px;
  color: #92959d;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
}

.fz-hub-demo__nav strong:first-child {
  margin-top: 0;
}

.fz-hub-demo__nav span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  color: #656871;
  border-radius: 5px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 750;
}

.fz-hub-demo__nav span.is-active {
  color: #292b31;
  background: #ededf0;
  font-weight: 900;
}

.fz-hub-demo__main {
  min-width: 0;
  padding: 20px;
  background: #fdfdfd;
}

.fz-hub-demo__heading,
.fz-hub-demo__operations > header,
.fz-hub-demo__trend > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.fz-hub-demo__heading > div {
  display: grid;
  gap: 4px;
}

.fz-hub-demo__heading strong {
  color: #202126;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 920;
}

.fz-hub-demo__heading span,
.fz-hub-demo__heading small,
.fz-hub-demo__operations > header span,
.fz-hub-demo__trend header span,
.fz-hub-demo__trend header small {
  color: #878a92;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 720;
}

.fz-hub-demo__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 16px;
}

.fz-hub-demo__metrics article {
  min-width: 0;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid #e0e2e7;
  border-radius: 6px;
  background: #fff;
}

.fz-hub-demo__metrics small,
.fz-hub-demo__operations article small {
  color: #686c75;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 780;
}

.fz-hub-demo__metrics strong {
  margin-top: 10px;
  color: #24252a;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.fz-hub-demo__metrics strong em {
  margin-left: 2px;
  color: #6e727b;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.fz-hub-demo__metrics article > span {
  margin-top: auto;
  padding-top: 8px;
  overflow: hidden;
  color: #9699a1;
  font-size: 10px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fz-hub-demo__operations {
  margin-top: 10px;
  border: 1px solid #e0e2e7;
  border-radius: 6px;
  background: #fff;
}

.fz-hub-demo__operations > header {
  min-height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid #e5e6e9;
}

.fz-hub-demo__operations > header strong,
.fz-hub-demo__trend header strong {
  color: #303138;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 900;
}

.fz-hub-demo__operations > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fz-hub-demo__operations article {
  min-width: 0;
  min-height: 80px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 11px 12px;
  border-right: 1px solid #e7e8eb;
}

.fz-hub-demo__operations article:last-child {
  border-right: 0;
}

.fz-hub-demo__operations article strong {
  color: #282a30;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
}

.fz-hub-demo__operations article span {
  overflow: hidden;
  color: #8c8f97;
  font-size: 10px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fz-hub-demo__trend {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #e0e2e7;
  border-radius: 6px;
  background: #fff;
}

.fz-hub-demo__trend header > div {
  display: grid;
  gap: 2px;
}

.fz-hub-demo__trend header small {
  padding: 4px 7px;
  color: #4f55d4;
  border-radius: 4px;
  background: #eeeeff;
}

.fz-hub-demo__bars {
  height: 74px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  margin-top: 10px;
  padding: 0 5px 18px;
  border-bottom: 1px solid #ececef;
}

.fz-hub-demo__bars i {
  position: relative;
  height: var(--value);
  min-height: 14px;
  display: block;
  border-radius: 3px 3px 0 0;
  background: #5c63e6;
}

.fz-hub-demo__bars b {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  color: #8a8d95;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  transform: translateX(-50%);
}

.fz-hub-demo > p {
  margin: 0;
  padding: 9px 15px;
  color: #83868e;
  border-top: 1px solid #e2e3e7;
  background: #fafafa;
  font-size: 10px;
  line-height: 1.4;
  text-align: right;
}

.fz-hub-demo--compact {
  align-self: stretch;
  box-shadow: none;
}

.fz-hub-demo--compact .fz-hub-demo__shell {
  min-height: 250px;
  grid-template-columns: 96px minmax(0, 1fr);
}

.fz-hub-demo--compact .fz-hub-demo__main {
  padding: 15px;
}

.fz-hub-demo--compact .fz-hub-demo__metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fz-hub-demo--compact .fz-hub-demo__operations {
  display: none;
}

@media (max-width: 900px) {
  .fz-hub-demo__metrics,
  .fz-hub-demo__operations > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fz-hub-demo__operations article:nth-child(2) {
    border-right: 0;
  }

  .fz-hub-demo__operations article:nth-child(n + 3) {
    border-top: 1px solid #e7e8eb;
  }
}

@media (max-width: 640px) {
  .fz-hub-demo {
    border-radius: 6px;
    box-shadow: 0 16px 38px rgb(25 28 40 / 9%);
  }

  .fz-hub-demo__bar {
    min-height: 52px;
    padding-inline: 12px;
  }

  .fz-hub-demo__mode {
    font-size: 10px;
  }

  .fz-hub-demo__shell,
  .fz-hub-demo--compact .fz-hub-demo__shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .fz-hub-demo__nav {
    display: none;
  }

  .fz-hub-demo__main,
  .fz-hub-demo--compact .fz-hub-demo__main {
    padding: 14px 11px;
  }

  .fz-hub-demo__heading {
    align-items: flex-start;
  }

  .fz-hub-demo__heading strong {
    font-size: 16px;
  }

  .fz-hub-demo__heading > small {
    display: none;
  }

  .fz-hub-demo__metrics {
    gap: 6px;
    margin-top: 14px;
  }

  .fz-hub-demo__metrics article {
    min-height: 104px;
    padding: 12px 10px;
  }

  .fz-hub-demo__metrics strong {
    font-size: 19px;
  }

  .fz-hub-demo__metrics article > span {
    overflow: visible;
    font-size: 10px;
    white-space: normal;
  }

  .fz-hub-demo__metrics small,
  .fz-hub-demo__operations article small {
    font-size: 10px;
  }

  .fz-hub-demo__operations > header {
    min-height: 46px;
  }

  .fz-hub-demo__operations article {
    min-height: 86px;
  }

  .fz-hub-demo__operations article span {
    font-size: 10px;
  }

  .fz-hub-demo__trend {
    display: none;
  }

  .fz-hub-demo > p {
    padding-inline: 11px;
    font-size: 10px;
    text-align: left;
  }
}

/* Corporate home: one promise, two clear paths, two pieces of proof. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.v9-home .v9-hero-inner {
  grid-template-columns: minmax(0, 1fr) 270px;
}

.home-hero-proof {
  margin: 0;
  border-top: 1px solid rgb(255 255 255 / 30%);
  border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.home-hero-proof > div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.home-hero-proof > div:last-child {
  border-bottom: 0;
}

.home-hero-proof dt {
  color: #b9ff31;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.home-hero-proof dd {
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 780;
}

.home-gateway {
  color: #fff;
  background: #0a141c;
}

.home-gateway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-gateway-route {
  min-width: 0;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 66px 74px 62px 0;
  color: #fff;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.home-gateway-route.is-system {
  padding-right: 0;
  padding-left: 74px;
  border-right: 0;
}

.home-gateway-route small {
  color: #9bb4c6;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
}

.home-gateway-route > span {
  margin-top: 30px;
  color: #b9ff31;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
}

.home-gateway-route > strong {
  max-width: 540px;
  margin-top: 9px;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 920;
  word-break: keep-all;
}

.home-gateway-route > p {
  max-width: 520px;
  margin-top: 18px;
  color: rgb(255 255 255 / 66%);
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.home-gateway-route > b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 520px);
  margin-top: 36px;
  padding-top: 18px;
  color: #fff;
  border-top: 1px solid rgb(255 255 255 / 24%);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 850;
}

.home-gateway-route > b i {
  color: #b9ff31;
  font-size: 20px;
  font-style: normal;
  transition: transform 180ms ease;
}

.home-gateway-route:hover > b i,
.home-gateway-route:focus-visible > b i {
  transform: translateX(5px);
}

.home-impact {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(460px, 0.88fr);
  background: #fff;
}

.home-impact-media,
.home-field-lab-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--fz-color-deep);
}

.home-impact-media img,
.home-field-lab-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-impact-media figcaption,
.home-field-lab-media figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 7px 9px;
  color: #fff;
  border-radius: 4px;
  background: rgb(7 15 21 / 78%);
  font-size: 11px;
  line-height: 1.4;
}

.home-impact-copy {
  align-self: center;
  max-width: 690px;
  padding: 82px 64px;
}

.home-impact-copy h2,
.home-field-lab-copy h2 {
  margin-block: 16px 22px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 930;
  word-break: keep-all;
}

.home-impact-copy > p:not(.v9-kicker),
.home-field-lab-copy > p:not(.v9-kicker) {
  color: var(--fz-color-muted);
  font-size: 16px;
  line-height: 1.72;
  word-break: keep-all;
}

.home-impact-steps {
  margin: 34px 0 30px;
  padding: 0;
  border-top: 1px solid var(--fz-color-line);
  list-style: none;
}

.home-impact-steps li {
  display: grid;
  grid-template-columns: 34px 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--fz-color-line);
}

.home-impact-steps span {
  color: var(--fz-color-blue);
  font-size: 11px;
  font-weight: 900;
}

.home-impact-steps strong {
  font-size: 14px;
  font-weight: 900;
}

.home-impact-steps p {
  margin: 0;
  color: var(--fz-color-muted);
  font-size: 13px;
  line-height: 1.55;
  word-break: keep-all;
}

.home-field-lab {
  padding-block: 108px;
  background: #edf1f2;
}

.home-field-lab-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: center;
}

.home-field-lab-copy dl {
  margin: 34px 0 0;
  border-top: 1px solid #cbd3d7;
}

.home-field-lab-copy dl > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  padding-block: 18px;
  border-bottom: 1px solid #cbd3d7;
}

.home-field-lab-copy dt {
  font-size: 14px;
  font-weight: 900;
}

.home-field-lab-copy dd {
  margin: 0;
  color: var(--fz-color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.home-field-lab-media {
  min-height: 500px;
  border-radius: 6px;
}

@media (max-width: 61.25rem) {
  .v9-home .v9-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-proof > div {
    border-right: 1px solid rgb(255 255 255 / 18%);
    border-bottom: 0;
  }

  .home-hero-proof > div:last-child {
    border-right: 0;
  }

  .home-gateway-route {
    padding-right: 40px;
  }

  .home-gateway-route.is-system {
    padding-left: 40px;
  }

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

  .home-impact-media {
    min-height: 520px;
  }

  .home-impact-copy {
    max-width: none;
    padding: 72px max(20px, calc((100vw - min(calc(100vw - 40px), var(--fz-shell))) / 2));
  }

  .home-field-lab-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-field-lab-media {
    min-height: 440px;
  }
}

@media (max-width: 47.5rem) {
  .home-desktop-break {
    display: none;
  }

  .v9-home .v9-hero,
  .v9-home .v9-hero-inner {
    min-height: 650px;
  }

  .v9-home .v9-hero-inner {
    align-content: end;
    padding-block: 64px 26px;
  }

  .home-hero-proof {
    grid-template-columns: 1fr;
  }

  .home-hero-proof > div,
  .home-hero-proof > div:last-child {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .home-hero-proof > div:last-child {
    border-bottom: 0;
  }

  .home-gateway-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .home-gateway-route,
  .home-gateway-route.is-system {
    min-height: 350px;
    padding: 54px 16px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
  }

  .home-gateway-route.is-system {
    border-bottom: 0;
  }

  .home-gateway-route > span {
    margin-top: 24px;
  }

  .home-gateway-route > strong {
    font-size: 31px;
    line-height: 1.15;
  }

  .home-gateway-route > p {
    font-size: 14px;
  }

  .home-impact-media {
    min-height: 340px;
  }

  .home-impact-copy {
    padding: 62px 16px 70px;
  }

  .home-impact-copy h2,
  .home-field-lab-copy h2 {
    font-size: 34px;
    line-height: 1.13;
  }

  .home-impact-steps li {
    grid-template-columns: 28px 44px minmax(0, 1fr);
    gap: 8px;
    min-height: 78px;
  }

  .home-impact-steps p {
    font-size: 12px;
  }

  .home-field-lab {
    padding-block: 70px;
  }

  .home-field-lab-grid {
    gap: 36px;
  }

  .home-field-lab-copy dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .home-field-lab-media {
    min-height: 300px;
  }

  .v9-home .v9-final {
    padding-block: 64px;
  }
}

@media (max-width: 23.75rem) {
  .v9-home .v9-hero h1 {
    font-size: 38px;
  }

  .home-gateway-route > strong,
  .home-impact-copy h2,
  .home-field-lab-copy h2 {
    font-size: 30px;
  }
}
