body {
  margin: 0;
  font-family: Vazirmatn, sans-serif;
  line-height: 1.9;
  background: #fffdf7;
  color: #292524;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  width: min(100% - 2.5rem, 72rem);
  margin: auto;
}
.main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 4rem 0;
}
.box {
  text-align: center;
  max-width: 44rem;
}
.code {
  font:
    400 clamp(6rem, 18vw, 11rem) Lalezar,
    sans-serif;
  line-height: 1;
  color: #b45309;
  text-shadow: 4px 6px 0 rgba(180, 83, 9, 0.16);
}
h1,
h2 {
  font-family: Lalezar, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
}
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
}
.lead {
  max-width: 54ch;
  margin: 1rem auto 0;
  color: #57534e;
}
.btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  background: #b45309;
  color: #fffdf7;
  font-weight: 700;
}
.ghost {
  background: #fffdf7;
  color: #92400e;
  border: 1px solid #b45309;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.card {
  padding: 1.25rem;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  background: #fef9ef;
  text-align: start;
}
.card h3 {
  margin: 0.5rem 0;
  font-size: 1rem;
}
.card p {
  margin: 0;
  color: #57534e;
  font-size: 0.9rem;
}
.toast {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  background: #fef9ef;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 32px rgba(41, 37, 36, 0.12);
  display: none;
  max-width: 24rem;
}
