/* ═══════════════════════════════════════════════════════════
   WATSO CRM – Landing / Auth Pages Theme
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --w-primary:    #69f6b8;
  --w-secondary:  #9093ff;
  --w-tertiary:   #c180ff;
  --w-bg:         #060e20;
  --w-surface:    #0a1428;
  --w-surface-1:  #0e1a32;
  --w-surface-2:  #12203c;
  --w-surface-3:  #1a2c50;
  --w-text:       #dee5ff;
  --w-grad:       linear-gradient(135deg, #69f6b8 0%, #4dd396 100%);
  --w-font:       'Tajawal', 'Segoe UI', system-ui, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--w-font);
  background: var(--w-bg);
  color: var(--w-text);
  direction: rtl;
  min-height: 100vh;
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--w-surface); }
::-webkit-scrollbar-thumb { background: var(--w-surface-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--w-primary); }

/* ── Grid Overlay ────────────────────────────────────────── */
.grid-bg {
  background-image:
    linear-gradient(rgba(105,246,184,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105,246,184,1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.025;
}

/* ── Glows ───────────────────────────────────────────────── */
.glow-green  { background: radial-gradient(circle, rgba(105,246,184,0.18) 0%, transparent 70%); }
.glow-purple { background: radial-gradient(circle, rgba(144,147,255,0.15) 0%, transparent 70%); }
.glow-pink   { background: radial-gradient(circle, rgba(193,128,255,0.12) 0%, transparent 70%); }

/* ── Glassmorphism Cards ─────────────────────────────────── */
.glass-card {
  background: rgba(10,20,40,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(222,229,255,0.08);
  border-radius: 24px;
}
.glass-card-top-glow::after {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105,246,184,0.5), transparent);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--w-grad);
  color: #002214;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--w-font);
  transition: box-shadow .3s, transform .15s;
}
.btn-primary:hover  { box-shadow: 0 0 28px rgba(105,246,184,0.45); transform: translateY(-1px); }
.btn-primary:active { transform: scale(.97); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(222,229,255,0.04);
  color: var(--w-text);
  font-weight: 500;
  border: 1px solid rgba(222,229,255,0.15);
  border-radius: 12px;
  padding: 12px 28px;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--w-font);
  transition: background .2s, border-color .2s, transform .15s;
}
.btn-ghost:hover  { background: rgba(222,229,255,0.09); border-color: rgba(222,229,255,0.3); transform: translateY(-1px); }
.btn-ghost:active { transform: scale(.97); }

/* ── Inputs ──────────────────────────────────────────────── */
.w-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(222,229,255,0.12);
  border-radius: 12px;
  padding: 12px 16px 12px 44px;
  color: var(--w-text);
  font-size: 14px;
  font-family: var(--w-font);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.w-input::placeholder { color: rgba(222,229,255,0.3); }
.w-input:focus {
  border-color: var(--w-primary);
  box-shadow: 0 0 0 3px rgba(105,246,184,0.1);
}
.w-input-rtl { padding: 12px 44px 12px 16px; }

.w-input-wrap {
  position: relative;
}
.w-input-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: rgba(222,229,255,0.4);
  pointer-events: none;
  display: flex;
}
.w-input-icon-rtl {
  left: auto; right: 14px;
}

/* ── Badge ───────────────────────────────────────────────── */
.badge-green {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(105,246,184,0.08);
  border: 1px solid rgba(105,246,184,0.25);
  padding: 7px 16px;
  border-radius: 99px;
  color: var(--w-primary);
  font-size: 13px;
}

/* ── Section Titles ──────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(105,246,184,0.08);
  border: 1px solid rgba(105,246,184,0.2);
  color: var(--w-primary);
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--w-text);
  margin-bottom: 14px;
}
.section-sub {
  color: rgba(222,229,255,0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Navbar ──────────────────────────────────────────────── */
.w-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222,229,255,0.06);
  background: rgba(6,14,32,0.75);
  transition: background .3s, border-color .3s;
}
.w-nav.scrolled {
  background: rgba(6,14,32,0.92);
  border-bottom-color: rgba(105,246,184,0.1);
}
.w-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.w-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.w-logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--w-grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: #002214;
  flex-shrink: 0;
}
.w-logo-text {
  font-weight: 700; font-size: 17px;
  color: var(--w-primary);
}
.w-nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.w-nav-links a {
  color: rgba(222,229,255,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.w-nav-links a:hover { color: var(--w-primary); }
.w-nav-auth { display: flex; align-items: center; gap: 12px; }
.w-nav-login {
  color: rgba(222,229,255,0.8);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background .2s;
}
.w-nav-login:hover { background: rgba(222,229,255,0.07); }
.w-nav-signup {
  background: var(--w-grad);
  color: #002214;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 10px;
  transition: box-shadow .2s, transform .15s;
}
.w-nav-signup:hover { box-shadow: 0 0 18px rgba(105,246,184,0.35); transform: translateY(-1px); }

/* Mobile nav */
.w-nav-toggle {
  display: none;
  background: rgba(222,229,255,0.06);
  border: none;
  color: var(--w-text);
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
}
.w-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid rgba(222,229,255,0.06);
  background: rgba(6,14,32,0.97);
}
.w-mobile-menu a {
  color: rgba(222,229,255,0.8);
  text-decoration: none;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(222,229,255,0.05);
  transition: color .2s;
}
.w-mobile-menu a:hover { color: var(--w-primary); }
.w-mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .w-nav-links, .w-nav-auth { display: none; }
  .w-nav-toggle { display: block; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 110px;
  overflow: hidden;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(105,246,184,0.08);
  border: 1px solid rgba(105,246,184,0.25);
  padding: 8px 18px;
  border-radius: 99px;
  color: var(--w-primary);
  font-size: 13px;
  margin-bottom: 22px;
}
.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--w-text);
  margin-bottom: 20px;
}
.hero-h1 span { color: var(--w-primary); }
.hero-desc {
  color: rgba(222,229,255,0.72);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.stats-row {
  display: flex;
  background: rgba(10,20,40,0.6);
  border: 1px solid rgba(222,229,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  width: fit-content;
}
.stat-item {
  padding: 16px 24px;
  text-align: center;
  border-left: 1px solid rgba(222,229,255,0.08);
}
.stat-item:last-child { border-left: none; }
.stat-val {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.75rem; color: rgba(222,229,255,0.5); white-space: nowrap; }

/* ── Dashboard mockup ────────────────────────────────────── */
.mockup-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(105,246,184,0.2);
  box-shadow: 0 0 40px rgba(105,246,184,0.1), 0 30px 80px rgba(0,0,0,0.5);
}
.mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(10,20,40,0.95);
  border-bottom: 1px solid rgba(105,246,184,0.08);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-url {
  flex: 1;
  margin: 0 10px;
  background: rgba(222,229,255,0.05);
  color: rgba(222,229,255,0.3);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  text-align: center;
}
.mockup-body {
  background: #0a1428;
  padding: 16px;
  min-height: 220px;
}
.mockup-dash {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 10px;
}
.mock-card {
  background: rgba(105,246,184,0.07);
  border: 1px solid rgba(105,246,184,0.12);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.mock-card-val { font-size: 1.3rem; font-weight: 700; color: var(--w-primary); }
.mock-card-lbl { font-size: 10px; color: rgba(222,229,255,0.45); margin-top: 2px; }
.mock-rows { display: flex; flex-direction: column; gap: 5px; }
.mock-row {
  background: rgba(222,229,255,0.03);
  border-radius: 8px;
  padding: 7px 10px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(222,229,255,0.6);
}
.mock-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ── Sections Container ──────────────────────────────────── */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-center { text-align: center; margin-bottom: 60px; }

/* ── Features ────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }
.feat-card {
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.feat-card:hover { transform: translateY(-5px); }
.feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.feat-title {
  font-size: 1.1rem; font-weight: 700;
  color: var(--w-text);
  margin-bottom: 8px;
  text-align: right;
}
.feat-desc {
  font-size: 13px;
  color: rgba(222,229,255,0.6);
  line-height: 1.7;
  text-align: right;
}

/* ── How it works ────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(222,229,255,0.06);
  background: rgba(10,20,40,0.4);
  transition: border-color .25s, background .25s;
}
.step-item:hover {
  background: rgba(10,20,40,0.7);
  border-color: rgba(105,246,184,0.2);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.step-title { font-weight: 700; color: var(--w-text); margin-bottom: 4px; text-align: right; }
.step-desc  { font-size: 13px; color: rgba(222,229,255,0.6); line-height: 1.6; text-align: right; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(222,229,255,0.08);
  background: var(--w-surface-3);
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-5px); }
.price-card.popular {
  border-color: rgba(105,246,184,0.3);
  background: rgba(105,246,184,0.04);
}
.popular-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--w-grad);
  color: #002214;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
}
.price-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; text-align: right; }
.price-val { font-size: 2.5rem; font-weight: 800; line-height: 1; margin: 10px 0 4px; }
.price-period { font-size: 12px; color: rgba(222,229,255,0.5); margin-bottom: 14px; }
.price-desc { font-size: 13px; color: rgba(222,229,255,0.55); margin-bottom: 20px; min-height: 38px; text-align: right; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.price-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(222,229,255,0.75);
  text-align: right;
}
.price-features li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Testimonials ────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
@media (max-width: 640px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  border-radius: 18px;
  padding: 24px;
  background: var(--w-surface-3);
  border: 1px solid rgba(222,229,255,0.07);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 12px; color: #fbbf24; font-size: 14px; }
.testi-text  { font-size: 14px; color: rgba(222,229,255,0.7); line-height: 1.75; margin-bottom: 16px; text-align: right; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #002214;
  flex-shrink: 0;
}
.testi-name  { font-weight: 700; font-size: 14px; color: var(--w-text); }
.testi-role  { font-size: 12px; color: rgba(222,229,255,0.5); }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-box {
  background: rgba(105,246,184,0.05);
  border: 1px solid rgba(105,246,184,0.2);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; color: var(--w-text); margin-bottom: 14px; }
.cta-box p  { color: rgba(222,229,255,0.65); margin-bottom: 28px; font-size: 15px; }
.cta-btns   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────── */
.w-footer {
  background: var(--w-surface-2);
  border-top: 1px solid;
  border-image: linear-gradient(90deg, transparent, rgba(105,246,184,0.35), transparent) 1;
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-desc { font-size: 13px; color: rgba(222,229,255,0.55); line-height: 1.75; margin: 14px 0 20px; text-align: right; }
.footer-col-title { font-weight: 700; font-size: 13px; color: var(--w-text); margin-bottom: 14px; text-align: right; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(222,229,255,0.55); text-decoration: none; transition: color .2s; text-align: right; display: block; }
.footer-links a:hover { color: var(--w-primary); }
.footer-bottom { border-top: 1px solid rgba(222,229,255,0.07); padding-top: 20px; display: flex; justify-content: center; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(222,229,255,0.4); }

/* ── Marquee Ticker ─────────────────────────────────────── */
.marquee-section {
  position: relative;
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid rgba(222,229,255,.055);
  border-bottom: 1px solid rgba(222,229,255,.055);
  background: rgba(10,20,40,.45);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 2;
}
.marquee-fade-r {
  right: 0;
  background: linear-gradient(to left,  var(--w-bg) 0%, transparent 100%);
}
.marquee-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--w-bg) 0%, transparent 100%);
}
.marquee-track {
  overflow: hidden;
  width: 100%;
}
.marquee-inner {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee-rtl 38s linear infinite;
}
.marquee-reverse .marquee-inner {
  animation: marquee-ltr 42s linear infinite;
}
.marquee-track:hover .marquee-inner { animation-play-state: paused; }

.marquee-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 99px;
  border: 1px solid color-mix(in srgb, var(--tc) 28%, transparent);
  background: color-mix(in srgb, var(--tc) 7%, transparent);
  color: var(--tc);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  cursor: default;
  transition: background .2s, box-shadow .2s, transform .2s;
  font-family: var(--w-font);
}
.marquee-tag:hover {
  background: color-mix(in srgb, var(--tc) 14%, transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--tc) 30%, transparent);
  transform: translateY(-2px);
}
.marquee-tag-icon { font-size: 16px; line-height: 1; }

@keyframes marquee-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-ltr {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: .85; transform: scale(1.15); }
}

.fade-up   { animation: fadeUp .65s ease both; }
.delay-100 { animation-delay: .1s; }
.delay-200 { animation-delay: .2s; }
.delay-300 { animation-delay: .3s; }
.delay-400 { animation-delay: .4s; }
.delay-500 { animation-delay: .5s; }
.float     { animation: floatY 5s ease-in-out infinite; }
.pulse-glow { animation: pulse-glow 8s ease-in-out infinite; }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Auth page specific ──────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.auth-card-wrap { width: 100%; max-width: 440px; position: relative; z-index: 10; }
.auth-logo-wrap {
  text-align: center; margin-bottom: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.auth-logo-link {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: transform .2s;
}
.auth-logo-link:hover { transform: scale(1.04); }
.auth-card {
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  background: rgba(10,20,40,0.65);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(222,229,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.auth-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105,246,184,0.5), transparent);
}
.auth-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 18px 0;
}
.auth-divider-line { flex: 1; height: 1px; background: rgba(222,229,255,0.1); }
.auth-divider-text { font-size: 12px; color: rgba(222,229,255,0.4); }
.auth-footer-text {
  text-align: center; margin-top: 28px;
  font-size: 14px; color: rgba(222,229,255,0.7);
}
.auth-footer-text a { color: var(--w-primary); font-weight: 700; text-decoration: none; }
.auth-footer-text a:hover { text-decoration: underline; }

.form-label { display: block; font-size: 13px; color: rgba(222,229,255,0.9); margin-bottom: 7px; }
.form-group { margin-bottom: 18px; }

.btn-google {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(222,229,255,0.04);
  border: 1px solid rgba(222,229,255,0.14);
  color: var(--w-text);
  font-size: 14px; font-weight: 500;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--w-font);
  transition: background .2s, transform .15s;
}
.btn-google:hover { background: rgba(222,229,255,0.08); transform: translateY(-1px); }
.btn-google:active { transform: scale(.97); }

/* ── Auth page – additional components ───────────────────── */
.auth-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.auth-glow-1 {
  top: -120px; right: -120px;
  background: radial-gradient(circle, rgba(105,246,184,.2) 0%, transparent 70%);
}
.auth-glow-2 {
  bottom: -120px; left: -120px;
  background: radial-gradient(circle, rgba(144,147,255,.16) 0%, transparent 70%);
}

.auth-shimmer {
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105,246,184,.5), transparent);
}

.auth-card {
  width: 100%; max-width: 440px;
  position: relative; z-index: 10;
}

.auth-logo-wrap {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
  margin-bottom: 28px;
}

.auth-title {
  font-size: 1.85rem; font-weight: 800;
  color: var(--w-text);
  text-align: center;
  margin-bottom: 6px;
}
.auth-sub {
  font-size: 14px; color: rgba(222,229,255,0.55);
  text-align: center;
  margin-bottom: 28px;
}

.auth-alert {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,80,80,.1);
  border: 1px solid rgba(255,80,80,.3);
  color: #ff9898;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 18px;
}

.auth-field { margin-bottom: 16px; }
.auth-label {
  display: block;
  font-size: 13px; color: rgba(222,229,255,.8);
  margin-bottom: 6px; text-align: right;
}
.auth-input-wrap { position: relative; }
.auth-icon {
  position: absolute;
  top: 50%; right: 13px;
  transform: translateY(-50%);
  color: rgba(222,229,255,.35);
  pointer-events: none;
}

.w-input {
  width: 100%;
  background: rgba(222,229,255,.04);
  border: 1px solid rgba(222,229,255,.12);
  border-radius: 12px;
  padding: 12px 42px 12px 14px;
  color: var(--w-text);
  font-size: 14px;
  font-family: var(--w-font);
  direction: rtl;
  transition: border-color .2s, box-shadow .2s;
}
.w-input:focus {
  outline: none;
  border-color: rgba(105,246,184,.45);
  box-shadow: 0 0 0 3px rgba(105,246,184,.07);
}
.w-input::placeholder { color: rgba(222,229,255,.3); }

.auth-forgot {
  font-size: 12px; color: rgba(222,229,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.auth-forgot:hover { color: var(--w-primary); }

.auth-remember { margin: 4px 0 18px; }

.auth-submit {
  width: 100%; padding: 13px;
  font-size: 15px; font-family: var(--w-font);
  margin-top: 4px;
}

.auth-foot {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(222,229,255,.55);
}
.auth-foot a { color: var(--w-primary); font-weight: 700; text-decoration: none; }
.auth-foot a:hover { text-decoration: underline; }

