:root {
  --green-950: #14260f;
  --green-900: #233b16;
  --green-800: #175d2f;
  --green-700: #1a8740;
  --green-600: #229b49;
  --green-500: #40ad5e;
  --green-300: #9fd8a9;
  --green-100: #eaf5e8;
  --green-050: #f4faf2;
  --ink: #151914;
  --ink-soft: #586157;
  --paper: #fff;
  --cloud: #229b49;
  --line: #dfe6dc;
  --shadow: 0 22px 60px rgba(25, 53, 22, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background: #f3f5f0;
}
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  margin: 0;
  letter-spacing: -0.035em;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}
.section {
  padding: 104px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: 0 0;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    backdrop-filter 0.3s;
}
header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(223, 230, 220, 0.78);
  box-shadow: 0 8px 28px rgba(20, 38, 15, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}
.nav-shell {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
header.is-scrolled .logo img {
  filter: none;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s;
}
nav a:hover {
  color: #fff;
}
header.is-scrolled nav a {
  color: #30372f;
}
header.is-scrolled nav a:hover {
  color: var(--green-700);
}
.nav-cta {
  padding: 11px 20px;
  background: #fff;
  color: var(--green-700) !important;
  border-radius: 999px !important;
  transition:
    background 0.25s,
    color 0.25s;
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-800) !important;
}
header.is-scrolled .nav-cta {
  background: var(--green-600);
  color: #fff !important;
}
header.is-scrolled .nav-cta:hover {
  background: var(--green-700);
  color: #fff !important;
}
.mobile-toggle {
  display: none;
  border: 0;
  background: 0 0;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
  transition: color 0.25s;
}
header.is-scrolled .mobile-toggle {
  color: var(--ink);
}
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--green-950);
  color: #fff;
  --hero-split: 50%;
}
@keyframes hero-scroll-cue {
  0%,
  100% {
    transform: translateY(-3px) rotate(45deg);
  }
  50% {
    transform: translateY(3px) rotate(45deg);
  }
}
@keyframes metrics-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(95, 104, 96, 0.26);
  }
  100%,
  65% {
    box-shadow: 0 0 0 8px rgba(95, 104, 96, 0);
  }
}
.services {
  background: var(--cloud);
  color: #fff;
  overflow: hidden;
}
footer {
  padding: 44px 0;
  color: var(--ink-soft);
  border-top: 0;
  background: #fff;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 22px;
}
/* @media (max-width: 980px) {
  .hero {
    min-height: auto;
  }
  nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  nav.open {
    display: flex;
  }
  nav.open a {
    color: #30372f;
  }
  nav.open a:hover {
    color: var(--green-700);
  }
  .mobile-toggle {
    display: block;
  }
} */
@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1440px);
  }
  .section {
    padding: 72px 0;
  }
  .hero h1 {
    font-size: 42px;
    line-height: 1;
  }
  .btn {
    width: 100%;
  }
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}
.section {
  position: relative;
  padding: clamp(88px, 9vw, 132px) 0;
}
@keyframes client-logo-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(61, 161, 82, 0.18), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(71, 128, 78, 0.13), transparent 30%);
  pointer-events: none;
}
.services .container {
  position: relative;
  z-index: 1;
}
.footer-links a:hover {
  color: #9edbaa;
}
.fan-constructor-page {
  --fc-lime: #bdf36b;
  --fc-blue: #0063b0;
  --fc-blue-bright: #49afff;
  --fc-blue-pale: #e5f3ff;
  overflow-x: hidden;
  background: var(--bg);
}
.fc-hero {
  position: relative;
  overflow: hidden;
  color: var(--on-dark);
  background:
    radial-gradient(
      circle at 78% 36%,
      color-mix(in srgb, var(--green-500) 20%, transparent),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 92%,
      color-mix(in srgb, var(--green-700) 42%, transparent),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--surface-brand) 0,
      var(--surface-brand) 52%,
      var(--green-500) 100%
    );
}
.fc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--on-dark) 10%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--on-dark) 10%, transparent) 1px,
      transparent 1px
    );
  background-size: 88px 88px;
  mask-image: linear-gradient(
    90deg,
    var(--green-950),
    color-mix(in srgb, var(--green-950) 20%, transparent) 75%,
    transparent
  );
}
.fc-hero-glow {
  position: absolute;
  top: 17%;
  right: 10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--fc-lime) 11%, transparent);
  filter: blur(90px);
  pointer-events: none;
}
.fc-orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--on-dark) 10%, transparent);
  border-radius: 50%;
  pointer-events: none;
}
.fc-orbit-one {
  right: -250px;
  bottom: -390px;
  width: 900px;
  height: 900px;
  box-shadow:
    0 0 0 110px color-mix(in srgb, var(--on-dark) 1.8%, transparent),
    0 0 0 220px color-mix(in srgb, var(--on-dark) 1.2%, transparent);
}
.fc-orbit-two {
  top: -430px;
  left: 38%;
  width: 610px;
  height: 610px;
}
.fc-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(470px, 0.85fr);
  gap: clamp(58px, 7vw, 118px);
}
.fc-hero-copy {
  max-width: 780px;
  margin-top: 64px;
}
.fc-eyebrow,
.fc-section-index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--on-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-left: 4px;
}
.fc-section-index {
  display: none;
}
.fc-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.2vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--on-dark);
  text-wrap: balance;
}
.fc-hero h1 em {
  color: var(--fc-lime);
  font-style: normal;
}
.fc-hero-lead {
  color: color-mix(in srgb, var(--on-dark) 73%, transparent);
}
.fc-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.fc-btn-light {
  min-width: 156px;
  color: var(--green-950);
  background: var(--fc-lime);
  box-shadow: 0 18px 45px color-mix(in srgb, var(--green-950) 25%, transparent);
}
.fc-btn-light:hover {
  color: var(--green-950);
  background: color-mix(in srgb, var(--fc-lime) 84%, var(--paper));
}
.fc-btn-dark span,
.fc-btn-light span {
  transition: transform 0.25s;
}
.fc-btn-dark:hover span,
.fc-btn-light:hover span {
  transform: translateX(4px);
}
.fc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--on-dark) 28%, transparent);
  color: var(--on-dark);
  font-size: 14px;
  font-weight: 750;
  transition:
    gap 0.25s,
    border-color 0.25s;
}
.fc-text-link:hover {
  gap: 15px;
  border-color: var(--fc-lime);
}
.fc-proof-line {
  display: flex;
  max-width: 630px;
  align-items: flex-start;
  gap: 12px;
  margin-top: 39px;
  color: var(--on-dark);
  font-size: 16px;
  line-height: 1.65;
}
.fc-proof-line i {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--fc-lime);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--fc-lime) 10%, transparent);
}
.fc-hero-visual {
  position: relative;
  transform: translateY(var(--fc-hero-shift, 0));
}
.fc-stage-frame,
.fc-window {
  /* overflow: hidden;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--green-300) 20%, transparent);
  border-radius: 30px;
  background: color-mix(in srgb, var(--on-dark) 5.5%, transparent);
  box-shadow: var(--shadow-lg); */

  overflow: hidden;
    padding: 10px;
    border: 1px solid color-mix(in srgb, var(--green-300) 20%, transparent);
    border-radius: 30px;
    background: color-mix(in srgb, var(--on-dark) 5.5%, transparent);
    box-shadow: var(--shadow-lg);
}
.fc-window-bar {
  display: none;
  height: 36px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid color-mix(in srgb, var(--on-dark) 8%, transparent);
  background: color-mix(in srgb, var(--green-950) 94%, transparent);
}
.fc-window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--on-dark) 24%, transparent);
}
.fc-window-bar small {
  margin-left: auto;
  color: color-mix(in srgb, var(--on-dark) 47%, transparent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.fc-window > img {
  width: 100%;
  aspect-ratio: 1.7/1;
  object-fit: cover;
  border-radius: 22px;
}
@keyframes fc-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.fc-scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 29px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: color-mix(in srgb, var(--on-dark) 48%, transparent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.fc-scroll-cue i {
  position: relative;
  width: 1px;
  height: 31px;
  overflow: hidden;
  background: color-mix(in srgb, var(--on-dark) 18%, transparent);
}
.fc-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fc-lime);
  animation: 1.9s ease-in-out infinite fc-scroll;
}
@keyframes fc-scroll {
  0% {
    transform: translateY(-100%);
  }
  100%,
  60% {
    transform: translateY(100%);
  }
}
.fc-section-heading {
  display: grid;
  gap: clamp(44px, 8vw, 130px);
  align-items: start;
}
.fc-audience .fc-section-index,
.fc-section-heading .fc-section-index {
  color: var(--accent);
}
.fc-section-heading h2 {
  max-width: 1040px;
  color: var(--fg);
  font-size: clamp(42px, 5.1vw, 73px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.056em;
  text-wrap: balance;
}
.fc-journey-nav {
  position: sticky;
  z-index: 35;
  top: 82px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(15px);
}
.fc-journey-shell {
  background: var(--green-050);
}
.fc-journey-nav .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-width: 790px;
}
.fc-journey-nav a {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 0.25s,
    background 0.25s;
}
.fc-journey-nav a:first-child {
  border-left: 1px solid var(--line);
}
.fc-journey-nav a:hover {
  color: var(--green-700);
}
.fc-journey-nav a span {
  color: color-mix(in srgb, var(--ink-soft) 60%, var(--paper));
  font-size: 8px;
}
.fc-journey-nav a.is-active {
  color: var(--green-700);
  background: var(--green-100);
}
.fc-journey-nav a.is-active span {
  color: #198544;
}
.fc-journey {
  padding: 126px 0 80px;
  scroll-margin-top: 142px;
  background: var(--fc-blue-pale);
}
.fc-journey-intro {
  display: grid;
  grid-template-columns: auto;
  gap: clamp(45px, 8vw, 120px);
  align-items: start;
  margin-bottom: 58px;
}
.fc-journey-intro .fc-section-index {
  color: var(--green-700);
}
.fc-journey-intro h2 {
  max-width: 940px;
  color: var(--ink);
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.fc-journey-grid {
  display: grid;
  grid-template-columns: minmax(410px, 0.82fr) minmax(0, 0.78fr);
  gap: clamp(70px, 10vw, 155px);
  align-items: start;
}
.fc-mobile-journey-images {
  display: none;
}
.fc-stage {
  position: sticky;
  top: 177px;
  min-width: 0;
}
.fc-stage-frame {
  border-color: color-mix(in srgb, var(--green-950) 13%, transparent);
  background: var(--paper);
  box-shadow: 0 30px 80px color-mix(in srgb, var(--green-950) 15%, transparent);
}
.fc-stage-frame .fc-window-bar {
  background: var(--green-950);
}
.fc-stage-images {
  position: relative;
  aspect-ratio: 2/1;
  overflow: hidden;
  background: var(--green-050);
}
.fc-stage-deck {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.025) translateY(9px);
  transition:
    opacity 0.55s,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.fc-stage-deck.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.fc-stage-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
[data-stage-title] {
  text-transform: uppercase;
}
.fc-slider,
.fc-slider-slide,
.fc-slider-track,
.fc-slider-viewport {
  height: 100%;
}
.fc-slider {
  position: relative;
  overflow: hidden;
  background: var(--green-050);
}
.fc-slider-viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.fc-slider-viewport:focus-visible {
  outline: 3px solid var(--fc-lime);
  outline-offset: -3px;
}
.fc-slider-track {
  display: flex;
  transform: translate3d(calc(var(--fc-slide, 0) * -100%), 0, 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.fc-slider-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  background: var(--paper);
}
.fc-slider-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7/1;
  object-fit: cover;
  border-radius: 22px;
}
.fc-slider-controls {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid color-mix(in srgb, var(--on-dark) 18%, transparent);
  border-radius: 999px;
  color: var(--on-dark);
  background: color-mix(in srgb, var(--green-950) 90%, transparent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--green-950) 20%, transparent);
  backdrop-filter: blur(8px);
}
.fc-slider-controls button {
  display: grid;
  width: 31px;
  height: 31px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--on-dark);
  background: color-mix(in srgb, var(--on-dark) 10%, transparent);
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
}
.fc-slider-controls button:focus-visible,
.fc-slider-controls button:hover {
  color: var(--green-950);
  background: var(--fc-lime);
  outline: 0;
}
.fc-slider-controls > span {
  min-width: 52px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
.fc-slider-controls b {
  color: var(--fc-lime);
  font-size: 11px;
}
.fc-stage-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: start;
  margin-top: 24px;
}
.fc-stage-meta > span {
  color: color-mix(in srgb, var(--ink-soft) 70%, var(--paper));
  font-size: 10px;
  font-weight: 800;
}
.fc-stage-meta b {
  color: var(--green-700);
  font-family: var(--font-display);
  font-size: 18px;
}
.fc-stage-meta p {
  max-width: 530px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}
.fc-stage-progress {
  height: 2px;
  overflow: hidden;
  margin-top: 20px;
  background: var(--line);
}
.fc-stage-progress i {
  display: block;
  width: var(--fc-progress, 20%);
  height: 100%;
  background: var(--green-700);
  transition: width 0.45s;
}
.fc-erp-visual {
  display: grid;
  grid-template-columns: auto 1fr minmax(190px, 1.2fr) 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 42px;
  color: var(--on-dark);
  background: var(--green-950);
}
.fc-erp-visual > i {
  height: 1px;
  background: color-mix(in srgb, var(--on-dark) 22%, transparent);
}
.fc-erp-visual > div {
  display: grid;
  gap: 7px;
}
.fc-erp-visual > div span {
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--on-dark) 10%, transparent);
  border-radius: 7px;
  color: color-mix(in srgb, var(--on-dark) 76%, transparent);
  background: color-mix(in srgb, var(--on-dark) 5.5%, transparent);
  font-size: 9px;
  text-align: center;
}
.fc-steps {
  min-width: 0;
}
.fc-step {
  min-height: 105svh;
  padding: 57px 0 150px;
  scroll-margin-top: 172px;
  opacity: 0.44;
  transition: opacity 0.4s;
}
.fc-step.is-active {
  opacity: 1;
}
.fc-step-number {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.fc-step h2 {
  max-width: 670px;
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(40px, 4.25vw, 63px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.056em;
  text-wrap: balance;
}
.fc-step p {
  max-width: 690px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.83;
}
.fc-step .fc-step-lead {
  margin-top: 30px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.72;
}
.fc-feature-list {
  display: grid;
  gap: 0;
  max-width: 690px;
  margin: 31px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.fc-feature-list li {
  position: relative;
  padding: 15px 10px 15px 31px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}
.fc-feature-list li::before {
  content: "\2713";
  position: absolute;
  top: 15px;
  left: 4px;
  color: var(--green-600);
  font-weight: 800;
}
@keyframes fc-panel-in {
  from {
    opacity: 0;
    transform: translateY(17px);
  }
}
.fc-audience {
  position: relative;
  overflow: hidden;
  padding: 112px 0 122px;
  background:
    radial-gradient(circle at 8% 12%, rgba(64, 173, 94, 0.1), transparent 26%),
    linear-gradient(180deg, #fff 0, #f5faf3 42%, #eef7ed 100%);
}
.fc-audience .container {
  position: relative;
  z-index: 1;
}
.fc-audience .fc-section-heading {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  column-gap: clamp(52px, 8vw, 120px);
  row-gap: 18px;
  align-items: end;
}
.fc-audience .fc-section-index {
  grid-column: 1/-1;
}
.fc-audience .fc-section-heading h2 {
  max-width: 790px;
  font-size: clamp(44px, 4.4vw, 64px);
}
.fc-audience .fc-section-heading > p {
  max-width: 470px;
  padding: 0 0 5px;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.75;
}
.fc-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}
.fc-audience-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 22px;
  min-height: 205px;
  overflow: hidden;
  padding: 30px 34px;
  border: 1px solid rgba(26, 135, 64, 0.16);
  border-radius: 20px;
  color: #173127;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(242, 249, 240, 0.96)
  );
  box-shadow: 0 12px 34px rgba(20, 63, 31, 0.055);
  transition:
    border-color 0.28s,
    box-shadow 0.28s,
    transform 0.28s;
}
.fc-audience-card:hover {
  z-index: 2;
  border-color: rgba(26, 135, 64, 0.35);
  box-shadow: 0 20px 45px rgba(20, 63, 31, 0.11);
  transform: translateY(-5px);
}
.fc-audience-card .fs-audience-icon {
  display: grid;
  width: 58px;
  height: 58px;
  grid-row: 1 / span 2;
  align-self: center;
  place-items: center;
  border: 1px solid rgba(26, 135, 64, 0.2);
  border-radius: 16px;
  color: var(--green-700);
  background: linear-gradient(145deg, #edf8eb, #ddf1dd);
  transition:
    color 0.28s,
    background 0.28s,
    transform 0.28s;
}
.fc-audience-card .fs-audience-icon svg {
  width: 25px;
  height: 25px;
}
.fc-audience-card:hover .fs-audience-icon {
  color: #fff;
  background: linear-gradient(145deg, var(--green-600), var(--green-700));
  transform: scale(1.04);
}
.fc-audience-card h3 {
  align-self: end;
  margin: 5px 0 0;
  color: #173127;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.12;
}
.fc-audience-card p {
  grid-column: 2;
  max-width: 470px;
  margin-top: 12px;
  color: #617067;
  font-size: 14px;
  line-height: 1.65;
}
.fc-closing {
  padding: 96px 0 110px;
  background: var(--bg);
}
.fc-closing-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
  overflow: hidden;
  padding: clamp(43px, 6.5vw, 92px);
  border-radius: 34px;
  color: var(--on-dark);
  background:
    radial-gradient(ellipse at 88% 12%, #29ad61 0, transparent 65%),
    linear-gradient(125deg, #15933f, #078343);
  box-shadow: 0 30px 75px color-mix(in srgb, var(--green-950) 19%, transparent);
}
.fc-closing-card::after {
  display: none;
}
.fc-closing-card > * {
  position: relative;
  z-index: 1;
}
.fc-closing-card > div > span {
  display: block;
  color: #eaf5e8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.fc-closing-card h2 {
  max-width: 920px;
  margin-top: 19px;
  font-size: clamp(40px, 5vw, 71px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.058em;
}
.fc-closing-card p {
  max-width: 700px;
  margin-top: 25px;
  color: color-mix(in srgb, var(--on-dark) 58%, transparent);
  font-size: 15px;
  line-height: 1.72;
}
.fc-closing-actions {
  display: grid;
  min-width: 180px;
  gap: 17px;
  justify-items: center;
}
.fc-btn-dark {
  width: 100%;
  color: var(--green-950);
  background: var(--fc-lime);
}
.fc-btn-dark:hover {
  color: var(--green-950);
  background: color-mix(in srgb, var(--fc-lime) 84%, var(--paper));
}
.fc-closing-link {
  padding-bottom: 6px;
  border-bottom: 1px solid color-mix(in srgb, var(--on-dark) 30%, transparent);
  color: color-mix(in srgb, var(--on-dark) 74%, transparent);
  font-size: 12px;
  font-weight: 750;
}
.fan-constructor-page footer {
  background: var(--bg);
}
.fc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fc-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.fc-hero .fc-reveal:nth-child(2) {
  transition-delay: 80ms;
}
.fc-hero .fc-reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.fc-hero .fc-reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.fc-audience-card:nth-child(2) {
  transition-delay: 80ms;
}
.fc-audience-card:nth-child(3) {
  transition-delay: 0.16s;
}
.fc-audience-card:nth-child(4) {
  transition-delay: 0.24s;
}
@media (max-width: 1180px) {
  .fc-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
    gap: 55px;
  }
  .fc-journey-grid {
    grid-template-columns: minmax(370px, 0.76fr) minmax(0, 0.8fr);
    gap: 72px;
  }
  .fc-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  .fc-hero {
    min-height: auto;
    padding-top: 136px;
    padding-bottom: 115px;
  }
  .fc-closing-card,
  .fc-hero-grid,
  .fc-journey-grid {
    grid-template-columns: 1fr;
  }
  .fc-hero-grid {
    min-height: auto;
  }
  .fc-hero-copy {
    max-width: 860px;
  }
  .fc-hero-visual {
    width: min(780px, 94%);
    margin: 30px auto 0;
  }
  .fc-scroll-cue {
    display: none;
  }
  .fc-audience .fc-section-heading,
  .fc-journey-intro,
  .fc-section-heading {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .fc-journey-nav {
    top: 72px;
  }
  .fc-stage {
    top: 145px;
    z-index: 3;
    width: min(760px, 100%);
    margin: 0 auto;
    padding-bottom: 28px;
    background: linear-gradient(var(--green-050) 84%, transparent);
  }
  .fc-stage-frame {
    max-height: 49vh;
  }
  .fc-stage-images {
    max-height: calc(49vh - 36px);
  }
  .fc-stage-meta {
    margin-top: 14px;
  }
  .fc-step {
    min-height: auto;
    padding: 95px 0 110px;
    opacity: 1;
  }
  .fc-audience .fc-section-heading > p {
    max-width: 700px;
    padding-top: 0;
  }
  .fc-closing-card {
    align-items: start;
  }
  .fc-closing-actions {
    width: 200px;
    justify-items: center;
  }
  .fc-mobile-journey-images {
    display: block;
  }

  .fc-stage {
    display: none;
  }
}
@media (max-width: 720px) {
  .fc-hero {
    padding-top: 122px;
    padding-bottom: 80px;
  }
  .fc-hero h1 {
    font-size: 50px;
  }
  .fc-hero-lead {
    font-size: 16px;
  }
  .fc-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .fc-audience {
    padding-top: 85px;
    padding-bottom: 90px;
  }
  .fc-closing-card h2,
  .fc-journey-intro h2,
  .fc-section-heading h2 {
    font-size: 40px;
  }
  .fc-journey-nav .container {
    width: max-content;
    min-width: 745px;
    padding: 0 20px;
  }
  .fc-journey {
    padding-top: 82px;
  }
  .fc-stage {
    position: relative;
    top: auto;
    padding-bottom: 0;
  }
  .fc-stage-frame,
  .fc-stage-images {
    max-height: none;
  }
  .fc-stage-meta {
    margin-bottom: 28px;
  }
  .fc-step {
    padding: 67px 0 75px;
    border-top: 1px solid var(--line);
    scroll-margin-top: 141px;
  }
  .fc-step h2 {
    font-size: 39px;
  }
  .fc-step .fc-step-lead {
    font-size: 17px;
  }
  .fc-audience-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }
  .fc-audience-card {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 0;
    padding: 24px;
  }
  .fc-audience-card .fs-audience-icon {
    width: 50px;
    height: 50px;
    grid-row: auto;
    border-radius: 14px;
  }
  .fc-audience-card h3 {
    align-self: center;
    margin: 0;
  }
  .fc-audience-card p {
    grid-column: 1/-1;
    margin-top: 17px;
  }
  .fc-closing {
    padding: 68px 0 76px;
  }
  .fc-closing-card {
    gap: 42px;
    border-radius: 24px;
  }
}
@media (max-width: 480px) {
  .fc-hero h1 {
    font-size: 43px;
  }
  .fc-hero-visual {
    width: 100%;
    padding-top: 12px;
  }
  .fc-window {
    transform: none;
  }
  .fc-stage-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .fc-erp-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 25px;
  }
  .fc-erp-visual > i {
    width: 1px;
    height: 12px;
  }
  .fc-erp-visual > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .fc-step h2 {
    font-size: 36px;
  }
  .fc-audience-card {
    padding: 22px;
  }
  .fc-closing-card {
    padding: 34px 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fc-scroll-cue i::after {
    animation: none;
  }
  .fc-reveal,
  .fc-stage-deck {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .fc-audience-card,
  .fc-btn-dark span,
  .fc-btn-light span,
  .fc-slider-track {
    transition: none;
  }
}
.fs-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 8px;
}
.fs-bars div,
.fs-bars i {
  position: relative;
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#40ad5e, #1a8740);
}
.fs-bars span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  color: #718285;
  font-size: 7px;
  transform: translateX(-50%);
}
.fs-breadth {
  background: #fff;
}
.fs-ai {
  position: relative;
  overflow: hidden;
}
.fs-ai::after {
  display: none;
}
.fs-ai .container {
  position: relative;
  z-index: 1;
}
.fs-ai-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: center;
}
.fs-ai-copy .fc-section-index {
  color: var(--fc-lime);
}
.fs-ai-copy h2 {
  max-width: 620px;
  font-weight: 600;
  letter-spacing: -0.055em;
}
.fs-ai-demo {
  color: #152324;
  box-shadow: 0 35px 80px rgba(0, 20, 31, 0.35);
}
.fs-ai-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fs-ai-demo-head strong {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fs-ai-demo-head small {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1050px) {
  .fs-ai-grid {
    grid-template-columns: 1fr;
  }
  .fs-ai-demo {
    max-width: 820px;
  }
}
@media (max-width: 720px) {
  .fs-breadth {
    padding: 80px 0;
  }
  .fs-ai {
    padding: 86px 0;
  }
  .fs-ai-copy h2 {
    font-size: 42px;
  }
}
.fc-journey {
  background: 0 0;
}
.fc-journey-nav {
  border-top-color: #dce7dd;
  border-bottom-color: #dce7dd;
  background: rgba(244, 250, 242, 0.96);
}
.fc-journey-nav a,
.fc-journey-nav a:first-child {
  border-color: #dce7dd;
}
.fc-journey-nav a:hover {
  color: #198544;
  background: rgba(26, 135, 64, 0.04);
}
.fc-journey-nav a.is-active {
  color: #198544;
  background: rgba(26, 135, 64, 0.07);
  box-shadow: inset 0 -2px #1a8740;
}
:is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai) {
  --fs-lime: #bdf36b;
  --fs-forest: #09382b;
  --fs-mint: #f0f8f2;
}
:is(.fs-breadth, .fs-expertise, .fs-ai) .container {
  width: min(1280px, calc(100% - 80px));
}
.fc-hero {
  min-height: 0;
  padding: 82px 0 64px;
  background:
    radial-gradient(ellipse at 88% 12%, #29ad61 0, transparent 65%),
    linear-gradient(125deg, #15933f, #078343);
  isolation: isolate;
}
.fc-hero .fc-orbit,
.fc-hero-glow,
.fc-hero:after,
.fc-hero:before {
  display: none;
}
.fc-hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.28fr);
  gap: 64px;
  min-height: 0;
  align-items: center;
}
.fc-hero .fc-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  margin: 0 0 22px;
  color: #fff;
}
/* #fc-title {
  font-size: clamp(38px, 4.05vw, 60px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 570px;
} */
#fc-title em {
  font-style: normal;
  color: var(--fs-lime);
}
.fc-hero-lead {
  /* font-size: 17px;
  line-height: 1.75;
  color: #e6f6eb;
  max-width: 460px;
  margin-top: 25px; */
  max-width: 690px;
  margin-top: 31px;
  color: color-mix(in srgb, var(--on-dark) 73%, transparent);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.72;
}
.fc-hero-actions {
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.fc-hero .fc-btn-light {
  background: var(--fs-lime);
  color: #143522;
  box-shadow: none;
}
.fc-hero .fc-text-link {
  font-size: 14px;
  color: #fff;
  border: 0;
}
.fc-hero-visual {
  transform: none;
  min-width: 0;
  opacity: 1;
  padding: 0;
}
.fc-hero .fc-window {
  /* padding: 0;
  border: 1px solid #54866c;
  border-radius: 17px;
  transform: perspective(1400px) rotateY(-4deg);
  box-shadow: 0 26px 65px #043c4933;
  background: #fff; */
}
.fc-hero .fc-window img {
  border-radius: 22px;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.fc-hero .fc-window-bar {
  height: 31px;
  min-height: 31px;
  padding: 0 14px;
  background: #142b19;
  border-radius: 0;
  /* display: flex; */
  display: none;
}
.fc-hero .fc-window-bar small {
  font-size: 10px;
}
.fc-hero .fc-window-bar span {
  width: 5px;
  height: 5px;
}
/* :is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai) .fc-reveal {
  opacity: 1;
  transform: none;
} */
.fc-hero-slideshow {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1024/515;
  background: #f4f6f8;
}
.fc-hero .fc-window .fc-hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s;
}
.fc-hero .fc-window .fc-hero-slideshow img.is-active {
  opacity: 1;
}
:is(.fs-expertise, .fs-ai) .fs-preview {
  padding: 20px;
  color: #25364b;
  background: #fff;
  font-family: var(--font-body);
  height: 100%;
  font-size: 12px;
}
:is(.fs-expertise, .fs-ai) .fs-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8edf0;
}
:is(.fs-expertise, .fs-ai) .fs-preview-brand {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.02em;
}
:is(.fs-expertise, .fs-ai) .fs-preview-brand b {
  color: #18944c;
}
.fs-demo-label,
:is(.fs-expertise, .fs-ai) .fs-preview small {
  font-size: 10px;
  color: #687888;
}
:is(.fs-expertise, .fs-ai) .fs-preview-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}
:is(.fs-expertise, .fs-ai) .fs-preview-title strong {
  font-size: 14px;
}
:is(.fs-expertise, .fs-ai) .fs-ui-pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 5px;
  background: #eaf7ee;
  color: #198544;
  font-size: 10px;
  font-weight: 700;
}
:is(.fs-expertise, .fs-ai) .fs-table-wrap {
  overflow: auto;
}
:is(.fs-expertise, .fs-ai) .fs-ui-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 11px;
  text-align: left;
  white-space: nowrap;
}
:is(.fs-expertise, .fs-ai) .fs-ui-table td,
:is(.fs-expertise, .fs-ai) .fs-ui-table th {
  padding: 11px 9px;
  border-bottom: 1px solid #e9eef2;
}
:is(.fs-expertise, .fs-ai) .fs-ui-table th {
  font-weight: 600;
  background: #f5f8fb;
  color: #536174;
}
:is(.fs-expertise, .fs-ai) .fs-ui-table td:first-child {
  font-weight: 600;
}
:is(.fs-expertise, .fs-ai) .fs-ui-table tr.fs-highlight td {
  background: #f0f9f2;
}
:is(.fs-expertise, .fs-ai) .fs-ui-table caption {
  text-align: left;
  padding: 0 0 12px;
  font-weight: 700;
}
.fs-breadth {
  padding: 64px 0;
  background: var(--fs-mint);
}
:is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai)
  .fc-section-heading.fs-centered {
  display: block;
  text-align: center;
  margin: 0 0 30px;
}
:is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai)
  .fc-section-heading.fs-centered
  h2 {
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.15;
  max-width: none;
  letter-spacing: -0.04em;
}
:is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai)
  .fc-section-heading.fs-centered
  p {
  font-size: 15px;
  margin: 14px auto 0;
  max-width: 700px;
  color: var(--ink-soft);
}
:is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai) .fc-section-index {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #15944a;
  margin-bottom: 13px;
}
.fs-range-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}
.fs-range-card {
  overflow: hidden;
  background: linear-gradient(145deg, #fff 10%, #f3faf4 62%, #e6f4e8 100%);
  border: 1px solid #e3eee5;
  border-radius: 9px;
  padding: 12px 17px 22px;
  transition:
    transform 0.22s,
    border-color 0.22s,
    box-shadow 0.22s;
}
.fs-range-card:hover {
  transform: translateY(-5px);
  border-color: #c7dfca;
  box-shadow: 0 14px 28px rgba(9, 56, 43, 0.11);
}
.fs-range-image {
  aspect-ratio: 1;
  background-image: var(--fs-range-strip);
  background-position: calc(var(--range-index) * 25%) center;
  background-repeat: no-repeat;
  margin: 0 -5px 6px;
}
.fs-range-card .fs-range-image {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 4/5;
  margin: 0 0 6px;
  object-fit: contain;
  background: 0 0;
  transform: scale(0.9);
}
.fs-range-card h3 {
  padding-top: 14px;
  border-top: 1px solid rgba(21, 148, 74, 0.09);
  font-size: 17px;
  letter-spacing: -0.025em;
  color: #142b26;
}
.fs-range-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #62716a;
  margin-top: 8px;
}
.fs-expertise {
  padding: 78px 0 86px;
  background: var(--paper);
}
.fs-expertise-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.fs-expertise-heading > p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 14px 0 30px;
}
.fs-expertise-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}
.fs-editor-card,
.fs-insight-card {
  border: 1px solid #dfe8e5;
  border-radius: 11px;
  background: #fff;
  overflow: hidden;
}
.fs-editor-card .fs-preview {
  padding: 25px;
}
.fs-editor-card .fs-ui-table {
  font-size: 12px;
}
.fs-editor-card .fs-ui-table td,
.fs-editor-card .fs-ui-table th {
  padding: 14px 10px;
}
.fs-editor-card .fs-preview-head {
  gap: 15px;
}
.fs-editor-card .fs-preview-head small {
  flex: 1;
}
.fs-expertise-slider {
  --fs-expertise-slide: 0;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}
.fs-expertise-viewport {
  min-width: 0;
  overflow: hidden;
}
.fs-expertise-track {
  display: flex;
  transform: translateX(calc(var(--fs-expertise-slide) * -100%));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.fs-expertise-slide {
  display: grid;
  min-width: 100%;
  margin: 0;
  grid-template-rows: auto auto;
  background: #fff;
}
.fs-expertise-slide .fs-preview {
  min-height: 290px;
}
.fs-expertise-slide-image {
  display: grid;
  min-height: 0;
  aspect-ratio: 2/1;
  padding: 0;
  place-items: center;
  background: linear-gradient(145deg, #f9fcfa, #edf7ef);
}
.fs-expertise-slide-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.fs-expertise-slide figcaption {
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 15px 25px;
  border-top: 1px solid #e7eeeb;
  background: #f8fbf9;
}
.fs-expertise-slide figcaption strong {
  color: #173127;
  font-size: 14px;
}
.fs-expertise-slide figcaption span {
  color: #687888;
  font-size: 11px;
  line-height: 1.45;
}
.fs-expertise-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px 12px 25px;
  border-top: 1px solid #e7eeeb;
  color: #65766f;
  background: #fff;
  font-size: 10px;
}
.fs-expertise-controls b {
  color: #198544;
}
.fs-expertise-controls > div {
  display: flex;
  gap: 7px;
}
.fs-expertise-controls button {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid #d9e5dd;
  border-radius: 50%;
  color: #173127;
  background: #f7fbf8;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.fs-expertise-controls button:hover {
  border-color: #a9cfb3;
  background: #eaf7ee;
  transform: translateY(-1px);
}
.fs-insight-stack {
  display: grid;
  gap: 20px;
}
.fs-insight-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 22px;
  align-items: center;
}
.fs-insight-legacy {
  display: none;
}
.fs-insight-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 125px;
  object-fit: cover;
  object-position: left center;
  border: 1px solid #e2e9e6;
  border-radius: 8px;
}
.fs-insight-card h3 {
  font-size: 17px;
  color: #173127;
  letter-spacing: -0.03em;
}
.fs-insight-card p {
  font-size: 13px;
  color: #63756e;
  line-height: 1.65;
  margin-top: 8px;
}
.fs-mini-title {
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #29433a;
}
.fs-bars {
  height: 104px;
  display: flex;
  align-items: end;
  gap: 13px;
  border-bottom: 1px solid #dce5e0;
  padding: 8px 6px 0;
}
.fs-bars i {
  display: block;
  flex: 1;
  background: #1da050;
  height: var(--h);
  border-radius: 2px 2px 0 0;
}
.fs-months {
  display: flex;
  justify-content: space-around;
  font-size: 9px;
  color: #77867f;
  margin-top: 6px;
}
.fs-branding-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fs-branding-preview > div {
  border: 1px solid #e7ede9;
  border-radius: 5px;
  padding: 9px;
  font-size: 11px;
  color: #324d42;
}
.fs-branding-preview small {
  font-size: 9px;
  color: #6c8075;
  display: block;
  margin-bottom: 5px;
}
.fs-branding-preview img {
  width: 92px;
  height: auto;
}
.fs-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #189348;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 3px;
}
.fs-editor-card .fs-demo-label {
  display: block;
  padding: 0 25px 15px;
}
.fs-ai {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 88% 12%, #29ad61 0, transparent 65%),
    linear-gradient(125deg, #15933f, #078343);
  color: #fff;
}
.fs-ai-grid {
  grid-template-columns: 1fr 1.15fr;
  gap: 75px;
}
.fs-ai-copy .fc-section-index {
  color: var(--fs-lime);
}
.fs-ai-copy h2 {
  font-size: clamp(34px, 3.7vw, 51px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 14px 0 22px;
}
.fs-ai-copy p {
  max-width: 590px;
  font-size: 16px;
  line-height: 1.8;
  color: #d8ebe2;
}
.fs-ai-checks {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 17px;
  font-size: 15px;
}
.fs-ai-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fs-ai-checks i {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--fs-lime);
  color: #154331;
  font-size: 13px;
}
.fs-ai-scene {
  position: relative;
  display: flex;
  min-height: 530px;
  padding: 15px 72px 15px 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.fs-ai-scene > .fs-demo-label {
  position: absolute;
  right: 0;
  top: -12px;
  color: #c3d6cc;
}
.fs-ai-demo {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(380px, 100%);
  height: 510px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d4dde5;
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 15px 35px #001b2450;
}
.fs-ai-demo-secondary {
  position: absolute;
  z-index: 0;
  top: 43px;
  right: 0;
  width: 49%;
  height: calc(100% - 53px);
  opacity: 0.64;
  box-shadow: none;
  pointer-events: none;
}
.fs-ai-demo-secondary .fs-ai-demo-head {
  background: #3c9140;
}
.fs-ai-demo-secondary .fs-ai-conversation {
  padding: 14px;
}
.fs-ai-demo-secondary .fs-floe-message {
  font-size: 10px;
}
.fs-ai-demo-head {
  flex: 0 0 72px;
  height: 72px;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 0;
  color: #fff;
  background: #48ad40;
}
.fs-floe-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 25px;
}
.fs-floe-identity {
  display: grid;
  gap: 2px;
}
.fs-ai-demo-head .fs-floe-identity strong {
  font-size: 14px;
}
.fs-ai-demo-head .fs-floe-identity small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.fs-floe-identity small i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.fs-floe-window-actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
}
.fs-floe-window-actions i {
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}
.fs-ai-conversation {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding: 16px;
  background: #f8fafc;
}
.fs-floe-greeting {
  padding: 11px 13px 9px;
  border: 1px solid #d7e0e9;
  border-radius: 9px;
  color: #405169;
  background: #fff;
  box-shadow: 0 2px 4px rgba(40, 56, 74, 0.08);
}
.fs-floe-greeting p {
  margin: 0;
  font-size: 15px;
  line-height: 1.42;
}
.fs-floe-greeting time {
  display: block;
  margin-top: 7px;
  color: #8da0bd;
  font-size: 12px;
}
.fs-floe-message {
  padding: 10px 12px;
  border-radius: 9px;
  color: #405169;
  font-size: 11px;
  line-height: 1.45;
}
.fs-floe-message.is-user {
  max-width: 84%;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  background: #e9f1ff;
}
.fs-floe-message.is-assistant {
  border: 1px solid #d7e0e9;
  border-bottom-left-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(40, 56, 74, 0.06);
}
.fs-floe-message p {
  margin: 0;
}
.fs-floe-results {
  display: grid;
  margin: 9px 0;
  overflow: hidden;
  border: 1px solid #e0e7eb;
  border-radius: 6px;
}
.fs-floe-results > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 7px;
  border-bottom: 1px solid #e8edef;
  font-size: 9px;
}
.fs-floe-results > div:last-child {
  border-bottom: 0;
}
.fs-floe-results .is-best {
  color: #24523a;
  background: #eaf6ed;
}
.fs-floe-results span {
  color: #687888;
}
.fs-floe-results b {
  color: #24874b;
  font-size: 8px;
  font-weight: 700;
}
.fs-floe-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.fs-floe-suggestions span {
  padding: 5px 8px;
  border: 1px solid #79bf7b;
  border-radius: 999px;
  color: #24874b;
  background: #fff;
  font-size: 8px;
  font-weight: 700;
}
.fs-floe-suggestions span:first-child {
  color: #fff;
  background: #48ad40;
}
.fs-floe-composer {
  display: flex;
  flex: 0 0 68px;
  gap: 8px;
  align-items: center;
  padding: 11px 12px;
  border-top: 1px solid #d9e1e8;
  background: #fff;
}
.fs-floe-composer > span {
  display: flex;
  height: 44px;
  flex: 1;
  align-items: center;
  padding: 0 14px;
  border: 2px solid #48ad40;
  border-radius: 7px;
  color: #8fa0b9;
  font-size: 14px;
}
.fs-floe-composer .fs-floe-send,
.fs-floe-composer button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: #91cd8d;
  font-size: 19px;
  cursor: default;
}
.fs-ai-conversation .fs-ui-table {
  font-size: 10px;
  margin: 14px 0;
}
.fs-ai-conversation .fs-ui-table td,
.fs-ai-conversation .fs-ui-table th {
  padding: 8px;
}
@media (max-width: 1180px) {
  :is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai) .container {
    width: calc(100% - 48px);
  }
  .fc-hero-grid {
    gap: 35px;
  }
  #fc-title {
    font-size: 44px;
  }
  .fs-ai-grid {
    gap: 40px;
  }
  .fs-expertise-grid {
    gap: 18px;
  }
  .fs-insight-card {
    gap: 15px;
    padding: 16px;
  }
}
@media (max-width: 900px) {
  .fc-hero {
    padding: 52px 0;
  }
  .fc-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .fc-hero-copy {
    max-width: 620px;
  }
  #fc-title {
    font-size: 48px;
    max-width: 640px;
  }
  .fc-hero-lead {
    max-width: 540px;
  }
  .fc-hero-visual {
    width: 100%;
    max-width: 800px;
  }
  .fc-hero .fc-window {
    transform: none;
  }
  .fs-range-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fs-expertise-grid {
    grid-template-columns: 1fr;
  }
  .fs-insight-stack {
    grid-template-columns: 1fr 1fr;
  }
  .fs-ai-grid,
  .fs-insight-card {
    grid-template-columns: 1fr;
  }
  .fs-ai-scene {
    width: min(620px, 100%);
    margin: auto;
  }
  .fs-ai-demo {
    max-width: 460px;
  }
}
@media (max-width: 600px) {
  :is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai) .container {
    width: calc(100% - 36px);
  }
  #fc-title {
    font-size: 38px;
  }
  .fc-hero {
    padding: 44px 0;
  }
  .fc-hero-lead {
    font-size: 16px;
  }
  .fc-hero-actions {
    gap: 20px;
  }
  :is(.fs-expertise, .fs-ai) .fs-preview {
    padding: 12px;
    font-size: 10px;
  }
  :is(.fs-expertise, .fs-ai) .fs-preview-head {
    padding-bottom: 10px;
  }
  :is(.fs-expertise, .fs-ai) .fs-preview-title {
    margin: 12px 0;
  }
  :is(.fs-expertise, .fs-ai) .fs-preview-title strong {
    font-size: 11px;
  }
  :is(.fs-expertise, .fs-ai) .fs-preview .fs-ui-table {
    font-size: 9px;
  }
  :is(.fs-expertise, .fs-ai) .fs-preview .fs-ui-table td,
  :is(.fs-expertise, .fs-ai) .fs-preview .fs-ui-table th {
    padding: 7px 6px;
  }
  :is(.fs-expertise, .fs-ai) .fs-preview small {
    font-size: 8px;
  }
  :is(.fs-expertise, .fs-ai) .fs-preview .fs-bars {
    height: 75px;
  }
  .fs-range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .fs-range-card {
    padding: 10px 13px 18px;
  }
  .fs-range-card h3 {
    font-size: 16px;
  }
  .fs-range-card p {
    font-size: 12px;
  }
  .fs-breadth,
  .fs-expertise {
    padding: 48px 0;
  }
  .fs-insight-stack {
    grid-template-columns: 1fr;
  }
  .fs-insight-card {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .fs-editor-card .fs-preview {
    padding: 16px;
  }
  .fs-editor-card .fs-preview-head small {
    display: none;
  }
  .fs-editor-card .fs-ui-table {
    font-size: 11px;
  }
  .fs-ai {
    padding: 50px 0;
  }
  .fs-ai-copy h2 {
    font-size: 36px;
  }
  .fs-ai-scene {
    min-height: 500px;
    padding: 20px 0 10px;
  }
  .fs-ai-demo-head > small,
  .fs-ai-demo-secondary {
    display: none;
  }
  .fs-ai-conversation {
    padding: 14px;
  }
  .fs-ai-conversation .fs-ui-table {
    font-size: 9px;
  }
  .fs-ai-conversation .fs-ui-table td,
  .fs-ai-conversation .fs-ui-table th {
    padding: 7px 5px;
  }
  :is(.fs-expertise, .fs-ai) .fs-table-wrap {
    max-width: 100%;
  }
}
.fs-range-image {
  background-size: 500% auto;
  aspect-ratio: 4/5;
}
:is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai) [hidden] {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  :is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai) *,
  :is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai) ::after,
  :is(.fc-hero, .fs-breadth, .fs-expertise, .fs-ai) ::before {
    animation: none !important;
    transition: none !important;
  }
}

.fc-hero {
  min-height: 100vh;
}

.fc-hero-slideshow {
  border-radius: 22px;
}

.fc-stage-images {
  border-radius: 22px;
}

.fs-ai-capabilities {
  grid-template-columns:1fr;
  column-gap:0;
}

.fs-ai-capabilities {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  column-gap:64px;
  border-top:1px solid rgba(255,255,255,.22);
}
.fs-ai-capability {
  display:grid;
  grid-template-columns:40px minmax(0,1fr);
  gap:18px;
  padding:30px 0;
  border-bottom:1px solid rgba(255,255,255,.22);
}
.fs-ai-capability>i {
  padding-top:3px;
  color:var(--fs-lime);
  font-size:22px;
  text-align:center;
}
.fs-ai-capability h3 {
  margin:0 0 9px;
  font-size:19px;
  line-height:1.3;
  letter-spacing:-.025em;
}
.fs-ai-capability p {
  max-width:480px;
  margin:0;
  color:rgba(255,255,255,.64);
  font-size:13px;
  line-height:1.65;
}

.fs-ai-grid>.fs-ai-capabilities {
  grid-column:1 / -1;
  margin-top:0;
}

.fs-ai-demo.is-chat-ready [data-chat-step]:not(.is-visible),
.fs-ai-demo.is-chat-ready [data-chat-detail]:not(.is-visible) {
  display:none;
}
.fs-ai-demo.is-chat-ready [data-chat-step].is-visible,
.fs-ai-demo.is-chat-ready [data-chat-detail].is-visible {
  animation:fs-chat-arrive .42s cubic-bezier(.2,.75,.25,1) both;
}
.fs-floe-typing {
  width:max-content;
  align-items:center;
  gap:4px;
  padding:11px 13px;
  border:1px solid #d7e0e9;
  border-radius:9px 9px 9px 3px;
  background:#fff;
  box-shadow:0 2px 4px rgba(40,56,74,.06);
}
.fs-floe-typing:not([hidden]) {
  display:flex;
  animation:fs-chat-arrive .3s ease-out both;
}
.fs-floe-typing span {
  width:6px;
  height:6px;
  border-radius:50%;
  background:#7e9189;
  animation:fs-chat-typing .9s ease-in-out infinite;
}
.fs-floe-typing span:nth-child(2) {
  animation-delay:.14s;
}
.fs-floe-typing span:nth-child(3) {
  animation-delay:.28s;
}
@keyframes fs-chat-arrive {
  from {
    opacity:0;
    transform:translateY(8px) scale(.985);
  }
  to {
    opacity:1;
    transform:none;
  }
}
@keyframes fs-chat-typing {
  0%,
  60%,
  100% {
    opacity:.38;
    transform:translateY(0);
  }
  30% {
    opacity:1;
    transform:translateY(-3px);
  }
}

@keyframes fc-flow-current {
  to {
    stroke-dashoffset: -1;
  }
}

.fc-flow-field {
  position:absolute;
  z-index:0;
  inset:-14% -8%;
  overflow:hidden;
  opacity:.66;
  pointer-events:none;
}
.fc-flow-stream {
  fill:none;
  stroke:#d9ff9d;
  stroke-dasharray:.1 .055 .025 .045;
  animation:fc-flow-current 18s linear infinite;
}

.fc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.fc-hero-grid {
  position: relative;
  z-index: 2;
}
.fc-flow-field {
  position: absolute;
  z-index: 0;
  inset: -14% -8%;
  overflow: hidden;
  opacity: .66;
  pointer-events: none;
}
.fc-flow-field svg {
  width: 100%;
  height: 100%;
}
.fc-flow-stream {
  fill: none;
  stroke: #d9ff9d;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: .1 .055 .025 .045;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 7px rgba(218, 255, 157, .18));
  animation: fc-flow-current 18s linear infinite;
}
.fc-flow-stream-one {
  opacity: .44;
  stroke-width: .7;
  animation-duration: 19s;
}
.fc-flow-stream-two {
  opacity: .28;
  stroke-width: 1.8;
  stroke-dasharray: .045 .04 .14 .075;
  animation-duration: 24s;
  animation-direction: reverse;
}
.fc-flow-stream-three {
  opacity: .32;
  stroke: #fff;
  stroke-width: .55;
  stroke-dasharray: .18 .1;
  animation-duration: 29s;
}
.fc-flow-stream-four {
  opacity: .16;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-dasharray: .015 .07;
  animation-duration: 14s;
  animation-direction: reverse;
}
.fc-flow-stream-five {
  opacity: .3;
  stroke-width: 1.15;
  stroke-dasharray: .07 .11 .02 .06;
  animation-duration: 21s;
  animation-direction: reverse;
}
.fc-flow-stream-six {
  opacity: .36;
  stroke: #fff;
  stroke-width: .5;
  stroke-dasharray: .025 .035 .11 .09;
  animation-duration: 16s;
}
.fc-flow-stream-seven {
  opacity: .23;
  stroke-width: 1.55;
  stroke-dasharray: .16 .13;
  animation-duration: 32s;
}
.fc-flow-stream-eight {
  opacity: .3;
  stroke: #fff;
  stroke-width: .75;
  stroke-dasharray: .035 .08;
  animation-duration: 17s;
  animation-direction: reverse;
}
.fc-flow-stream-nine {
  opacity: .14;
  stroke-width: 2.15;
  stroke-dasharray: .22 .09 .025 .055;
  animation-duration: 27s;
}
@keyframes fc-flow-current {
  to {
    stroke-dashoffset: -1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fc-flow-stream {
    animation: none;
  }
}