.landing-page {
  padding-bottom: 48px;
}

.landing-hero {
  padding: 48px 0 32px;
  text-align: center;
}

.landing-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f9ebea;
  color: var(--brand);
  font-size: 12px;
  font-weight: 500;
}

.landing-hero__title {
  margin: 0 0 12px;
  font-family: Lato, Roboto, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.landing-hero__title span {
  color: var(--brand);
}

.landing-hero__lead {
  max-width: 680px;
  margin: 0 auto 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.landing-hero__scope {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.landing-hero__scope strong {
  color: var(--text-dark);
  font-weight: 600;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.landing-btn--primary {
  background: var(--brand);
  color: #fff;
}

.landing-btn--primary:hover {
  background: var(--brand-hover);
  color: #fff;
}

.landing-btn--ghost {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid var(--line);
}

.landing-btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.landing-hero__tokens {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.landing-token-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.landing-token-pill img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.landing-token-pill--primary {
  border-color: #f0cdcb;
  background: #fcf5f5;
}

.landing-compare--single {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .landing-compare--single {
    grid-template-columns: 1fr;
  }
}

.landing-section {
  margin-bottom: 20px;
}

.landing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 28px 32px;
}

.landing-card__title {
  margin: 0 0 8px;
  font-family: Lato, Roboto, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
}

.landing-card__subtitle {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.landing-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

.landing-card p:last-child {
  margin-bottom: 0;
}

.landing-card a {
  color: var(--brand);
  text-decoration: none;
}

.landing-card a:hover {
  text-decoration: underline;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.landing-step {
  padding: 20px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--line-soft);
}

.landing-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.landing-step__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.landing-step__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
}

.landing-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.landing-compare__item {
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: #fcfcfd;
}

.landing-compare__item--primary {
  border-color: #f0cdcb;
  background: #fcf5f5;
}

.landing-compare__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.landing-compare__label img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.landing-compare__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.landing-compare__tag {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #e8ebf7;
  font-size: 11px;
  font-weight: 500;
  color: #404245;
}

.landing-cta-bar {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c23631 0%, #912925 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.landing-cta-bar__title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
}

.landing-cta-bar__text {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.landing-cta-bar .landing-btn--primary {
  background: #fff;
  color: var(--brand);
  flex-shrink: 0;
}

.landing-cta-bar .landing-btn--primary:hover {
  background: #f9ebea;
}

.landing-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.landing-help-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: none;
}

.landing-help-links a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.landing-footer {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.landing-footer a {
  color: var(--brand);
  text-decoration: none;
}

.landing-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .landing-steps {
    grid-template-columns: 1fr;
  }

  .landing-compare {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .landing-hero {
    padding-top: 32px;
  }

  .landing-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-hero__actions .landing-btn {
    width: 100%;
  }

  .landing-hero__tokens {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-token-pill {
    justify-content: center;
  }

  .landing-card {
    padding: 22px 18px;
  }

  .landing-cta-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .landing-cta-bar .landing-btn {
    width: 100%;
  }

  .landing-help-links {
    flex-direction: column;
  }

  .landing-help-links a {
    width: 100%;
    justify-content: center;
  }
}
