:root {
  --bg: #080d1b;
  --card: rgba(255, 255, 255, 0.04);
  --text: #e8ecf5;
  --muted: #9aacbf;
  --accent-1: #2ec5ff;
  --accent-2: #f97316;
  --accent-3: #5ce1e6;
  --border: rgba(255, 255, 255, 0.08);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Vazirmatn", "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(46, 197, 255, 0.1), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.08), transparent 30%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  padding: 96px 24px 64px;
  overflow: hidden;
  isolation: isolate;
}

.hero__blur {
  position: absolute;
  inset: 0;
  filter: blur(90px);
  opacity: 0.45;
  z-index: 0;
}

.hero__blur--1 {
  background: radial-gradient(circle at 25% 30%, rgba(46, 197, 255, 0.35), transparent 40%);
}

.hero__blur--2 {
  background: radial-gradient(circle at 75% 40%, rgba(249, 115, 22, 0.4), transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.logo-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(from 120deg, rgba(46, 197, 255, 0.15), rgba(249, 115, 22, 0.22), rgba(92, 225, 230, 0.18));
  border: 1px solid var(--border);
  padding: 10px;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name h1 {
  margin: 4px 0 0;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.slogan {
  display: grid;
  gap: 8px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.slogan__en {
  font-size: 22px;
  color: var(--muted);
}

.slogan__ar {
  font-family: "Cairo", "Vazirmatn", sans-serif;
  font-size: 24px;
  color: #cde6ff;
}

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

.btn {
  border: none;
  text-decoration: none;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #0a0e17;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.btn--ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.brands {
  margin: 0 auto;
  padding: 36px 24px 64px;
  max-width: 1100px;
  width: 100%;
}

.section-heading {
  text-align: center;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 10px 0 8px;
  font-size: 28px;
}

.section-heading .lede {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}

.brand-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(46, 197, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.brand-track {
  display: flex;
  gap: 12px;
  padding: 18px;
  min-width: max-content;
  animation: slide 22s linear infinite;
}

.brand-pill {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: #def2ff;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.footer {
  margin-top: auto;
  padding: 18px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 720px) {
  .hero {
    padding: 72px 18px 48px;
  }
  .logo-wrap {
    flex-direction: column;
    text-align: center;
  }
  .slogan {
    font-size: 26px;
  }
  .brand-track {
    animation-duration: 28s;
  }
}

