:root {
  color-scheme: dark;
  font-family: Estedad, Vazirmatn, "Segoe UI", Tahoma, sans-serif;
  background: #0b0b0c;
  color: #f4f0e9;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 10%, rgba(160, 124, 75, 0.22), transparent 30rem),
    linear-gradient(145deg, #111114 0%, #080809 70%);
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 10vw, 120px) 0 56px;
}

.hero { max-width: 780px; }

.eyebrow {
  margin: 0 0 18px;
  color: #c8a979;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #c9c4bc;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  line-height: 2;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 16px;
  border: 1px solid #2d2b28;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #ddd7cd;
  font-size: 0.86rem;
  line-height: 1.7;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #70d39a;
  box-shadow: 0 0 0 5px rgba(112, 211, 154, 0.12);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(64px, 10vw, 110px);
}

.features article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid #242326;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.features span { color: #a98555; font-size: 0.78rem; }
.features h2 { margin: 52px 0 10px; font-size: 1.25rem; }
.features p { margin: 0; color: #aaa49c; line-height: 1.9; font-size: 0.92rem; }

@media (max-width: 760px) {
  .features { grid-template-columns: 1fr; }
  .features article { min-height: auto; }
  .features h2 { margin-top: 26px; }
  .status { align-items: flex-start; border-radius: 18px; }
  .status-dot { margin-top: 8px; }
}

