/* Bulue landing polish — additive layer on landing.css (deploy-repo frontend). */
:root {
  --bulue-muted: var(--muted);
  --bulue-accent: var(--accent);
  --bulue-text: var(--text);
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid rgba(59, 130, 246, 0.45);
  outline-offset: 2px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.trust-strip li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.hero-copy h1 {
  text-wrap: balance;
}

.lead {
  text-wrap: pretty;
}

.brand-mark-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

/* RTL polish — FA landing golden path (B-W4) */
[dir="rtl"] body {
  text-align: start;
}

[dir="rtl"] .hero-grid,
[dir="rtl"] .feature-grid,
[dir="rtl"] .faq-grid {
  direction: rtl;
}

[dir="rtl"] .cta-row {
  justify-content: flex-start;
}

[dir="rtl"] .footer-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-switch {
  direction: rtl;
}

[dir="rtl"] .hero-card ul {
  padding-inline-start: 0;
  padding-inline-end: 1.1rem;
}

html[lang="en"] {
  direction: ltr;
}

html[lang="en"] body {
  text-align: start;
}

html[lang="en"] .hero-grid,
html[lang="en"] .feature-grid,
html[lang="en"] .faq-grid {
  direction: ltr;
}

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

  .button,
  .skip-link {
    transition: none;
  }
}
