/* Landing + Auth marketing pages */
.landing-body, .auth-body {
  font-family: 'IBM Plex Sans Arabic', 'Syne', sans-serif;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

.land-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.land-brand { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.land-nav-actions { display: flex; gap: 10px; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(245,166,35,0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(220,39,67,0.12), transparent 50%),
    linear-gradient(180deg, #0d0d0f 0%, #141417 100%);
  animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  from { filter: saturate(1); }
  to { filter: saturate(1.25); }
}

.hero-content {
  position: relative;
  max-width: 720px;
  text-align: center;
  animation: fadeUp 700ms ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 32px;
}

.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

.land-section {
  padding: 80px 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.land-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.section-lead { color: var(--text3); margin-bottom: 40px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: right;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 300ms ease, border-color 300ms ease;
}
.step:hover { transform: translateY(-4px); border-color: var(--border2); }

.step-num {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 12px;
  display: block;
  margin-bottom: 12px;
}

.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(245,166,35,0.25);
  transform: scale(1.03);
}

.price {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
}
.price span { color: var(--accent); }
.price .per { font-size: 14px; color: var(--text3); font-weight: 600; }

.price-card p { font-size: 13px; color: var(--text2); margin-bottom: 8px; }

.land-footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--text3);
  font-size: 13px;
  max-width: 1000px;
  margin: 0 auto;
}
.land-footer a { color: var(--text2); text-decoration: none; }

/* Auth */
.auth-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 28px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(245,166,35,0.12), transparent 60%),
    var(--bg);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  animation: fadeUp 500ms ease;
}

.auth-card h1 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 6px;
}

.auth-sub { color: var(--text3); font-size: 13px; margin-bottom: 24px; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-error { color: var(--red); font-size: 13px; font-weight: 600; }
.auth-switch { margin-top: 20px; text-align: center; font-size: 13px; color: var(--text3); }
.auth-switch a { color: var(--accent); text-decoration: none; font-weight: 700; }

@media (max-width: 800px) {
  .steps, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
