@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 120% at 50% 0%, #141414 0%, #0a0a0a 55%);
  color: #fff;
  font-family: Vazirmatn, Tahoma, 'Segoe UI', Arial, sans-serif;
  padding: 32px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #e10600;
}

.header {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.logo {
  line-height: 0;
}
.logo img {
  display: inline-block;
  height: 30px;
  width: auto;
}

.content {
  width: 100%;
  max-width: 560px;
}

.status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 11px;
}
.status .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e10600;
  flex: none;
  animation: pulse 1.8s ease-out infinite;
}
.status .label {
  font-size: 14px;
  font-weight: 500;
  color: #9a9a9a;
  white-space: nowrap;
}

.title {
  margin: 0 0 26px;
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -1px;
}

.desc {
  margin: 0 0 48px;
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 2;
  color: #9a9a9a;
  font-weight: 300;
}

.divider {
  height: 2px;
  background: #e10600;
  border-radius: 2px;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(225, 6, 0, .6); }
  70%  { box-shadow: 0 0 0 14px rgba(225, 6, 0, 0); }
  100% { box-shadow: 0 0 0 0   rgba(225, 6, 0, 0); }
}
