:root {
  --bg: #0d0d0d;
  --bg-soft: #151515;
  --card: rgba(27, 27, 27, 0.78);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f7f5ef;
  --muted: #aaa69c;
  --yellow: #f7c948;
  --yellow-light: #ffe29a;
  --yellow-dark: #b68617;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.background-glow {
  position: fixed;
  z-index: -1;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.16;
}

.glow-one {
  top: -220px;
  right: -130px;
  background: var(--yellow);
}

.glow-two {
  bottom: -280px;
  left: -150px;
  background: #b98010;
}

.page-container {
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100vh - 180px);
  margin: 0 auto;
  padding: 24px 0 90px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  /* width: 38px;
  height: 38px; */
  place-items: center;
  color: #16130a;
  background: var(--yellow);
  border-radius: 11px;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--yellow-light);
  background: rgba(247, 201, 72, 0.08);
  border: 1px solid rgba(247, 201, 72, 0.2);
  border-radius: 99px;
  font-size: 0.82rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(247, 201, 72, 0.12);
}

.hero {
  max-width: 830px;
  margin: 115px auto 85px;
  text-align: center;
}

.badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 14px;
  color: var(--yellow-light);
  background: rgba(247, 201, 72, 0.1);
  border: 1px solid rgba(247, 201, 72, 0.24);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1.35;
  letter-spacing: -1.5px;
}

h1 span {
  color: var(--yellow);
}

.description {
  max-width: 630px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 2;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s ease;
  font-weight: 700;
}

.button-primary {
  color: #1c1607;
  background: var(--yellow);
}

.button-primary:hover {
  background: #ffda6c;
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.button-secondary:hover {
  border-color: rgba(247, 201, 72, 0.55);
  background: rgba(247, 201, 72, 0.07);
}

.copy-icon {
  direction: ltr;
  color: var(--yellow);
  font-size: 1.15rem;
}

.copy-message {
  min-height: 25px;
  margin: 12px 0 0;
  color: var(--yellow-light);
  font-size: 0.85rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 25px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(247, 201, 72, 0.35);
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--yellow);
  background: rgba(247, 201, 72, 0.1);
  border-radius: 12px;
  font-size: 1.35rem;
}

.feature-card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.footer {
  border-top: 1px solid var(--border);
  background: #0a0a0a;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  min-height: 180px;
  margin: 0 auto;
  padding: 25px 0;
}

.footer-brand {
  font-size: 1rem;
}

.footer-info p {
  margin: 10px 0 0;
  color: #7e7a72;
  font-size: 0.8rem;
}

.footer-info .copyright {
  direction: ltr;
  text-align: right;
}

.enamad-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.enamad-title {
  color: var(--muted);
  font-size: 0.8rem;
}

.enamad-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 130px;
  min-height: 76px;
  padding: 10px;
  color: #c7c1b3;
  border: 1px dashed rgba(247, 201, 72, 0.45);
  border-radius: 12px;
  background: rgba(247, 201, 72, 0.04);
  font-size: 0.75rem;
}

.enamad-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #16130a;
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

@media (max-width: 720px) {
  .page-container {
    width: min(100% - 30px, 1120px);
    padding-bottom: 65px;
  }

  .navbar {
    min-height: 54px;
  }

  .status {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .hero {
    margin: 78px auto 60px;
  }

  .actions {
    flex-direction: column;
    max-width: 290px;
    margin-right: auto;
    margin-left: auto;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
    padding: 32px 0;
    text-align: center;
  }

  .footer-info .copyright {
    text-align: center;
  }
}
