:root {
  --font-en: Poppins, system-ui, sans-serif;
  --font-ar: "Dubai", "Dubai Regular", "Dubai Medium", Tahoma, Arial, sans-serif;
  --font-ar-heading: "Dubai", "Dubai Bold", "Dubai Medium", Tahoma, Arial, sans-serif;
  --font-ar-data: "IBM Plex Mono", "Dubai", monospace;
  --brand-teal: #00897b;
  --brand-gold: #f9a825;
  --brand-dark: #1a1a2e;
  --line-body: 1.72;
  --line-body-ar: 1.94;
  --line-heading: 1.12;
  --line-heading-tight: 1.08;
  --line-lead: 1.7;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: rgba(26, 26, 46, 0.03);
  --text: #1a1a2e;
  --muted: rgba(26, 26, 46, 0.72);
  --line: rgba(26, 26, 46, 0.12);
  --accent: #00897b;
  --accent-strong: #1a1a2e;
  --shadow: 0 18px 50px rgba(26, 26, 46, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1240px;
  --space-1: 10px;
  --space-2: 14px;
  --space-3: 18px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 42px;
}

@font-face {
  font-family: "Dubai";
  src: local("Dubai Regular"), local("Dubai");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Dubai";
  src: local("Dubai Medium");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Dubai";
  src: local("Dubai Bold");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Dubai";
  src: local("Dubai Light");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.js body.admin-page [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

html.js body.admin-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

html.js body.admin-page [data-reveal].reveal-soft {
  transform: translateY(10px);
}

html.is-loading body {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.96);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-spinner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top-color: #ffffff;
  animation: page-spin 0.9s linear infinite;
}

.page-loader-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {

  html.js body.admin-page [data-reveal],
  html.js body.admin-page [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .page-loader-spinner {
    animation: none;
  }
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 52%, rgba(249, 168, 37, 0.03) 100%);
  color: var(--text);
  font-family: var(--font-en);
  line-height: var(--line-body);
}

html[dir="rtl"] body {
  font-family: var(--font-ar) !important;
  direction: rtl;
  unicode-bidi: isolate;
  line-height: var(--line-body-ar);
  word-spacing: 0.015em;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
}

html[dir="rtl"] body,
html[dir="rtl"] .page-shell,
html[dir="rtl"] .section,
html[dir="rtl"] .hero,
html[dir="rtl"] .footer,
html[dir="rtl"] .admin-shell,
html[dir="rtl"] .admin-panel,
html[dir="rtl"] .login-card,
html[dir="rtl"] .component-card,


html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] button,
html[dir="rtl"] label {
  font-family: var(--font-ar);
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] button,
html[dir="rtl"] .primary-btn,
html[dir="rtl"] .secondary-btn,
html[dir="rtl"] .ghost-link,
html[dir="rtl"] .lang-btn {
  direction: rtl;
}

html[dir="rtl"] body,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] p,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .section-kicker,
html[dir="rtl"] .brand-text,
html[dir="rtl"] .nav-bar-title {
  text-align: right;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .lead,
html[dir="rtl"] .brand-text,
html[dir="rtl"] .nav-bar,
html[dir="rtl"] .hero-points,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .module-item,
html[dir="rtl"] .callout,
html[dir="rtl"] .footer,
html[dir="rtl"] .section-h,
html[dir="rtl"] .section-label,
html[dir="rtl"] .section-kicker,
html[dir="rtl"] .logo-mark,
html[dir="rtl"] .brand-logo,
html[dir="rtl"] .brand-text strong,
html[dir="rtl"] .brand-text span {
  font-family: var(--font-ar-heading) !important;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .admin-hero h1,
html[dir="rtl"] .section-head h2,
html[dir="rtl"] .section-h,
html[dir="rtl"] .brand-panel h3,
html[dir="rtl"] .brand-service-card h3,
html[dir="rtl"] .brand-goal-item strong {
  font-family: var(--font-ar-heading) !important;
}

html[dir="rtl"] .section-head h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.18;
}

html[dir="rtl"] .section-kicker {
  font-size: 0.82rem;
  letter-spacing: 0;
}

html[dir="rtl"] .section-head .lead {
  font-size: 1rem;
  line-height: 1.82;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  letter-spacing: 0;
  line-height: var(--line-heading);
  text-wrap: balance;
}

html[dir="rtl"] .lead {
  line-height: var(--line-lead);
  letter-spacing: 0;
  font-size: 1rem;
}

html[dir="rtl"] .section-kicker,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .brand-panel-tag,
html[dir="rtl"] .table-status,
html[dir="rtl"] .counter,
html[dir="rtl"] .metric-value,
html[dir="rtl"] .stat-number {
  font-family: var(--font-ar-data) !important;
}

html[dir="rtl"] .type-font-ar,
html[dir="rtl"] .field-group span,
html[dir="rtl"] .label,
html[dir="rtl"] .feature-text,
html[dir="rtl"] .module-copy,
html[dir="rtl"] .callout p,
html[dir="rtl"] .card-body,
html[dir="rtl"] .admin-panel p,
html[dir="rtl"] .section p {
  font-family: var(--font-ar);
}

html[dir="rtl"] .mono,
html[dir="rtl"] .data-table,
html[dir="rtl"] .table-status,
html[dir="rtl"] .user-badge,
html[dir="rtl"] .counter,
html[dir="rtl"] .stat-number,
html[dir="rtl"] .number,
html[dir="rtl"] .metric-value {
  font-family: var(--font-ar-data);
}

html[dir="rtl"] .nav-bar a,
html[dir="rtl"] .lang-btn,
html[dir="rtl"] .ghost-link,
html[dir="rtl"] .footer-column a,
html[dir="rtl"] .footer-column span {
  letter-spacing: 0;
  word-spacing: 0.02em;
}

html[dir="rtl"] .brand-text strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

html[dir="rtl"] .brand-text small {
  line-height: 1.4;
}

html[dir="rtl"] .page-shell,
html[dir="rtl"] .topbar,
html[dir="rtl"] .topbar-actions,
html[dir="rtl"] .nav-bar,
html[dir="rtl"] .hero,
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-head,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .module-list,
html[dir="rtl"] .module-item,
html[dir="rtl"] .callout,
html[dir="rtl"] .footer {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .login-actions,
html[dir="rtl"] .badge-row,
html[dir="rtl"] .tabs,
html[dir="rtl"] .button-row,
html[dir="rtl"] .lang-switch {
  direction: rtl;
}

html[dir="rtl"] .hero-points li,
html[dir="rtl"] .module-item,
html[dir="rtl"] .cards-list-row,
html[dir="rtl"] .data-table-row,
html[dir="rtl"] .table-row,
html[dir="rtl"] .nav-bar a,
html[dir="rtl"] .footer-column a,
html[dir="rtl"] .footer-column span {
  text-align: right;
}

html[dir="rtl"] .hero-points li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .module-item {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-bar-header {
  flex-direction: row-reverse;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 24px 0 36px;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-4);
}

.col-12,
.col-6,
.col-4 {
  grid-column: span 12;
}

.topbar,
.hero,
.section,
.footer {
  backdrop-filter: blur(8px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 18px 18px;
  position: sticky;
  top: 14px;
  z-index: 30;
  margin-bottom: 26px;
  background: linear-gradient(180deg, var(--brand-dark) 0%, var(--brand-dark) 100%);
  border: 1px solid rgba(249, 168, 37, 0.18);
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: 120px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 34px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(249, 168, 37, 0.18);
  color: #ffffff;
  border: 1px solid rgba(249, 168, 37, 0.18);
  font-weight: 800;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.2;
  color: #f8fafc;
}

.brand-text small,
.ghost-link,
.eyebrow,
.section-kicker,
.footer,
.status-pill,
.module-item span {
  color: var(--muted);
}

.brand-text small {
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.72);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 0 0 auto;
}

.admin-account-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.topbar-admin .nav-bar {
  flex-wrap: wrap;
  gap: 14px 18px;
  max-width: min(100%, 920px);
}

.topbar-admin .admin-account-chip {
  appearance: none;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(249, 168, 37, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 600;
}

.topbar-admin .admin-account-chip:focus-visible {
  outline: 2px solid rgba(249, 168, 37, 0.65);
  outline-offset: 3px;
}

.topbar-admin .admin-account-chip img {
  border-radius: 999px;
  display: block;
}

.admin-account-dropdown {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: calc(100% + 10px);
  min-width: 190px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(249, 168, 37, 0.14);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  display: grid;
  gap: 6px;
  z-index: 320;
}

.admin-account-dropdown[hidden] {
  display: none !important;
}

.admin-account-dropdown a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
}

.admin-account-dropdown a:hover,
.admin-account-dropdown a:focus-visible {
  background: rgba(0, 137, 123, 0.08);
  color: var(--text);
}

.nav-bar {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: 22px;
  padding: 11px 18px;
  border: 1px solid rgba(249, 168, 37, 0.14);
  border-radius: 999px;
  background: rgba(26, 26, 46, 0.08);
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.18);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-bar::-webkit-scrollbar {
  display: none;
}

.nav-bar-header,
.nav-close {
  display: none;
}

.nav-bar a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.88);
  position: relative;
  padding-block: 2px;
  white-space: nowrap;
}

.nav-bar a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-bar a:hover,
.nav-bar a:focus-visible,
.ghost-link:hover,
.ghost-link:focus-visible {
  color: #ffffff;
}

.nav-bar a:hover::after,
.nav-bar a:focus-visible::after {
  background: rgba(255, 255, 255, 0.35);
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.16);
}

.nav-toggle-line {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.16);
}

.lang-btn,
.primary-btn,
.secondary-btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.lang-btn {
  min-width: 44px;
  height: 36px;
  border-radius: 999px;
  background: transparent;
  color: rgba(248, 250, 252, 0.78);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.lang-btn.is-active {
  background: var(--accent);
  color: #ffffff;
}

.ghost-link,
.secondary-btn,
.primary-btn {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ghost-link-button {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.topbar .ghost-link {
  color: rgba(248, 250, 252, 0.72);
}

.ghost-link:hover,
.secondary-btn:hover,
.primary-btn:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: stretch;
  padding: 42px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    url("../images/hero/hero-bg.svg") center/cover no-repeat,
    radial-gradient(circle at top left, rgba(249, 168, 37, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(0, 137, 123, 0.06), transparent 28%);
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 260px;
  height: 260px;
  inset-inline-end: -110px;
  inset-block-start: -120px;
  background: radial-gradient(circle, rgba(249, 168, 37, 0.12) 0%, rgba(249, 168, 37, 0.02) 62%, transparent 72%);
  filter: blur(6px);
}

.hero::after {
  width: 180px;
  height: 180px;
  inset-inline-start: -70px;
  inset-block-end: -90px;
  background: radial-gradient(circle, rgba(0, 137, 123, 0.10) 0%, rgba(0, 137, 123, 0.02) 64%, transparent 74%);
  filter: blur(8px);
}

.hero-copy {
  max-width: 760px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--text);
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .hero-points,
.hero-copy .hero-points li,
.hero-copy .hero-points li::before {
  color: var(--text);
}

.hero-copy .lead {
  color: var(--muted);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: var(--line-heading-tight);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: var(--line-heading);
  letter-spacing: -0.03em;
}

h3 {
  line-height: 1.18;
}

h4,
h5,
h6 {
  line-height: 1.25;
}

.lead {
  max-width: 60ch;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: var(--line-lead);
}

.page-shell,
.hero,
.section,
.footer,
.login-shell,
.login-card,
.component-card,
.feature-card,
.callout,
.module-item {
  line-height: inherit;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.hero .secondary-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  gap: 10px;
  position: relative;
}

.primary-btn::before,
.secondary-btn::before,
.ghost-link::before,
.ghost-link-button::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background-color: var(--btn-icon-color, currentColor);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.primary-btn::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 5l7 7-7 7-1.4-1.4 4.6-4.6H4v-2h12.2l-4.6-4.6L13 5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 5l7 7-7 7-1.4-1.4 4.6-4.6H4v-2h12.2l-4.6-4.6L13 5z'/%3E%3C/svg%3E");
}

.secondary-btn::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l2.2 6.8H21l-5.6 4.1L17.6 20 12 15.9 6.4 20l2.2-7.1L3 8.8h6.8L12 2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l2.2 6.8H21l-5.6 4.1L17.6 20 12 15.9 6.4 20l2.2-7.1L3 8.8h6.8L12 2z'/%3E%3C/svg%3E");
}

.ghost-link::before,
.ghost-link-button::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 17l5-5-5-5 1.4-1.4L18 12l-6.6 6.4L10 17z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 17l5-5-5-5 1.4-1.4L18 12l-6.6 6.4L10 17z'/%3E%3C/svg%3E");
}

.primary-btn {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 24px rgba(31, 41, 55, 0.18);
  --btn-icon-color: #ffffff;
}

.primary-btn:hover {
  background: var(--accent-strong);
}

.secondary-btn {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
  --btn-icon-color: var(--text);
}

.ghost-link,
.ghost-link-button {
  --btn-icon-color: currentColor;
}

.hero-points {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.hero-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: var(--brand-gold);
  flex: none;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.08);
  color: var(--accent-strong);
  font-size: 0.85rem;
}

.section {
  margin-top: 30px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.section-head {
  display: grid;
  gap: 12px;
  padding-inline: 2px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(26, 26, 46, 0.12);
}

.section-head .section-kicker {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(249, 168, 37, 0.08);
  border: 1px solid rgba(249, 168, 37, 0.14);
  color: var(--brand-dark);
}

.section-head h2 {
  max-width: 24ch;
}

.section-head .lead {
  max-width: 64ch;
}

.home-page .section-head {
  text-align: start;
  justify-items: start;
}

.home-page .section-head h2,
.home-page .section-head .lead {
  width: 100%;
  max-width: none;
}

.section-dark-services {
  position: relative;
  overflow: hidden;
  padding: 42px 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(249, 168, 37, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 137, 123, 0.20), transparent 32%),
    linear-gradient(145deg, #1a1a2e 0%, #11131f 100%);
  box-shadow: 0 24px 60px rgba(10, 16, 28, 0.24);
}

.section-dark-services .section-head {
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

.section-dark-services .section-kicker,
.section-dark-services .section-head .section-kicker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section-dark-services .section-head h2,
.section-dark-services .section-head .lead,
.section-dark-services .brand-goal-item strong,
.section-dark-services .brand-goal-item p,
.section-dark-services .slider-dot {
  color: #ffffff;
}

.section-dark-services .section-head .lead {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark-services .brand-goals-list {
  padding-bottom: 12px;
}

.section-dark-services .brand-goal-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.section-dark-services .brand-goal-item p {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark-services .slider-dot {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 1px rgba(26, 26, 46, 0.25) inset;
}

.section-dark-services .slider-dot.is-active {
  background: #f9a825;
  border-color: #f9a825;
  box-shadow:
    0 0 0 2px rgba(26, 26, 46, 0.20),
    0 0 0 6px rgba(249, 168, 37, 0.18);
}

.section-dark-services .primary-btn,
.section-dark-services .secondary-btn {
  min-height: 48px;
  background: #f9a825;
  border-color: #f9a825;
  color: #1a1a2e;
  box-shadow: 0 14px 28px rgba(249, 168, 37, 0.22);
}

.section-dark-services .primary-btn:hover,
.section-dark-services .secondary-btn:hover {
  background: #ffb72c;
  border-color: #ffb72c;
}

.section-dark-services .secondary-btn {
  background: transparent;
  color: #f9a825;
  border-color: rgba(249, 168, 37, 0.75);
  box-shadow: none;
}

.section-dark-services .secondary-btn:hover {
  background: rgba(249, 168, 37, 0.10);
  color: #ffffff;
}

.home-page :is(.home-hero-shell, .section-dark-services, .footer) .primary-btn,
.home-page :is(.home-hero-shell, .section-dark-services, .footer) .secondary-btn {
  background: #f9a825;
  border-color: #f9a825;
  color: #1a1a2e;
  box-shadow: 0 14px 28px rgba(249, 168, 37, 0.22);
}

.home-page :is(.home-hero-shell, .section-dark-services, .footer) .primary-btn:hover,
.home-page :is(.home-hero-shell, .section-dark-services, .footer) .secondary-btn:hover {
  background: #ffb72c;
  border-color: #ffb72c;
}

.home-page :is(.home-hero-shell, .section-dark-services, .footer) .secondary-btn {
  background: transparent;
  color: #f9a825;
  border-color: rgba(249, 168, 37, 0.75);
  box-shadow: none;
}

.home-page :is(.home-hero-shell, .section-dark-services, .footer) .secondary-btn:hover {
  background: rgba(249, 168, 37, 0.10);
  color: #ffffff;
}

.brand-direction-grid,
.brand-values-grid,
.brand-services-grid,
.brand-goals-list {
  display: grid;
  gap: 18px;
}

.brand-direction-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-panel,
.brand-value-card,
.brand-service-card,
.brand-goal-item {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(26, 26, 46, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 168, 37, 0.02) 100%);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.05);
}

.brand-panel {
  min-height: 190px;
  display: grid;
  gap: 14px;
  align-content: start;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-panel::after,
.brand-service-card::after,
.brand-value-card::after,
.brand-goal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.brand-panel:hover,
.brand-service-card:hover,
.brand-value-card:hover,
.brand-goal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.08);
}

.brand-panel:hover::after,
.brand-service-card:hover::after,
.brand-value-card:hover::after,
.brand-goal-item:hover::after {
  opacity: 1;
}

.brand-panel-vision {
  background:
    radial-gradient(circle at top left, rgba(0, 137, 123, 0.12), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, rgba(0, 137, 123, 0.03) 100%);
  border-color: rgba(0, 137, 123, 0.18);
  color: var(--text);
}

.brand-panel-mission {
  background:
    radial-gradient(circle at top left, rgba(249, 168, 37, 0.10), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, rgba(249, 168, 37, 0.03) 100%);
  border-color: rgba(249, 168, 37, 0.18);
}

.brand-panel-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f9a825;
  color: #1a1a2e;
  font-size: 0.82rem;
  font-weight: 700;
}

.brand-panel h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.28;
}

.brand-panel-mission h3 {
  color: #1a1a2e;
}

.brand-values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-goals-list {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.brand-goals-list::-webkit-scrollbar {
  display: none;
}

.brand-value-card {
  border-color: rgba(26, 26, 46, 0.14);
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(249, 168, 37, 0.025) 100%);
}

.brand-value-card strong,
.brand-service-card h3,
.brand-goal-item strong {
  font-size: 1.05rem;
}

.brand-value-card strong {
  color: #1a1a2e;
}

.brand-value-card p,
.brand-service-card p,
.brand-goal-item p {
  color: var(--muted);
  line-height: 1.75;
}

.brand-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-service-card {
  display: grid;
  gap: 16px;
  border-color: rgba(26, 26, 46, 0.14);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(26, 26, 46, 0.025) 100%);
}

.brand-service-icon {
  display: inline-flex;
  width: fit-content;
  min-width: 52px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(249, 168, 37, 0.12);
  color: var(--brand-dark);
  font-size: 1.35rem;
}

.brand-service-card .brand-service-icon {
  line-height: 1;
}

.brand-goals-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-goal-item {
  border-color: rgba(249, 168, 37, 0.28);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(280px, 32vw, 420px);
  scroll-snap-align: start;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(26, 26, 46, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, width 180ms ease;
}

.slider-dot.is-active {
  width: 28px;
  background: var(--accent);
  transform: translateY(-1px);
}

.slider-dot:focus-visible {
  outline: 2px solid rgba(0, 137, 123, 0.4);
  outline-offset: 3px;
}

.newsletter-section {
  padding-top: 18px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(26, 26, 46, 0.14);
  background:
    radial-gradient(circle at top right, rgba(249, 168, 37, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(26, 26, 46, 0.10), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, rgba(249, 168, 37, 0.03) 100%);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.06);
}

.newsletter-copy {
  display: grid;
  gap: 12px;
}

.newsletter-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(249, 168, 37, 0.12);
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.04);
}

.newsletter-form .field-stack {
  gap: 8px;
}

.newsletter-form .field-group {
  margin: 0;
}

.newsletter-form input {
  min-height: 50px;
}

.newsletter-form .field-input:focus {
  border-color: rgba(249, 168, 37, 0.45);
  box-shadow: 0 0 0 3px rgba(249, 168, 37, 0.12);
}

.brand-direction-grid .brand-panel h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

.brand-direction-grid .brand-panel p,
.brand-direction-grid .brand-panel .badge-row {
  max-width: 60ch;
}

.brand-values-grid .brand-value-card strong,
.brand-services-grid .brand-service-card h3,
.brand-goals-list .brand-goal-item strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-values-grid .brand-value-card strong::before,
.brand-services-grid .brand-service-card h3::before,
.brand-goals-list .brand-goal-item strong::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(249, 168, 37, 0.14);
  flex: none;
}

.brand-services-grid .brand-service-card .badge-row {
  margin-top: 2px;
}

.brand-services-grid .ui-badge,
.brand-direction-grid .ui-badge,
.brand-values-grid .ui-badge {
  box-shadow: 0 8px 22px rgba(16, 32, 51, 0.04);
}

.section.section:nth-of-type(4) .brand-service-card {
  background: transparent;
}


.section-cream .brand-value-card {
  background: #ffffff;
}

.section-cream {
  background:
    radial-gradient(circle at top right, rgba(249, 168, 37, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 168, 37, 0.02) 100%);
  border-radius: 28px;
}

.section-cream .section-head {
  padding: 22px 24px 10px;
  margin-bottom: 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #00897b 0%, rgba(15, 23, 42, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-cream .section-head h2,
.section-cream .section-head .lead,
.section-cream .section-head .section-kicker {
  color: #ffffff;
}

.section-cream .section-kicker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-cream .brand-value-card {
  border-color: rgba(26, 26, 46, 0.12);
}

.pricing-section {
  padding-top: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(26, 26, 46, 0.14);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(249, 168, 37, 0.02) 100%);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.05);
  position: relative;
  overflow: hidden;
}

.pricing-card.is-featured {
  border-color: rgba(249, 168, 37, 0.3);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.08);
  transform: translateY(-4px);
}

.pricing-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(249, 168, 37, 0.12);
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.pricing-amount {
  display: grid;
  gap: 4px;
}

.pricing-amount strong {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
}

.pricing-amount span {
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-card p {
  color: var(--muted);
  line-height: 1.75;
}

.section-alt-2 .brand-goal-item {
  border-color: rgba(255, 255, 255, 0.12);
}

.section-alt-2 .brand-goal-item strong,
.section-alt-2 .brand-goal-item p {
  color: #ffffff;
}

.feature-grid {
  align-items: stretch;
}

.feature-card,
.callout,
.module-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.feature-card {
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.05);
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(249, 168, 37, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, rgba(26, 26, 46, 0.02) 100%);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
}

.feature-icon,
.module-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(249, 168, 37, 0.12);
  color: var(--brand-dark);
  font-size: 1.35rem;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.06);
}

.feature-icon svg,
.module-icon svg,
.brand-service-icon svg {
  width: 1.2em;
  height: 1.2em;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-list {
  align-items: stretch;
}

.module-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 18px 20px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(249, 168, 37, 0.03) 100%);
  border: 1px solid rgba(0, 137, 123, 0.12);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.04);
}

.module-item span {
  min-width: 42px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.module-item p {
  font-weight: 600;
  line-height: 1.6;
}

.module-item .module-icon {
  min-width: 52px;
  flex: 0 0 auto;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0;
}

.component-grid {
  display: block;
  column-count: 2;
  column-gap: var(--space-4);
}

.design-grid {
  align-items: stretch;
}

.component-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 var(--space-4);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.04);
  vertical-align: top;
  gap: 18px;
  align-self: start;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

html.js body.admin-page .hero,
html.js body.admin-page .section,
html.js body.admin-page .login-shell,
html.js body.admin-page .admin-shell>.admin-hero,
html.js body.admin-page .admin-stats,
html.js body.admin-page .admin-panel,
html.js body.admin-page .auth-card,
html.js body.admin-page .callout,
html.js body.admin-page .footer {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.js body.admin-page .hero.is-visible,
html.js body.admin-page .section.is-visible,
html.js body.admin-page .login-shell.is-visible,
html.js body.admin-page .admin-shell>.admin-hero.is-visible,
html.js body.admin-page .admin-stats.is-visible,
html.js body.admin-page .admin-panel.is-visible,
html.js body.admin-page .auth-card.is-visible,
html.js body.admin-page .callout.is-visible,
html.js body.admin-page .footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.js body.admin-page .feature-card,
html.js body.admin-page .module-item,
html.js body.admin-page .component-card,
html.js body.admin-page .admin-stat-card,
html.js body.admin-page .admin-timeline-item,
html.js body.admin-page .widget-card,
html.js body.admin-page .type-sample,
html.js body.admin-page .palette-item,
html.js body.admin-page .notification-panel {
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.js body.admin-page .feature-card.is-visible,
html.js body.admin-page .module-item.is-visible,
html.js body.admin-page .component-card.is-visible,
html.js body.admin-page .admin-stat-card.is-visible,
html.js body.admin-page .admin-timeline-item.is-visible,
html.js body.admin-page .widget-card.is-visible,
html.js body.admin-page .type-sample.is-visible,
html.js body.admin-page .palette-item.is-visible,
html.js body.admin-page .notification-panel.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.component-card-head {
  display: grid;
  gap: 8px;
}

.component-card-head h3 {
  font-size: 1.1rem;
}

.component-card-head p {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.component-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 12px;
}

.heading-samples {
  display: grid;
  gap: 6px;
}

.typography-stack {
  display: grid;
  gap: 16px;
}

.type-sample {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.type-label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.type-font-ar,
.type-font-en {
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--text);
}

.type-font-ar {
  font-family: var(--font-ar);
}

.type-font-en {
  font-family: "Poppins", sans-serif;
}

.type-rules {
  padding-inline-start: 18px;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.palette-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.palette-item strong {
  display: block;
  color: var(--text);
  font-size: 0.96rem;
}

.palette-item p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
}

.palette-swatch {
  width: 42px;
  height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  flex: 0 0 auto;
}

.palette-primary {
  background: #1f2937;
}

.palette-accent {
  background: #d97706;
}

.palette-surface {
  background: #ffffff;
}

.palette-text {
  background: #102033;
}

.palette-muted {
  background: #6b7280;
}

.palette-line {
  background: #e4e8ee;
}

.sample-h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.sample-h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.08;
}

.sample-subtitle {
  color: var(--muted);
}

.field-stack {
  display: grid;
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.field-group span {
  color: var(--muted);
  font-weight: 600;
}

.field-input,
.field-select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.field-input::placeholder {
  color: #8d97a6;
}

.field-input:focus,
.field-select:focus {
  outline: none;
  border-color: rgba(31, 41, 55, 0.45);
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.12);
}

.field-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  width: fit-content;
  cursor: pointer;
}

.control-stack {
  display: grid;
  gap: 10px;
}

.field-control input[type="checkbox"],
.field-control input[type="radio"],
.field-check input[type="checkbox"],
.field-check input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1.5px solid rgba(31, 41, 55, 0.45);
  background: var(--surface);
  display: inline-grid;
  place-items: center;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  flex: none;
}

.field-control input[type="checkbox"],
.field-check input[type="checkbox"] {
  border-radius: 7px;
}

.field-control input[type="radio"],
.field-check input[type="radio"] {
  border-radius: 50%;
}

.field-control input[type="checkbox"]::before,
.field-check input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 4px;
  transform: scale(0);
  background: white;
  transition: transform 0.15s ease;
}

.field-control input[type="radio"]::before,
.field-check input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  background: white;
  transition: transform 0.15s ease;
}

.field-control input[type="checkbox"]:checked,
.field-control input[type="radio"]:checked,
.field-check input[type="checkbox"]:checked,
.field-check input[type="radio"]:checked {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.12);
}

.field-control input[type="checkbox"]:checked::before,
.field-control input[type="radio"]:checked::before,
.field-check input[type="checkbox"]:checked::before,
.field-check input[type="radio"]:checked::before {
  transform: scale(1);
}

.field-control input[type="checkbox"]:focus-visible,
.field-control input[type="radio"]:focus-visible,
.field-check input[type="checkbox"]:focus-visible,
.field-check input[type="radio"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.2);
}

.search-select-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-select-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.list-badge-wrap {
  display: grid;
  gap: 16px;
}

.clean-list {
  margin: 0;
  padding-inline-start: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.page-breadcrumb-wrap {
  margin-bottom: 18px;
}

.admin-hero .page-breadcrumb-wrap {
  margin-bottom: 0;
  margin-top: 12px;
}

.breadcrumbs a {
  color: var(--accent-strong);
  font-weight: 600;
}

.breadcrumb-current {
  color: var(--text);
  font-weight: 600;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-weight: 600;
}

.tab-btn.is-active {
  background: rgba(31, 41, 55, 0.10);
  border-color: rgba(31, 41, 55, 0.22);
  color: var(--accent-strong);
}

.notification-panels {
  display: grid;
  gap: 12px;
}

.notification-panel {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.notification-panel strong {
  font-size: 0.98rem;
}

.notification-panel p {
  color: var(--muted);
}

.notification-success {
  border-color: rgba(22, 163, 74, 0.22);
  background: rgba(22, 163, 74, 0.08);
}

.notification-warning {
  border-color: rgba(217, 119, 6, 0.22);
  background: rgba(217, 119, 6, 0.06);
}

.notification-danger {
  border-color: rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.05);
}

.cards-preview {
  display: grid;
  gap: 16px;
}

.users-section {
  display: grid;
}

.users-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admins-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.user-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.05);
  align-self: start;
}

.user-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-card {
  align-self: start;
}

.admin-card-photo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  flex: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.user-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.user-avatar-1 {
  background: linear-gradient(135deg, #111827, #334155);
}

.user-avatar-2 {
  background: linear-gradient(135deg, #1f2937, #64748b);
}

.user-avatar-3 {
  background: linear-gradient(135deg, #0f172a, #475569);
}

.user-meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.user-meta strong {
  color: var(--text);
  font-size: 1rem;
}

.user-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.user-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.user-note {
  color: var(--muted);
  line-height: 1.68;
}

.user-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-card-actions {
  justify-content: flex-start;
}

.admin-action-add::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19 11h-6V5h-2v6H5v2h6v6h2v-6h6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19 11h-6V5h-2v6H5v2h6v6h2v-6h6z'/%3E%3C/svg%3E");
}

.admin-action-edit::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 17.25V21h3.75L17.8 9.95l-3.75-3.75L3 17.25zm2.92 2.33H5v-.92l8.82-8.82.92.92-8.82 8.82zM20.7 7.04c.39-.39.39-1.02 0-1.41L18.37 3.3a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.82-1.84z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 17.25V21h3.75L17.8 9.95l-3.75-3.75L3 17.25zm2.92 2.33H5v-.92l8.82-8.82.92.92-8.82 8.82zM20.7 7.04c.39-.39.39-1.02 0-1.41L18.37 3.3a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.82-1.84z'/%3E%3C/svg%3E");
}

.admin-action-email::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.admin-action-cancel::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7 4.3 4.3l6.3 6.3 6.3-6.3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7 4.3 4.3l6.3 6.3 6.3-6.3z'/%3E%3C/svg%3E");
}

.admin-action-save::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19.2 21 7.2l-1.4-1.4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19.2 21 7.2l-1.4-1.4z'/%3E%3C/svg%3E");
}

.admin-manager-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

html[dir="rtl"] .admin-manager-head {
  flex-direction: row-reverse;
}

.admin-empty-state {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
  border: 1px dashed var(--line);
  background: var(--surface-2);
}

.admin-empty-state strong {
  font-size: 1rem;
}

.admin-empty-state p {
  color: var(--muted);
  line-height: 1.65;
}

.admin-modal[hidden] {
  display: none;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(8px);
}

.admin-modal-dialog {
  width: min(860px, 100%);
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.admin-modal-header {
  display: grid;
  gap: 8px;
}

.admin-modal-header h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.18;
}

.admin-modal-header p {
  color: var(--muted);
  line-height: 1.7;
}

.admin-modal-form {
  display: grid;
  gap: 20px;
}

.admin-modal-grid {
  gap: 18px;
}

.admin-modal-grid > .field-group {
  min-width: 0;
}

.field-help {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.admin-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.user-action {
  min-height: 32px;
  padding-inline: 14px;
}

.cards-grid-view {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ui-card-mini {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  gap: 8px;
}

.ui-card-mini span {
  font-weight: 700;
  color: var(--text);
}

.ui-card-mini p {
  color: var(--muted);
  font-size: 0.94rem;
}

.cards-list-view {
  display: grid;
  gap: 10px;
}

.cards-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.cards-list-row strong {
  font-size: 0.98rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ui-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.ui-badge-active {
  background: rgba(31, 41, 55, 0.10);
  border-color: rgba(31, 41, 55, 0.22);
  color: var(--accent-strong);
}

.table-preview {
  display: grid;
  gap: 10px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  align-items: center;
}

.table-head {
  background: var(--surface-2);
  font-weight: 700;
  color: var(--text);
}

.table-status {
  color: var(--accent-strong);
  font-weight: 700;
}

.data-table-shell {
  display: grid;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table-toolbar {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 12px;
}

.data-table {
  display: grid;
  gap: 10px;
}

.data-table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.7fr 0.7fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.data-table-head {
  background: var(--surface-2);
  font-weight: 700;
}

.row-actions {
  font-weight: 700;
  color: var(--accent-strong);
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.chart-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  gap: 14px;
}

.chart-card span {
  color: var(--muted);
  font-weight: 700;
}

.chart-bars {
  display: grid;
  gap: 10px;
}

.chart-bar {
  width: var(--bar-width);
  height: 14px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.14);
}

.chart-bar-highlight {
  background: linear-gradient(90deg, var(--accent), #475569);
}

.chart-donut {
  min-height: 150px;
  display: grid;
  place-items: center;
}

.chart-ring {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 2px;
  background: radial-gradient(circle at center, var(--surface) 58%, transparent 59%),
    conic-gradient(var(--accent) 0 68%, rgba(31, 41, 55, 0.12) 68% 100%);
  border: 1px solid var(--line);
  text-align: center;
}

.chart-ring strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
}

.chart-ring small {
  color: var(--muted);
  font-size: 0.82rem;
}

.chart-breakdown {
  display: grid;
  gap: 10px;
}

.chart-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.chart-breakdown-row span {
  color: var(--muted);
  font-weight: 600;
}

.chart-breakdown-row strong {
  color: var(--text);
  font-weight: 800;
}

.chart-note {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.chart-breakdown-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chart-breakdown-title strong {
  color: var(--text);
  font-size: 0.95rem;
}

.chart-breakdown-title span {
  color: var(--muted);
  font-size: 0.9rem;
}

.loading-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.loading-shimmer {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(228, 232, 238, 0.95) 0%, rgba(240, 243, 247, 1) 50%, rgba(228, 232, 238, 0.95) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.45s ease-in-out infinite;
}

.loading-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.48) 50%, transparent 100%);
  animation: shimmer-slide 1.45s ease-in-out infinite;
}

.loading-shimmer-title {
  height: 18px;
  width: 42%;
}

.loading-shimmer-line {
  height: 12px;
  width: 100%;
}

.loading-shimmer-line.short {
  width: 68%;
}

.loading-shimmer-card {
  height: 74px;
  border-radius: 18px;
}

.loading-lines {
  display: grid;
  gap: 10px;
}

.loading-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.loading-line::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.24);
  flex: none;
}

.loading-caption {
  display: grid;
  gap: 4px;
}

.loading-caption strong {
  color: var(--text);
}

.loading-caption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-5);
  align-items: start;
  margin-top: 0;
}

.admin-settings-shell {
  margin-top: 0;
}

.admin-sidebar {
  display: none;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-sidebar-avatar {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.12);
}

.admin-sidebar-brand-text {
  display: grid;
  gap: 4px;
}

.admin-sidebar-brand-text strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.admin-sidebar-brand-text small {
  color: var(--muted);
  line-height: 1.45;
}

.settings-form {
  display: grid;
  gap: 28px;
}

.settings-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-fields-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.profile-fields-grid > .col-md-6 {
  min-width: 0;
}

.profile-fields-grid > .profile-field-wide {
  grid-column: span 12;
}

.settings-textarea {
  min-height: 132px;
  resize: vertical;
}

.admin-sidebar-nav {
  display: grid;
  gap: 10px;
}

.admin-sidebar-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--text);
  font-weight: 600;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a:focus-visible {
  border-color: rgba(31, 41, 55, 0.22);
  background: rgba(31, 41, 55, 0.06);
  color: var(--accent-strong);
}

.admin-sidebar-nav a.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.18);
}

.admin-sidebar-actions {
  display: grid;
  gap: 12px;
}

.admin-sidebar-actions .primary-btn,
.admin-sidebar-actions .secondary-btn {
  width: 100%;
  justify-content: center;
}

.admin-sidebar-logout {
  justify-content: center;
  text-align: center;
}

.admin-main {
  display: grid;
  gap: var(--space-5);
  min-width: 0;
}

.admin-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 32px 32px 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(249, 168, 37, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(0, 137, 123, 0.06), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.admin-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.30), transparent 58%);
  pointer-events: none;
}

.admin-hero>* {
  position: relative;
  z-index: 1;
}

.admin-hero-copy {
  gap: 12px;
  padding: 0;
}

.admin-hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  color: var(--text);
}

.admin-hero-copy .lead {
  max-width: 60ch;
  color: var(--muted);
}

.admin-hero-actions {
  justify-content: flex-end;
}

.admin-hero .primary-btn {
  --btn-icon-color: #ffffff;
}

.admin-hero .secondary-btn {
  --btn-icon-color: var(--text);
}

.admin-hero .primary-btn {
  background: var(--accent);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(31, 41, 55, 0.18);
}

.admin-hero .primary-btn:hover {
  background: var(--accent-strong);
}

.admin-hero .secondary-btn {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.admin-hero .secondary-btn:hover {
  background: var(--surface-2);
  color: var(--text);
}

.admin-hero .ghost-link {
  color: var(--accent);
  text-decoration: none;
}

.admin-hero .ghost-link:hover,
.admin-hero .ghost-link-button:hover {
  color: var(--accent-strong);
}

.admin-hero .ghost-link::before,
.admin-hero .ghost-link-button::before {
  --btn-icon-color: currentColor;
}

.admin-quick-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.admin-quick-nav::-webkit-scrollbar {
  display: none;
}

.admin-quick-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: none;
}

.admin-quick-nav a:hover,
.admin-quick-nav a:focus-visible {
  border-color: rgba(31, 41, 55, 0.2);
  background: rgba(31, 41, 55, 0.05);
  color: var(--accent-strong);
}

.admin-stats {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.admin-stats::-webkit-scrollbar {
  display: none;
}

.admin-stat-card {
  flex: 0 0 min(320px, 26vw);
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(16, 32, 51, 0.05);
  min-width: 0;
  scroll-snap-align: start;
}

.admin-stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.admin-stat-card strong {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.admin-stat-card small {
  color: #0f9d58;
  font-weight: 700;
}

.admin-stats-dots {
  justify-content: center;
  margin-top: 10px;
}

.admin-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.admin-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  min-width: 0;
}

.admin-panel-wide {
  grid-column: 1 / -1;
}

.profile-summary {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.profile-summary-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.profile-summary-copy h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.2;
}

.profile-summary-email {
  color: var(--muted);
  font-size: 0.96rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.profile-avatar-card {
  display: grid;
  gap: 20px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  align-content: start;
  justify-items: start;
}

.profile-avatar-preview {
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.1);
}

.profile-avatar-large {
  width: min(100%, 176px);
  height: auto;
  aspect-ratio: 1;
}

.profile-field-wide {
  grid-column: 1 / -1;
}

.profile-form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

.profile-form-save {
  width: min(360px, 100%);
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  font-size: 1rem;
  padding-inline: 28px;
}

.admin-timeline {
  display: grid;
  gap: 12px;
}

.admin-timeline-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.admin-timeline-item strong {
  display: block;
  font-size: 0.98rem;
}

.admin-timeline-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.admin-loading-wrap {
  padding-top: 6px;
}

.admin-table-scroll {
  overflow-x: auto;
  padding-bottom: 6px;
}

.admin-table-scroll .data-table {
  min-width: 720px;
}

.admin-panel .cards-preview,
.admin-panel .notification-panels,
.admin-panel .heading-samples,
.admin-panel .users-grid,
.admin-panel .list-badge-wrap {
  margin-top: 2px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes shimmer-slide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes page-spin {
  to {
    transform: rotate(360deg);
  }
}

.login-shell {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(320px, 520px);
  justify-content: center;
  gap: var(--space-5);
  align-items: stretch;
}

.login-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  box-shadow: 0 14px 38px rgba(16, 32, 51, 0.06);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #475569);
}

.login-card {
  padding: 32px;
  display: grid;
  gap: 20px;
}

.login-card-head {
  display: grid;
  gap: 10px;
  padding-bottom: 2px;
}

.login-card-head h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.login-card-head p {
  color: var(--muted);
  max-width: 58ch;
}

.login-form {
  display: grid;
  gap: 14px;
}

.auth-notice {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.95rem;
}

.auth-notice-success {
  border-color: rgba(22, 163, 74, 0.22);
  background: rgba(22, 163, 74, 0.08);
}

.auth-notice-warning {
  border-color: rgba(217, 119, 6, 0.24);
  background: rgba(217, 119, 6, 0.08);
}

.auth-notice-error {
  border-color: rgba(220, 38, 38, 0.24);
  background: rgba(220, 38, 38, 0.08);
}

.otp-code-input {
  text-align: center;
  letter-spacing: 0.24em;
  font-size: 1.1rem;
}

.otp-hint {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: -2px;
}

.otp-actions {
  justify-content: flex-end;
}

.otp-resend-form {
  margin: 0;
}

.otp-destination {
  display: inline-block;
  margin-inline-start: 6px;
  font-weight: 700;
  color: var(--accent-strong);
}

.field-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.field-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.login-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.login-security {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--surface-2), #ffffff);
  border: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.login-security h2 {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.25;
}

.login-security-list {
  margin: 0;
  padding-inline-start: 20px;
  display: grid;
  gap: 8px;
}

.login-security-list li {
  color: var(--muted);
}

.login-security p {
  font-size: 0.92rem;
}

.login-form {
  padding-top: 4px;
}

.callout {
  margin-top: 16px;
  padding: 30px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: center;
}

.callout p {
  max-width: 54ch;
  color: var(--muted);
}

.footer {
  margin-top: 34px;
  padding: 28px 18px 18px;
  border: 1px solid rgba(249, 168, 37, 0.18);
  border-radius: 26px;
  background: linear-gradient(180deg, var(--brand-dark) 0%, var(--brand-dark) 100%);
  box-shadow: 0 22px 60px rgba(26, 26, 46, 0.22);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(249, 168, 37, 0.12);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links-column {
  min-width: 0;
}

.footer-links-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
}

.footer-links-list a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex: 0 0 auto;
}

.footer-column h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

html[dir="rtl"] .footer-links-list {
  justify-content: flex-end;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: 18px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
}

.footer .brand-text strong,
.footer .brand-text small,
.footer h3 {
  color: #ffffff;
}

.footer .brand-mark {
  background: rgba(0, 137, 123, 0.18);
  color: #ffffff;
  border: 1px solid rgba(249, 168, 37, 0.18);
}

.footer .brand-logo {
  height: 32px;
  max-width: 112px;
}

html[dir="rtl"] .topbar,
html[dir="rtl"] .callout,
html[dir="rtl"] .footer {
  direction: rtl;
}

html[dir="rtl"] .hero-points {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .hero-points li {
  direction: rtl;
  flex-direction: row;
  justify-content: flex-start;
  text-align: right;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .nav-bar,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .topbar-actions {
  direction: rtl;
}

html[dir="rtl"] .module-item {
  flex-direction: row-reverse;
}

html[dir="rtl"] .footer-grid,
html[dir="rtl"] .footer-bottom {
  direction: rtl;
}

html[dir="rtl"] .footer-grid,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-column {
  text-align: right;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-head,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .module-item,
html[dir="rtl"] .callout {
  text-align: right;
}

html[dir="rtl"] .section-head,
html[dir="rtl"] .section-head h2,
html[dir="rtl"] .section-head .section-kicker {
  text-align: right;
}

html[dir="rtl"] .section-head {
  gap: 10px;
}

html[dir="rtl"] .section-head {

  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

html[dir="rtl"] .feature-card h3,
html[dir="rtl"] .feature-card p,
html[dir="rtl"] .module-item p,
html[dir="rtl"] .module-item span {
  text-align: right;
}

html[dir="rtl"] .module-list {
  direction: rtl;
}

html[dir="rtl"] .module-item {
  flex-direction: row;
  justify-content: flex-start;
  text-align: right;
}

html[dir="rtl"] .module-item span,
html[dir="rtl"] .module-item p {
  text-align: right;
}

html[dir="rtl"] .component-card,
html[dir="rtl"] .component-card-head,
html[dir="rtl"] .heading-samples,
html[dir="rtl"] .field-stack,
html[dir="rtl"] .field-group,
html[dir="rtl"] .cards-preview,
html[dir="rtl"] .cards-grid-view,
html[dir="rtl"] .users-grid,
html[dir="rtl"] .cards-list-view,
html[dir="rtl"] .data-table-shell,
html[dir="rtl"] .data-table-toolbar,
html[dir="rtl"] .data-table,
html[dir="rtl"] .list-badge-wrap,
html[dir="rtl"] .clean-list,
html[dir="rtl"] .table-preview,
html[dir="rtl"] .chart-grid,
html[dir="rtl"] .chart-card {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .admin-shell,
html[dir="rtl"] .admin-sidebar,
html[dir="rtl"] .admin-main,
html[dir="rtl"] .admin-hero,
html[dir="rtl"] .admin-stats,
html[dir="rtl"] .admin-panels,
html[dir="rtl"] .admin-panel,
html[dir="rtl"] .admin-sidebar-nav {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .admin-sidebar-brand,
html[dir="rtl"] .admin-hero,
html[dir="rtl"] .admin-timeline-item {
  flex-direction: row;
}

html[dir="rtl"] .admin-hero-actions,
html[dir="rtl"] .admin-sidebar-actions {
  justify-content: flex-start;
}

html[dir="rtl"] .admin-hero {
  justify-content: space-between;
}

html[dir="rtl"] .admin-hero-copy {
  align-items: flex-end;
  text-align: right;
}

html[dir="rtl"] .button-row,
html[dir="rtl"] .badge-row,
html[dir="rtl"] .users-grid,
html[dir="rtl"] .user-card-top,
html[dir="rtl"] .user-actions,
html[dir="rtl"] .search-select-list {
  justify-content: flex-end;
}

html[dir="rtl"] .users-grid {
  direction: rtl;
}

html[dir="rtl"] .user-card {
  text-align: right;
}

html[dir="rtl"] .user-card-top,
html[dir="rtl"] .user-actions {
  flex-direction: row;
  justify-content: flex-start;
}

html[dir="rtl"] .user-badges {
  justify-content: flex-start;
}

html[dir="rtl"] .user-meta,
html[dir="rtl"] .user-note {
  text-align: right;
}

html[dir="rtl"] .user-meta strong,
html[dir="rtl"] .user-meta span,
html[dir="rtl"] .user-badges,
html[dir="rtl"] .user-actions {
  direction: rtl;
}

html[dir="rtl"] .user-action,
html[dir="rtl"] .ui-badge {
  unicode-bidi: plaintext;
}

html[dir="rtl"] .table-row {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .login-shell,
html[dir="rtl"] .login-card,
html[dir="rtl"] .login-card-head,
html[dir="rtl"] .login-form,
html[dir="rtl"] .login-security {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .login-actions,
html[dir="rtl"] .login-meta,
html[dir="rtl"] .field-check {
  justify-content: flex-end;
}

html[dir="rtl"] .cards-grid-view {
  direction: rtl;
}

html[dir="rtl"] .cards-list-row,
html[dir="rtl"] .data-table-row {
  direction: rtl;
  text-align: right;
  grid-auto-flow: dense;
}

html[dir="rtl"] .data-table-toolbar {
  direction: rtl;
}

@media (max-width: 960px) {

  .hero,
  .callout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 28px;
  }

  .component-grid {
    column-count: 1;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-stats {
    gap: 16px;
  }

  .admin-panels {
    grid-template-columns: 1fr;
  }

  .admins-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings-grid {
    grid-template-columns: 1fr;
  }

  .brand-direction-grid,
  .brand-values-grid,
  .brand-services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid[data-pricing-slider] {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pricing-grid[data-pricing-slider]::-webkit-scrollbar {
    display: none;
  }

  .pricing-grid[data-pricing-slider]>.pricing-card {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
  }

  .brand-goals-list {
    padding-inline-end: 4px;
  }

  .brand-goal-item {
    flex-basis: min(82vw, 360px);
  }

  .dark-balance-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-form-actions {
    justify-content: stretch;
  }

  .profile-field-wide {
    grid-column: auto;
  }

  .profile-form-save {
    width: 100%;
  }

  .admin-manager-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-panel-wide {
    grid-column: auto;
  }

  .topbar {
    flex-wrap: nowrap;
    align-items: center;
    padding: 16px;
    top: 10px;
    backdrop-filter: none;
  }

  .nav-toggle {
    display: none;
  }

  .nav-bar {
    position: static;
    top: auto;
    bottom: auto;
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 0;
    border-radius: 0;
    margin-top: 0;
    flex-basis: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow-x: auto;
    overflow-y: hidden;
    transition: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 300;
  }

  .nav-bar-header {
    display: none;
  }

  .nav-bar-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: 0.02em;
  }

  .nav-close {
    display: none;
  }

  .nav-bar.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-bar a {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    min-height: 40px;
    color: rgba(248, 250, 252, 0.88);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
    white-space: nowrap;
  }

  .nav-bar a:hover,
  .nav-bar a:focus-visible {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    text-decoration: none;
  }

  .nav-bar a:hover::after,
  .nav-bar a:focus-visible::after {
    background: transparent;
    transform: scaleX(0);
  }

  .desktop-contact {
    display: inline-flex;
  }

  .topbar-actions {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.46);
    z-index: 240;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .topbar {
    z-index: 320;
  }

  html[dir="ltr"] .nav-bar {
    left: 0;
    right: auto;
    transform: translateX(-100%);
  }

  html[dir="ltr"] .nav-bar.is-open {
    transform: translateX(0);
  }

  html[dir="rtl"] .nav-bar {
    right: 0;
    left: auto;
    transform: translateX(100%);
  }

  html[dir="rtl"] .nav-bar.is-open {
    transform: translateX(0);
  }

  .footer {
    padding: 22px 16px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-sidebar-nav {
    grid-template-columns: 1fr;
  }

  .data-table {
    min-width: 760px;
  }
}

@media (min-width: 768px) {
  .col-md-12 {
    grid-column: span 12;
  }

  .col-md-6 {
    grid-column: span 6;
  }
}

@media (min-width: 1024px) {
  .col-lg-4 {
    grid-column: span 4;
  }

  .col-lg-6 {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  body {
    padding-inline: 6px;
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--max));
    padding-top: 14px;
  }

  .topbar {
    gap: 8px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .lang-switch {
    padding: 3px;
  }

  .palette-grid {
    grid-template-columns: 1fr;
  }

  .lang-btn {
    min-width: 38px;
    height: 34px;
  }

  .nav-toggle {
    width: 40px;
    height: 32px;
  }

  .topbar-actions {
    width: auto;
    flex: 0 0 auto;
    margin-inline-start: auto;
    gap: 8px;
  }

  .nav-bar {
    width: min(88vw, 320px);
  }

  .admins-grid {
    grid-template-columns: 1fr;
  }

  .primary-btn,
  .secondary-btn,
  .ghost-link,
  .ghost-link-button {
    min-width: 46px;
    padding-inline: 0;
    width: 46px;
    color: transparent !important;
    overflow: hidden;
    justify-content: center;
  }

  .primary-btn::before,
  .secondary-btn::before,
  .ghost-link::before,
  .ghost-link-button::before {
    width: 1.1rem;
    height: 1.1rem;
  }

  .feature-card,
  .callout,
  .login-card,
  .component-card,
  .user-card {
    padding: 22px;
  }

  .newsletter-card {
    padding: 22px;
  }

  .users-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-quick-nav {
    padding: 12px;
    gap: 6px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .admin-quick-nav a {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-panel,
  .admin-sidebar {
    padding: 20px;
  }

  .admin-sidebar-nav {
    gap: 8px;
  }

  .admin-sidebar-nav a {
    min-height: 44px;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero-actions {
    width: 100%;
  }

  .users-grid {
    grid-template-columns: 1fr;
  }

  .admins-grid {
    grid-template-columns: 1fr;
  }

  .admin-modal {
    padding: 14px;
  }

  .admin-modal-dialog {
    padding: 20px;
  }

  .admin-modal-actions .primary-btn,
  .admin-modal-actions .secondary-btn {
    width: 100%;
  }

  .admin-action-add,
  .admin-action-edit,
  .admin-action-email,
  .admin-action-cancel,
  .admin-action-save {
    width: auto;
  }

  .lang-switch {
    margin-inline-start: auto;
  }

  .footer-bottom {
    gap: 8px;
  }
}

.home-hero-shell {
  display: grid;
  gap: 0;
  padding: 18px 18px 22px;
  border-radius: 34px;
  margin-top: 14px;
  background:
    radial-gradient(circle at top left, rgba(249, 168, 37, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(0, 137, 123, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(26, 26, 46, 0.98) 0%, rgba(16, 24, 40, 0.98) 100%);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.home-page .home-hero-shell .topbar {
  margin-top: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px 26px 0 0;
  background: transparent;
  box-shadow: none;
}

.home-page .home-hero-shell .hero {
  margin-top: 0;
  border-radius: 0 0 30px 30px;
  border-top: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .home-hero-shell .hero-copy h1,
.home-page .home-hero-shell .hero-copy .lead,
.home-page .home-hero-shell .hero-copy .hero-points,
.home-page .home-hero-shell .hero-copy .hero-points li,
.home-page .home-hero-shell .hero-copy .hero-points li::before {
  color: #ffffff;
}

.home-page .home-hero-shell .hero-copy .lead {
  color: rgba(255, 255, 255, 0.82);
}
