:root {
  color-scheme: dark;
  --fit-black: #050606;
  --fit-ink: #0b0d0c;
  --fit-panel: #101311;
  --fit-panel-soft: #161a17;
  --fit-white: #f3f5ef;
  --fit-muted: #a6ada7;
  --fit-line: rgba(243, 245, 239, 0.14);
  --fit-lime: #caff00;
  --fit-lime-dark: #a8d500;
  --fit-orange: #ff6b33;
  --fit-container: 1240px;
  --fit-nav-height: 82px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--fit-nav-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--fit-black);
  color: var(--fit-white);
  font-family: inherit;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

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

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

svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--fit-lime);
  outline-offset: 4px;
}

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

.fit-skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--fit-lime);
  color: #050606;
  font-weight: 800;
  transform: translateY(-150%);
}

.fit-skip-link:focus {
  transform: translateY(0);
}

.fit-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--fit-nav-height);
  border-bottom: 1px solid var(--fit-line);
  background: rgba(5, 6, 6, 0.82);
  backdrop-filter: blur(18px) saturate(120%);
}

.fit-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 100%;
  align-items: center;
  gap: 32px;
}

.fit-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
}

.fit-brand-bolt {
  position: relative;
  width: 32px;
  height: 38px;
  flex: 0 0 auto;
  background: var(--fit-lime);
  clip-path: polygon(45% 0, 100% 0, 66% 41%, 96% 41%, 28% 100%, 45% 55%, 10% 55%);
  filter: drop-shadow(0 0 15px rgba(202, 255, 0, 0.32));
}

.fit-brand-copy {
  display: grid;
  line-height: 1;
}

.fit-brand-copy strong {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.fit-brand-copy small {
  margin-top: 5px;
  color: var(--fit-muted);
  font-family: "DIN Alternate", "Helvetica Neue", sans-serif;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.fit-nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #cdd2cc;
  font-size: 0.88rem;
  font-weight: 650;
}

.fit-nav-links a,
.fit-footer-links a {
  transition: color 180ms ease;
}

.fit-nav-links a:hover,
.fit-nav-links a:focus-visible,
.fit-footer-links a:hover,
.fit-footer-links a:focus-visible {
  color: var(--fit-lime);
}

.fit-nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--fit-lime);
  background: var(--fit-lime);
  color: #050606;
  font-size: 0.86rem;
  font-weight: 850;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.fit-nav-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2;
}

.fit-nav-cta:hover,
.fit-nav-cta:focus-visible {
  background: transparent;
  color: var(--fit-lime);
  transform: translateY(-2px);
}

.fit-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--fit-nav-height) + 82px) 0 92px;
  isolation: isolate;
}

.fit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 75% 46%, rgba(202, 255, 0, 0.13), transparent 28rem),
    radial-gradient(circle at 4% 78%, rgba(255, 107, 51, 0.07), transparent 30rem),
    linear-gradient(130deg, #050606 0%, #0b0e0c 52%, #050606 100%);
}

.fit-grid-lines {
  position: absolute;
  inset: var(--fit-nav-height) 0 0;
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.fit-signal {
  position: absolute;
  z-index: -1;
  aspect-ratio: 1;
  border: 1px solid rgba(202, 255, 0, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.fit-signal::before,
.fit-signal::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
}

.fit-signal::before {
  inset: 14%;
}

.fit-signal::after {
  inset: 28%;
}

.fit-signal-one {
  right: -260px;
  top: 10%;
  width: 720px;
}

.fit-signal-two {
  left: -220px;
  bottom: -340px;
  width: 620px;
  border-color: rgba(255, 107, 51, 0.11);
}

.fit-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.76fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
}

.fit-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 10px;
}

.fit-eyebrow,
.fit-section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--fit-lime);
  font-family: "DIN Alternate", "Helvetica Neue", sans-serif;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.fit-eyebrow span {
  width: 42px;
  height: 3px;
  background: var(--fit-lime);
  box-shadow: 12px 0 0 rgba(202, 255, 0, 0.3);
}

.fit-hero h1,
.fit-section-heading h2,
.fit-download h2 {
  margin: 0;
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.fit-hero h1 {
  position: relative;
  width: max-content;
  font-size: clamp(7rem, 12vw, 11.5rem);
  text-shadow: 10px 10px 0 rgba(202, 255, 0, 0.08);
}

.fit-hero h1::after {
  content: "";
  position: absolute;
  right: -0.24em;
  top: -0.04em;
  width: 0.19em;
  height: 0.95em;
  background: var(--fit-lime);
  clip-path: polygon(54% 0, 100% 0, 63% 43%, 100% 43%, 22% 100%, 43% 56%, 0 56%);
  filter: drop-shadow(0 0 24px rgba(202, 255, 0, 0.25));
}

.fit-hero-slogan {
  margin: 22px 0 18px;
  color: #ffffff;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.fit-hero-description {
  max-width: 660px;
  margin: 0;
  color: #b8bdb7;
  font-size: 1.06rem;
  line-height: 1.95;
}

.fit-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.fit-button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.fit-button:hover,
.fit-button:focus-visible {
  transform: translateY(-3px);
}

.fit-button-primary {
  min-width: 218px;
  justify-content: flex-start;
  background: var(--fit-lime);
  color: #050606;
  box-shadow: 0 20px 50px rgba(151, 193, 0, 0.17);
}

.fit-button-primary:hover,
.fit-button-primary:focus-visible {
  box-shadow: 0 24px 60px rgba(151, 193, 0, 0.28);
}

.fit-apple-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.fit-button-primary span {
  display: grid;
  font-size: 1rem;
  line-height: 1.15;
}

.fit-button-primary small,
.fit-download-button small {
  margin-bottom: 4px;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.fit-button-ghost {
  color: #f0f3ee;
  border-color: rgba(243, 245, 239, 0.28);
  background: rgba(243, 245, 239, 0.035);
}

.fit-button-ghost:hover,
.fit-button-ghost:focus-visible {
  border-color: var(--fit-lime);
  background: rgba(202, 255, 0, 0.06);
}

.fit-button-ghost svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--fit-lime);
  stroke-linecap: square;
  stroke-width: 2;
}

.fit-capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #818881;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  list-style: none;
}

.fit-capability-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.fit-capability-list li::before {
  content: "+";
  color: var(--fit-lime);
  font-size: 1rem;
}

.fit-hero-visual {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
  animation: fit-rise 760ms 120ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.fit-hero-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(243, 245, 239, 0.23);
  box-shadow:
    22px 22px 0 rgba(202, 255, 0, 0.1),
    0 35px 90px rgba(0, 0, 0, 0.52);
  clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 100% 100%, 0 100%);
}

.fit-hero-frame::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-left: 1px solid rgba(243, 245, 239, 0.35);
  background: rgba(202, 255, 0, 0.14);
}

.fit-hero-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fit-hero-frame-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(5, 6, 6, 0.88) 100%),
    linear-gradient(90deg, rgba(5, 6, 6, 0.18), transparent 38%);
}

.fit-hero-frame-label {
  position: absolute;
  inset: auto 26px 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.fit-hero-frame-label > span {
  color: var(--fit-lime);
  font-family: "DIN Alternate", "Helvetica Neue", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.fit-hero-frame-label p {
  margin: 0;
  color: #d9ddd7;
  font-size: 0.8rem;
  text-align: right;
}

.fit-hero-frame-label strong {
  color: #fff;
  font-size: 1rem;
}

.fit-floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(243, 245, 239, 0.2);
  background: rgba(9, 11, 10, 0.9);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.fit-floating-card div {
  display: grid;
}

.fit-floating-card small {
  color: var(--fit-lime);
  font-family: "DIN Alternate", "Helvetica Neue", sans-serif;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.fit-floating-card strong {
  margin-top: 3px;
  color: #eef1ec;
  font-size: 0.76rem;
}

.fit-floating-ai {
  left: -48px;
  top: 13%;
}

.fit-live-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fit-lime);
  box-shadow: 0 0 0 7px rgba(202, 255, 0, 0.08);
}

.fit-live-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid var(--fit-lime);
  border-radius: 50%;
  animation: fit-pulse 2.2s infinite ease-out;
}

.fit-floating-record {
  right: -38px;
  bottom: 14%;
}

.fit-floating-record svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--fit-lime);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.fit-scroll-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(243, 245, 239, 0.42);
  font-family: "DIN Alternate", "Helvetica Neue", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
}

.fit-scroll-note span {
  width: 38px;
  height: 1px;
  background: var(--fit-lime);
}

.fit-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(5, 6, 6, 0.6);
  background: var(--fit-lime);
  color: #050606;
}

.fit-marquee > div {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  padding: 18px 32px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.fit-marquee i {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
}

.fit-features {
  padding: clamp(100px, 11vw, 160px) 0;
  background:
    linear-gradient(180deg, rgba(202, 255, 0, 0.035), transparent 22rem),
    #080a09;
}

.fit-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 66px;
}

.fit-section-heading h2 {
  font-size: clamp(3.8rem, 7.4vw, 7rem);
}

.fit-section-heading > p {
  margin: 0 0 8px;
  color: #9fa69f;
  font-size: 1rem;
  line-height: 1.9;
}

.fit-section-index {
  margin-bottom: 28px;
}

.fit-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.fit-feature-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--fit-line);
  background: var(--fit-panel);
  isolation: isolate;
  transition:
    transform 260ms ease,
    border-color 260ms ease;
}

.fit-feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(202, 255, 0, 0.44);
}

.fit-feature-topline {
  position: absolute;
  inset: 24px 26px auto;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(243, 245, 239, 0.66);
  font-family: "DIN Alternate", "Helvetica Neue", sans-serif;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.fit-feature-topline span:first-child {
  color: var(--fit-lime);
  font-size: 0.88rem;
}

.fit-feature-copy {
  position: absolute;
  z-index: 4;
}

.fit-feature-kicker {
  margin: 0 0 10px;
  color: var(--fit-lime);
  font-size: 0.74rem;
  font-weight: 750;
}

.fit-feature-copy h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
}

.fit-feature-copy > p:last-child {
  max-width: 460px;
  margin: 0;
  color: #a9afa9;
  font-size: 0.94rem;
  line-height: 1.8;
}

.fit-feature-ai {
  grid-column: span 7;
  background:
    radial-gradient(circle at 77% 48%, rgba(202, 255, 0, 0.13), transparent 19rem),
    linear-gradient(145deg, #0e120f, #070908 72%);
}

.fit-feature-ai::before {
  content: "AI";
  position: absolute;
  left: 24px;
  top: 50%;
  color: rgba(243, 245, 239, 0.022);
  font-family: "DIN Condensed", Impact, sans-serif;
  font-size: 23rem;
  font-weight: 950;
  line-height: 0.7;
  transform: translateY(-44%);
}

.fit-feature-ai .fit-feature-copy {
  left: 34px;
  right: 42%;
  bottom: 38px;
}

.fit-feature-ai > img {
  position: absolute;
  right: -2%;
  bottom: -2%;
  z-index: 2;
  width: 51%;
  max-height: 88%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(-18px 18px 35px rgba(0, 0, 0, 0.42));
}

.fit-feature-tag {
  position: absolute;
  right: -55px;
  top: 128px;
  z-index: 3;
  padding: 8px 64px;
  background: var(--fit-lime);
  color: #050606;
  font-family: "DIN Alternate", "Helvetica Neue", sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  transform: rotate(38deg);
}

.fit-feature-library {
  grid-column: span 5;
}

.fit-feature-library > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fit-feature-library:hover > img {
  transform: scale(1.035);
}

.fit-feature-image-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.52), transparent 27%, rgba(5, 6, 6, 0.92) 100%),
    linear-gradient(90deg, rgba(5, 6, 6, 0.14), transparent);
}

.fit-feature-library .fit-feature-copy {
  inset: auto 34px 36px;
}

.fit-feature-library .fit-feature-copy > p:last-child {
  color: #c8cdc7;
}

.fit-feature-course {
  grid-column: span 5;
  min-height: 560px;
  background:
    linear-gradient(135deg, rgba(255, 107, 51, 0.08), transparent 45%),
    #151815;
}

.fit-feature-course::after {
  content: "03";
  position: absolute;
  right: -28px;
  bottom: -45px;
  color: rgba(243, 245, 239, 0.025);
  font-family: "DIN Condensed", Impact, sans-serif;
  font-size: 20rem;
  font-weight: 950;
  line-height: 1;
}

.fit-feature-course .fit-feature-copy {
  left: 34px;
  right: 35%;
  bottom: 36px;
}

.fit-feature-course > img {
  position: absolute;
  right: -4%;
  bottom: -2%;
  z-index: 2;
  width: 52%;
  max-height: 76%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(-18px 24px 30px rgba(0, 0, 0, 0.42));
}

.fit-feature-data {
  grid-column: span 7;
  min-height: 560px;
  background:
    linear-gradient(115deg, rgba(202, 255, 0, 0.06), transparent 40%),
    #0b0d0c;
}

.fit-feature-data .fit-feature-copy {
  left: 34px;
  top: 124px;
  width: 48%;
}

.fit-feature-data > img {
  position: absolute;
  right: 5%;
  bottom: 0;
  z-index: 3;
  width: 35%;
  max-height: 76%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(-12px 20px 26px rgba(0, 0, 0, 0.42));
}

.fit-data-chart {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 36px;
  display: flex;
  height: 108px;
  align-items: flex-end;
  gap: 11px;
  opacity: 0.78;
}

.fit-data-chart::before,
.fit-data-chart::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(243, 245, 239, 0.08);
}

.fit-data-chart::before {
  top: 33%;
}

.fit-data-chart::after {
  top: 66%;
}

.fit-data-chart span {
  width: 32px;
  height: var(--bar);
  border-top: 2px solid var(--fit-lime);
  background: linear-gradient(to top, rgba(202, 255, 0, 0.06), rgba(202, 255, 0, 0.34));
}

.fit-journey {
  position: relative;
  padding: clamp(100px, 11vw, 160px) 0;
  overflow: hidden;
  background: var(--fit-lime);
  color: #050606;
}

.fit-journey::before {
  content: "";
  position: absolute;
  right: -7vw;
  top: -12vw;
  width: 38vw;
  aspect-ratio: 1;
  border: 1px solid rgba(5, 6, 6, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 5vw rgba(5, 6, 6, 0.035),
    0 0 0 10vw rgba(5, 6, 6, 0.025);
}

.fit-section-heading-light .fit-section-index,
.fit-section-heading-light > p {
  color: rgba(5, 6, 6, 0.68);
}

.fit-journey-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-block: 1px solid rgba(5, 6, 6, 0.26);
  list-style: none;
}

.fit-journey-list li {
  position: relative;
  min-height: 390px;
  padding: 28px 34px 38px;
}

.fit-journey-list li + li {
  border-left: 1px solid rgba(5, 6, 6, 0.26);
}

.fit-journey-number {
  color: rgba(5, 6, 6, 0.55);
  font-family: "DIN Alternate", "Helvetica Neue", sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.fit-journey-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 72px 0 46px;
  place-items: center;
  border: 1px solid rgba(5, 6, 6, 0.7);
  border-radius: 50%;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.fit-journey-list li:hover .fit-journey-icon {
  background: #050606;
  color: var(--fit-lime);
  transform: rotate(-8deg) scale(1.05);
}

.fit-journey-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.6;
}

.fit-journey-list h3 {
  margin: 0 0 13px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.fit-journey-list p {
  max-width: 270px;
  margin: 0;
  color: rgba(5, 6, 6, 0.68);
  font-size: 0.92rem;
  line-height: 1.8;
}

.fit-download {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  border-bottom: 1px solid var(--fit-line);
  background: #080a09;
}

.fit-download-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: repeating-linear-gradient(118deg, transparent 0 32px, var(--fit-lime) 33px 34px, transparent 35px 82px);
  mask-image: linear-gradient(90deg, transparent, black 42%, black 68%, transparent);
}

.fit-download-inner {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.fit-download-icon {
  width: 130px;
  height: 130px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(243, 245, 239, 0.16);
  box-shadow: 12px 12px 0 rgba(202, 255, 0, 0.1);
}

.fit-download-copy > p {
  margin: 0 0 14px;
  color: var(--fit-lime);
  font-family: "DIN Alternate", "Helvetica Neue", sans-serif;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.fit-download h2 {
  font-size: clamp(3rem, 5.6vw, 5.7rem);
}

.fit-download-button {
  display: flex;
  min-width: 226px;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid var(--fit-lime);
  background: var(--fit-lime);
  color: #050606;
  font-weight: 850;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.fit-download-button:hover,
.fit-download-button:focus-visible {
  background: transparent;
  color: var(--fit-lime);
  transform: translateY(-3px);
}

.fit-download-button span {
  display: grid;
  line-height: 1.12;
}

.fit-download-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2;
}

.fit-footer {
  background: #050606;
}

.fit-footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding: 72px 0 64px;
}

.fit-footer-brand {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.fit-footer-main > div > p {
  max-width: 460px;
  margin: 18px 0 0;
  color: #7f867f;
  font-size: 0.92rem;
  line-height: 1.8;
}

.fit-footer-links {
  display: grid;
  grid-template-columns: auto auto;
  gap: 70px;
}

.fit-footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
  min-width: 142px;
}

.fit-footer-links strong {
  margin-bottom: 6px;
  color: #eef1ec;
  font-size: 0.8rem;
}

.fit-footer-links a {
  color: #858c85;
  font-size: 0.82rem;
}

.fit-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--fit-line);
  color: #666d66;
  font-size: 0.72rem;
}

@keyframes fit-rise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fit-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.75);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (max-width: 1060px) {
  .fit-nav-inner {
    grid-template-columns: 1fr auto;
  }

  .fit-nav-links {
    display: none;
  }

  .fit-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
    gap: 52px;
  }

  .fit-floating-ai {
    left: -24px;
  }

  .fit-floating-record {
    right: -20px;
  }

  .fit-feature-ai .fit-feature-copy,
  .fit-feature-course .fit-feature-copy {
    right: 37%;
  }
}

@media (max-width: 860px) {
  .fit-container {
    width: min(calc(100% - 40px), var(--fit-container));
  }

  .fit-hero {
    padding-top: calc(var(--fit-nav-height) + 64px);
  }

  .fit-hero-grid {
    grid-template-columns: 1fr;
    gap: 74px;
  }

  .fit-hero-copy {
    max-width: 690px;
  }

  .fit-hero-visual {
    width: min(84%, 520px);
    justify-self: center;
  }

  .fit-scroll-note {
    display: none;
  }

  .fit-marquee > div {
    justify-content: flex-start;
    overflow-x: hidden;
  }

  .fit-section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fit-section-heading > p {
    max-width: 610px;
  }

  .fit-feature-card,
  .fit-feature-ai,
  .fit-feature-library,
  .fit-feature-course,
  .fit-feature-data {
    grid-column: 1 / -1;
  }

  .fit-journey-list {
    grid-template-columns: 1fr;
  }

  .fit-journey-list li {
    display: grid;
    min-height: 0;
    grid-template-columns: 70px 84px 1fr;
    gap: 22px;
    align-items: center;
    padding: 30px 0;
  }

  .fit-journey-list li + li {
    border-top: 1px solid rgba(5, 6, 6, 0.26);
    border-left: 0;
  }

  .fit-journey-number {
    padding-left: 4px;
  }

  .fit-journey-icon {
    margin: 0;
  }

  .fit-journey-list h3 {
    margin-bottom: 7px;
  }

  .fit-journey-list p {
    grid-column: 3;
  }

  .fit-download-inner {
    grid-template-columns: 110px 1fr;
  }

  .fit-download-icon {
    width: 110px;
    height: 110px;
  }

  .fit-download-button {
    grid-column: 2;
    width: max-content;
  }
}

@media (max-width: 620px) {
  :root {
    --fit-nav-height: 70px;
  }

  .fit-container {
    width: min(calc(100% - 28px), var(--fit-container));
  }

  .fit-brand-copy small {
    display: none;
  }

  .fit-brand-bolt {
    width: 26px;
    height: 32px;
  }

  .fit-nav-inner {
    gap: 14px;
  }

  .fit-nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.75rem;
  }

  .fit-nav-cta svg {
    display: none;
  }

  .fit-hero {
    min-height: auto;
    padding: calc(var(--fit-nav-height) + 52px) 0 76px;
  }

  .fit-grid-lines {
    background-size: 48px 48px;
  }

  .fit-eyebrow {
    margin-bottom: 16px;
    font-size: 0.65rem;
  }

  .fit-hero h1 {
    font-size: clamp(5.3rem, 29vw, 7.3rem);
  }

  .fit-hero-slogan {
    margin-top: 18px;
    font-size: 1.55rem;
  }

  .fit-hero-description {
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .fit-hero-actions {
    display: grid;
  }

  .fit-button {
    width: 100%;
  }

  .fit-capability-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
  }

  .fit-hero-visual {
    width: calc(100% - 22px);
  }

  .fit-hero-frame {
    box-shadow:
      12px 12px 0 rgba(202, 255, 0, 0.1),
      0 24px 60px rgba(0, 0, 0, 0.52);
  }

  .fit-floating-card {
    padding: 10px 11px;
  }

  .fit-floating-card strong {
    font-size: 0.66rem;
  }

  .fit-floating-ai {
    left: -10px;
    top: 11%;
  }

  .fit-floating-record {
    right: -10px;
    bottom: 12%;
  }

  .fit-floating-record svg {
    width: 24px;
    height: 24px;
  }

  .fit-marquee > div {
    gap: 16px;
    padding-inline: 18px;
    font-size: 0.72rem;
  }

  .fit-features,
  .fit-journey {
    padding: 86px 0;
  }

  .fit-section-heading {
    margin-bottom: 40px;
  }

  .fit-section-heading h2 {
    font-size: clamp(3.25rem, 17vw, 4.6rem);
  }

  .fit-feature-card,
  .fit-feature-course,
  .fit-feature-data {
    min-height: 590px;
  }

  .fit-feature-topline {
    inset: 20px 20px auto;
  }

  .fit-feature-ai .fit-feature-copy,
  .fit-feature-course .fit-feature-copy,
  .fit-feature-data .fit-feature-copy,
  .fit-feature-library .fit-feature-copy {
    inset: auto 22px 24px;
    width: auto;
  }

  .fit-feature-ai > img {
    right: -7%;
    bottom: 25%;
    width: 72%;
    max-height: 64%;
  }

  .fit-feature-library .fit-feature-copy {
    bottom: 24px;
  }

  .fit-feature-course > img {
    right: -12%;
    bottom: 24%;
    width: 72%;
    max-height: 62%;
  }

  .fit-feature-data > img {
    right: -5%;
    bottom: 22%;
    width: 54%;
    max-height: 48%;
  }

  .fit-data-chart {
    left: 22px;
    right: 22px;
    bottom: 178px;
    height: 90px;
  }

  .fit-data-chart span {
    width: 23px;
  }

  .fit-journey-list li {
    grid-template-columns: 48px 68px 1fr;
    gap: 15px;
  }

  .fit-journey-icon {
    width: 62px;
    height: 62px;
  }

  .fit-journey-icon svg {
    width: 30px;
    height: 30px;
  }

  .fit-journey-list h3 {
    font-size: 1.35rem;
  }

  .fit-journey-list p {
    font-size: 0.82rem;
  }

  .fit-download {
    padding: 72px 0;
  }

  .fit-download-inner {
    grid-template-columns: 74px 1fr;
    gap: 26px 20px;
  }

  .fit-download-icon {
    width: 74px;
    height: 74px;
    box-shadow: 7px 7px 0 rgba(202, 255, 0, 0.1);
  }

  .fit-download h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .fit-download-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .fit-footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 58px 0 48px;
  }

  .fit-footer-links {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fit-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
