/* save.css — /save bookmarklet page. Chrome + .btn-primary from index.css. */

.save-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 90px;
}

.save-hero {
  text-align: center;
}
.save-hero h1 {
  font-size: 38px;
  font-weight: 900;
  color: #083463;
  line-height: 1.15;
}
.save-hero > p {
  margin: 14px auto 0;
  max-width: 560px;
  color: #3b5568;
  font-size: 17px;
}

.save-drag-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.save-bookmarklet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #083463;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 10px;
  cursor: grab;
  box-shadow: 0 10px 24px rgba(8, 52, 99, 0.22);
}
.save-bookmarklet:active {
  cursor: grabbing;
}
.save-drag-hint {
  font-size: 13px;
  font-weight: 700;
  color: #6b7f92;
}
.save-note {
  margin-top: 16px;
  font-size: 13px;
  color: #6b7f92;
}

.save-steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.save-step {
  background: #fff;
  border: 1px solid #cfe0f2;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 8px 20px rgba(8, 52, 99, 0.07);
}
.save-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eaf2fb;
  color: #0d4fa8;
  font-weight: 900;
  margin-bottom: 10px;
}
.save-step h3 {
  font-size: 16px;
  font-weight: 800;
  color: #083463;
}
.save-step p {
  margin-top: 6px;
  color: #3b5568;
  font-size: 14px;
  line-height: 1.5;
}
.save-step kbd {
  background: #f2f8ff;
  border: 1px solid #cfe0f2;
  border-radius: 5px;
  padding: 1px 5px;
  font-size: 12px;
  font-family: inherit;
}

.save-cta-band {
  margin-top: 48px;
  background: #eaf2fb;
  border-radius: 18px;
  padding: 40px 24px;
  text-align: center;
}
.save-cta-band h2 {
  font-size: 24px;
  font-weight: 900;
  color: #083463;
}
.save-cta-band p {
  margin: 10px 0 18px;
  color: #3b5568;
}

@media (max-width: 720px) {
  .save-hero h1 {
    font-size: 30px;
  }
  .save-steps {
    grid-template-columns: 1fr;
  }
}
