/* Shared brand tokens — סידור חכם AI */
:root {
  --dark: #07090f;
  --dark2: #0d1018;
  --dark3: #131720;
  --dark4: #1a1f2e;
  --accent: #3b82f6;
  --accent2: #6366f1;
  --gold: #c9a84c;
  --gold2: #e8c97a;
  --light: #f8f9fb;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --green: #10b981;
  --warn: #f59e0b;
  --red: #ef4444;
}

html {
  scroll-behavior: smooth;
}

body.brand-body {
  font-family: "Heebo", system-ui, sans-serif;
  direction: rtl;
  text-align: right;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 68px;
  background: rgba(7, 9, 15, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
}

.brand-nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.brand-nav-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-nav-sub {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.brand-nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}

.brand-nav-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.brand-nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: rgba(59, 130, 246, 0.15) !important;
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: var(--accent) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-weight: 500 !important;
}

.nav-cta:hover {
  background: rgba(59, 130, 246, 0.25) !important;
}

@media (max-width: 900px) {
  .brand-nav-links li:not(:last-child) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
