@font-face {
  font-family: Vazirmatn;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Vazirmatn-Regular.woff2") format("woff2");
}

@font-face {
  font-family: Vazirmatn;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/Vazirmatn-Medium.woff2") format("woff2");
}

@font-face {
  font-family: Vazirmatn;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/Vazirmatn-Bold.woff2") format("woff2");
}

:root {
  --bg: #070b0a;
  --surface: #101816;
  --surface-elevated: #16201c;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f2f7f4;
  --muted: #8b9a94;
  --primary: #2ee6a8;
  --primary-pressed: #21c492;
  --on-primary: #062117;
  --radius: 20px;
  --focus: color-mix(in srgb, var(--primary) 55%, white);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Vazirmatn, Tahoma, system-ui, sans-serif;
  line-height: 1.8;
}

body {
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: max(32px, env(safe-area-inset-top)) 16px max(32px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 230, 168, 0.1), transparent 42%),
    var(--bg);
}

.shell {
  width: min(100%, 26rem);
  display: grid;
  gap: 28px;
  text-align: start;
}

.hero {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.mark {
  display: grid;
  place-items: center;
  margin-block-end: 4px;
}

.hero h1 {
  margin: 0;
  max-width: 18rem;
  font-size: clamp(1.55rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.45;
}

.sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.card {
  padding: 22px 20px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(46, 230, 168, 0.06), 0 18px 40px rgba(0, 0, 0, 0.38);
}

.lead {
  margin: 0 0 18px;
  color: var(--text);
}

.features {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-block-start: 0.7em;
  border-radius: 50%;
  background: var(--primary);
}

.actions {
  display: grid;
  gap: 10px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 700;
  text-decoration: none;
}

.cta-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.cta-secondary:hover {
  background: var(--surface-elevated);
  color: var(--text);
}

.cta:hover {
  background: var(--primary-pressed);
  color: var(--on-primary);
}

.cta:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.cta.is-soon,
.cta[aria-disabled="true"] {
  pointer-events: none;
  background: color-mix(in srgb, var(--primary) 28%, var(--surface-elevated));
  color: color-mix(in srgb, var(--on-primary) 70%, white);
}

.hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.7;
}

@media (min-width: 720px) {
  .shell {
    width: min(100%, 28rem);
  }

  .card {
    padding: 26px 24px 22px;
  }
}

@media (max-width: 380px) {
  .card {
    padding: 18px 16px 16px;
  }
}
