.home {
  flex: 1;
  position: relative;
  padding: 110px 90px 60px;
  min-height: calc(100vh - var(--topH));
  background: linear-gradient(
    90deg,
    #062c31 0%,
    var(--bg2) 40%,
    var(--bg) 45%,
    var(--bg) 100%
  );
}

.home-title {
  font-size: 62px;
  font-weight: 700;
  color: rgba(210,176,106,0.92);
  margin-bottom: 14px;
}

.home-subtitle {
  font-size: 22px;
  color: rgba(255,255,255,0.70);
  line-height: 1.25;
  margin-bottom: 38px;
}

.home-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 260px;
}

.home-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.50);
  padding: 14px 20px;
  font-size: 24px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.home-footer {
  position: absolute;
  right: 40px;
  bottom: 26px;
  display: flex;
  gap: 28px;
  font-size: 18px;
  color: rgba(255,255,255,0.50);
}

.home-footer-link { color: inherit; text-decoration: none; }
