html,
body {
  min-height: 100%;
  margin: 0;
}

[dir="rtl"] body {
  font-family: "Vazirmatn", sans-serif;
}

[dir="ltr"] body {
  font-family: "Space Grotesk", sans-serif;
}

body {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
  color: #fff;
}

.text-gradient {
  background: linear-gradient(135deg, #0066ff, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(8, 11, 20, 0.66), rgba(8, 11, 20, 0.94)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 700'%3E%3Cg fill='none' stroke='%2385a2d6' stroke-opacity='0.22' stroke-width='2'%3E%3Cpath d='M0 110Q120 80 250 120T500 140T760 110T1000 135'/%3E%3Cpath d='M0 260Q170 230 320 285T650 305T1000 280'/%3E%3Cpath d='M0 430Q130 395 270 448T560 470T1000 440'/%3E%3Cpath d='M0 585Q190 530 360 590T760 610T1000 580'/%3E%3Cpath d='M120 0Q105 120 160 250T130 480T170 700'/%3E%3Cpath d='M360 0Q320 160 410 300T380 700'/%3E%3Cpath d='M620 0Q590 180 680 340T640 700'/%3E%3Cpath d='M860 0Q820 150 910 300T870 700'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center top;
  background-size: cover;
}

.glass {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.86), rgba(15, 15, 26, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.feature-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shot-placeholder {
  aspect-ratio: 9 / 16;
  background:
    linear-gradient(180deg, rgba(0, 102, 255, 0.16), rgba(0, 217, 255, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.phone-shot {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.details-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.details-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.65rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #00c853;
  box-shadow: 0 0 18px rgba(0, 200, 83, 0.5);
}

.btn-primary {
  background: linear-gradient(135deg, #0066ff, #0052cc);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0052cc, #003d99);
  transform: translateY(-1px);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-soft:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
}

.coming-soon-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.coming-soon-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.coming-soon-modal .modal-panel {
  transform: translateY(18px) scale(0.96);
  transition: transform 0.25s ease;
}

.coming-soon-modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}
