:root {
  --bg: #060b12;
  --bg-alt: #0b121b;
  --surface: rgba(21, 29, 39, 0.9);
  --surface-soft: rgba(20, 30, 41, 0.76);
  --border: rgba(122, 145, 164, 0.2);
  --text: #f1f5f9;
  --muted: #93a2b7;
  --accent: #00a659;
  --accent-soft: rgba(0, 166, 89, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 166, 89, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(18, 60, 95, 0.22), transparent 24%),
    linear-gradient(180deg, #04080f 0%, #060b12 38%, #091219 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
  font-family: "Cairo", sans-serif;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.32;
  z-index: 0;
}

.ambient-a {
  top: -110px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: rgba(0, 166, 89, 0.35);
}

.ambient-b {
  bottom: -120px;
  left: -70px;
  width: 320px;
  height: 320px;
  background: rgba(9, 68, 99, 0.28);
}

.ambient-c {
  top: 36%;
  left: 42%;
  width: 200px;
  height: 200px;
  background: rgba(0, 166, 89, 0.16);
}

.glass-panel {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.info-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 28px;
  background: rgba(6, 11, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 152px;
  max-width: 100%;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7be6b4;
}

body.rtl .eyebrow {
  letter-spacing: 0.08em;
}

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

.info-nav,
.header-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.nav-link,
.ghost-button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.primary-link {
  border-color: rgba(0, 166, 89, 0.38);
  background: linear-gradient(135deg, rgba(0, 166, 89, 0.28), rgba(51, 223, 143, 0.15));
}

.info-shell {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 28px 40px;
  display: grid;
  gap: 24px;
}

.info-hero,
.info-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 13, 20, 0.72);
}

.info-hero h1,
.info-panel h2,
.info-panel h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

body.rtl .info-hero h1,
body.rtl .info-panel h2,
body.rtl .info-panel h3 {
  font-family: "Cairo", sans-serif;
}

.info-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
}

.lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 860px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.info-card p,
.info-card li,
.info-panel p,
.info-panel li {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.info-card ul,
.info-panel ul {
  margin: 12px 0 0;
  padding-inline-start: 18px;
}

.info-card a,
.info-panel a,
.doc-body a {
  color: #8be8bd;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.doc-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.doc-body {
  display: grid;
  gap: 18px;
}

.doc-body h1,
.doc-body h2 {
  margin: 0;
}

.doc-body h1 {
  font-size: 2rem;
}

.doc-body h2 {
  font-size: 1.2rem;
  padding-top: 10px;
}

.doc-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.info-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .info-header,
  .info-shell {
    padding-inline: 18px;
  }

  .info-header {
    flex-wrap: wrap;
  }

  .info-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .info-hero,
  .info-panel {
    padding: 22px;
  }

  .info-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
