@theme {
  --color-brand-navy: #001A4D;
  --color-brand-navy-light: #002366;
  --color-brand-gold: #D4AF37;
  --color-brand-gold-light: #F4D03F;
  --color-brand-slate: #F8FAFC;

  --font-arabic: "IBM Plex Sans Arabic", sans-serif;
  --font-outfit: "Outfit", sans-serif;

  --animate-float: float 6s ease-in-out infinite;
  --animate-shine: shine 3s linear infinite;

  --shadow-premium: 0 20px 40px rgba(0, 26, 77, 0.3);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.05);
  --shadow-glass-hover: 0 32px 64px rgba(0, 0, 0, 0.08);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Base */
body {
  background-color: var(--color-brand-slate);
  color: #0f172a; /* slate-900 */
  font-family: var(--font-outfit);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

[dir="rtl"] {
  font-family: var(--font-arabic);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900; /* black */
  letter-spacing: -0.025em; /* tracking-tight */
  color: var(--color-brand-navy);
  line-height: 1.1;
}

/* Components */
.btn-primary {
  position: relative;
  overflow: hidden;
  background-color: var(--color-brand-navy);
  color: white;
  padding: 1rem 2rem;
  border-radius: 1rem; /* 2xl */
  font-weight: 700;
  transition: all 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}

.btn-secondary {
  position: relative;
  overflow: hidden;
  background-color: white;
  color: var(--color-brand-navy);
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  border: 2px solid rgba(0, 26, 77, 0.1);
  transition: all 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.btn-secondary:hover {
  border-color: var(--color-brand-navy);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
  transform: translateY(-4px);
}

.glass-card {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2rem;
  padding: 2rem;
  transition: all 500ms;
  box-shadow: var(--shadow-glass);
}
.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-glass-hover);
}

.section-title {
  font-size: 2.25rem; /* 4xl */
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; /* 5xl */ }
}
@media (min-width: 1024px) {
  .section-title { font-size: 3.75rem; /* 6xl */ }
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, var(--color-brand-navy), var(--color-brand-navy-light));
}

.gold-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, var(--color-brand-gold), var(--color-brand-gold-light));
}

.mask-radial {
  mask-image: radial-gradient(circle, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black, transparent 70%);
}
