:root {
  color-scheme: light only;
  --primary: #4A90D9;
  --primary-dark: #2E6BB5;
  --primary-light: #7FB3E8;
  --warm: #FF8C42;
  --warm-light: #FFB380;
  --success: #52B788;
  --gold: #FFD700;
  --bg: #FFF9F0;
  --text: #2D3142;
  --text-soft: #6B7280;
  --shadow-md: 0 4px 12px rgba(45, 49, 66, 0.10);
  --shadow-lg: 0 12px 32px rgba(45, 49, 66, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  direction: rtl;
  font-family: 'Sora', 'Heebo', -apple-system, sans-serif;
  font-size: 18px;
  background: linear-gradient(180deg, #FFE8F3 0%, #FFF9F0 30%, #FDF4E6 100%) !important;
  background-attachment: fixed !important;
  color: var(--text) !important;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-color-scheme: dark) {
  html { background: linear-gradient(180deg, #FFE8F3 0%, #FFF9F0 30%, #FDF4E6 100%) !important; color: var(--text) !important; }
  .hero-card { background-color: white !important; color: var(--text) !important; }
}

body { min-height: 100vh; display: flex; flex-direction: column; background: transparent !important; }

#app {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px;
}

.hero-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 36px 40px;
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.hero-sparkle { font-size: 3rem; margin-bottom: 8px; animation: floaty 2.6s ease-in-out infinite; }
.hero-heart { font-size: 1.6rem; margin-top: 18px; animation: floaty 3.2s ease-in-out infinite; }

.brand-name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-dark);
}
.brand-tag { color: var(--text-soft); font-weight: 600; margin-bottom: 22px; }

h1 {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--text);
}

.hero-sub { color: var(--text-soft); line-height: 1.6; margin-bottom: 24px; }

.promises {
  list-style: none;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.promises li {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.soon-pill {
  display: inline-block;
  background: linear-gradient(135deg, #FF8C42, #FFB380);
  color: white;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
  letter-spacing: 0.5px;
  animation: pulseGlow 1.8s ease-in-out infinite;
}

.footer-line { margin-top: 22px; color: var(--text-soft); font-size: 0.85rem; font-weight: 600; }

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.cta-btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}
.cta-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-lg); }
.cta-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary-light);
}
.cta-ghost:hover { background: var(--primary-light); color: white; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(255, 140, 66, 0.65); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sparkle, .hero-heart, .soon-pill { animation: none; }
}

@media (max-width: 480px) {
  html { font-size: 16px; }
  .hero-card { padding: 34px 20px 30px; }
  h1 { font-size: 1.4rem; }
}
