.ftfv-page {
  --ftfv-panel: #141416;
  --ftfv-soft: #101012;
  --ftfv-line: rgba(255, 255, 255, .09);
  --ftfv-gold: #e8bd5f;
  --ftfv-red: #cf3a2d;
  --ftfv-green: #68bd83;
  width: 100%;
  color: #f7f4ee;
}

.ftfv-page * { box-sizing: border-box; }
.ftfv-page h1,
.ftfv-page h2,
.ftfv-page h3 { color: #f7f4ee; }
.ftfv-page p { color: #bbb7b0; }

.ftfv-page code,
.ftfv-page kbd {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 5px;
  color: #f2d78f;
  background: #0b0b0d;
  font-family: Consolas, Monaco, monospace;
}

.ftfv-page code { padding: 2px 6px; }

.ftfv-page kbd {
  display: inline-grid;
  min-width: 30px;
  min-height: 28px;
  place-items: center;
  padding: 3px 8px;
  font-weight: 900;
  box-shadow: inset 0 -2px rgba(255, 255, 255, .06);
}

.ftfv-kicker {
  margin: 0 0 10px;
  color: var(--ftfv-gold) !important;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ftfv-hero {
  max-width: 1080px;
  padding: 32px 0 92px;
}

.ftfv-hero h1 {
  max-width: 900px;
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.ftfv-hero-copy {
  max-width: 790px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.82;
}

.ftfv-version-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--ftfv-line);
  border-radius: 10px;
  background: var(--ftfv-line);
}

.ftfv-version-card > div {
  display: grid;
  gap: 7px;
  padding: 22px;
  background: var(--ftfv-panel);
}

.ftfv-version-card span {
  color: #88848a;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ftfv-version-card strong { font-size: .96rem; }

.ftfv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.ftfv-hero-actions a,
.ftfv-download,
.ftfv-help a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid #dfad4e;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(180deg, #bd352a, #8f211c);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}

.ftfv-hero-actions a:hover,
.ftfv-download:hover,
.ftfv-help a:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.ftfv-hero-actions a.is-secondary {
  border-color: rgba(255, 255, 255, .16);
  background: #151517;
}

.ftfv-guide {
  position: relative;
  display: grid;
  border-top: 1px solid var(--ftfv-line);
}

.ftfv-guide::before {
  content: "";
  position: absolute;
  top: 78px;
  bottom: 78px;
  left: 31px;
  width: 1px;
  background: linear-gradient(to bottom, var(--ftfv-gold), rgba(232, 189, 95, .08));
}

.ftfv-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 34px;
  padding: 78px 0;
  border-bottom: 1px solid var(--ftfv-line);
}

.ftfv-step-marker { position: relative; z-index: 1; }

.ftfv-step-marker span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(232, 189, 95, .38);
  border-radius: 50%;
  color: var(--ftfv-gold);
  background: #0b0b0c;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.ftfv-step-content { max-width: 900px; }

.ftfv-step-content h2 {
  margin: 0 0 17px;
  font-size: clamp(1.8rem, 3.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.ftfv-step-content > p:not(.ftfv-kicker):not(.ftfv-note) {
  max-width: 730px;
  margin: 0 0 24px;
  line-height: 1.78;
}

.ftfv-checklist {
  display: grid;
  gap: 13px;
  max-width: 820px;
  margin: 24px 0 0;
  padding: 0;
  counter-reset: ftfv-list;
  list-style: none;
}

.ftfv-checklist li {
  position: relative;
  min-height: 42px;
  padding: 11px 16px 11px 50px;
  border: 1px solid var(--ftfv-line);
  border-radius: 8px;
  color: #bbb7b0;
  background: var(--ftfv-panel);
  line-height: 1.68;
  counter-increment: ftfv-list;
}

.ftfv-checklist li::before {
  content: counter(ftfv-list);
  position: absolute;
  top: 12px;
  left: 16px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--ftfv-gold);
  background: rgba(232, 189, 95, .08);
  font-size: .66rem;
  font-weight: 900;
}

.ftfv-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0;
}

.ftfv-filter-row span {
  padding: 9px 13px;
  border: 1px solid rgba(232, 189, 95, .26);
  border-radius: 999px;
  color: #efd58d;
  background: rgba(232, 189, 95, .06);
  font-size: .75rem;
  font-weight: 850;
}

.ftfv-note {
  max-width: 760px;
  margin: 0 0 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--ftfv-gold);
  color: #c9c4bb !important;
  background: rgba(232, 189, 95, .045);
  line-height: 1.72;
}

.ftfv-path {
  display: grid;
  max-width: 680px;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--ftfv-line);
  border-radius: 8px;
  background: var(--ftfv-soft);
}

.ftfv-path span {
  color: #8f8a91;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ftfv-path code { width: fit-content; font-size: .92rem; }

.ftfv-success {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  max-width: 730px;
  margin-top: 25px;
  padding: 20px;
  border: 1px solid rgba(104, 189, 131, .3);
  border-radius: 9px;
  background: rgba(104, 189, 131, .055);
}

.ftfv-success > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #d7f5e1;
  background: rgba(104, 189, 131, .16);
  font-weight: 900;
}

.ftfv-success strong { color: #d7f5e1; }
.ftfv-success p { margin: 6px 0 0; line-height: 1.65; }

.ftfv-optional {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(38px, 7vw, 86px);
  margin-top: 100px;
  padding: clamp(36px, 6vw, 64px);
  border: 1px solid rgba(232, 189, 95, .3);
  border-radius: 12px;
  background: radial-gradient(circle at 100% 0%, rgba(207, 58, 45, .1), transparent 40%), var(--ftfv-panel);
}

.ftfv-optional-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.ftfv-optional-heading p:not(.ftfv-kicker),
.ftfv-optional-card p { margin: 0; line-height: 1.75; }
.ftfv-optional-card .ftfv-download { margin-top: 24px; }

.ftfv-help {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
  align-items: center;
  gap: 54px;
  margin-top: 52px;
  padding: 44px 0 10px;
  border-top: 1px solid var(--ftfv-line);
}

.ftfv-help h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 3.5rem);
  line-height: 1.04;
}

.ftfv-help > div:last-child > p { margin: 0 0 22px; line-height: 1.75; }

@media (max-width: 900px) {
  .ftfv-version-card,
  .ftfv-optional,
  .ftfv-help { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .ftfv-hero { padding-bottom: 68px; }
  .ftfv-version-card { grid-template-columns: 1fr; }
  .ftfv-guide::before { left: 21px; }
  .ftfv-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    padding: 62px 0;
  }
  .ftfv-step-marker span { width: 44px; height: 44px; }
  .ftfv-optional { margin-top: 72px; padding: 30px 24px; }
}
