/* ==========================================================================
   Landing page
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html:has(.Landing),
body:has(.Landing) {
  overflow-x: hidden;
}

.Base-content:has(.Landing) {
  padding: 0;
  overflow-x: hidden;
}

.Landing,
.Landing * {
  font-family: 'Inter', sans-serif;
}

.Landing {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

/* --- Nav --- */
.Landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.15);
}

.Landing-logo {
  font-size: 20px;
  font-weight: 700;
  color: dodgerblue;
  letter-spacing: -0.3px;
}

.Landing-navActions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* --- Buttons --- */
.Landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14.4px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.Landing-btn--primary {
  background: dodgerblue;
  color: #fff;
  border: 1.5px solid dodgerblue;
}
.Landing-btn--primary:hover {
  background: #1a7fe8;
  border-color: #1a7fe8;
  color: #fff;
}

.Landing-btn--ghost {
  background: transparent;
  color: var(--color);
  border: 1.5px solid rgba(128, 128, 128, 0.4);
}
.Landing-btn--ghost:hover {
  background: rgba(128, 128, 128, 0.1);
  color: var(--color);
}

.Landing-btn--lg {
  padding: 12px 28px;
  font-size: 16px;
}

/* --- Steps --- */
.Landing-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 72px 48px;
}

.Landing-stepsHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.Landing-stepsTitle {
  font-size: 28px;
  font-weight: 700;
}

.Landing-stepsDesc {
  font-size: 15.2px;
  color: #888;
  max-width: 400px;
  line-height: 1.6;
}

.Landing-stepsList {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.Landing-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 160px;
}

.Landing-stepNum {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: dodgerblue;
  color: #fff;
  font-weight: 700;
  font-size: 15.2px;
  flex-shrink: 0;
}

.Landing-step h3 {
  font-size: 15.2px;
  font-weight: 700;
}

.Landing-step p {
  font-size: 13.6px;
  color: #888;
  line-height: 1.5;
}

.Landing-stepArrow {
  font-size: 20px;
  color: #888;
  flex-shrink: 0;
  margin-top: 46px;
}


/* --- Mobile --- */
@media (max-width: 700px) {
  .Landing-nav {
    padding: 16px 20px;
  }
}
