@import url("./theme.css?v=20260625-shell-final");

/* ==================================================================
   APP SHELL
   - Navbar-only public shell
   - Smart-hide sticky topbar
   ================================================================== */

.dp-shell {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 100vh;
}

[data-app-shell] {
  display: none;
}

/* ---------- Sidebar (desktop) ---------- */
.dp-sidebar {
  display: none;
}
.dp-sidebar::-webkit-scrollbar { width: 6px; }
.dp-sidebar::-webkit-scrollbar-thumb { background: var(--muted-3); border-radius: 3px; }

.dp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  text-decoration: none;
}
.dp-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: #1A0E04;
}
.dp-brand strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.16em;
  color: var(--text);
}
.dp-brand span {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.dp-nav-group { display: grid; gap: 2px; margin-top: 4px; }
.dp-nav-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 10px 12px 4px;
}
.dp-nav { display: grid; gap: 2px; align-content: start; }
.dp-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  color: var(--soft);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dp-nav a:hover {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  text-decoration: none;
}
.dp-nav a.active {
  background: var(--accent-soft);
  border-color: var(--accent-ring);
  color: var(--accent-hover);
}
.dp-nav a .ico {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}
.dp-nav a:hover .ico, .dp-nav a.active .ico { color: currentColor; }
.dp-nav-trail {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted-2);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  background: var(--surface);
}

.dp-sidebar-spacer { flex: 1; }
.dp-sidebar-footer {
  align-self: end;
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.dp-sidebar-note { color: var(--muted); font-size: 12px; line-height: 1.5; padding: 0 8px; }
.dp-version {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.10em;
  padding: 0 8px;
}
.dp-socials { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 8px; }
.dp-socials a { color: var(--soft); font-size: 12px; font-weight: 600; }

/* ---------- Main ---------- */
.dp-main { display: flex; flex-direction: column; min-width: 0; width: min(1440px, calc(100% - 48px)); margin: 0 auto; }

/* ---------- Topbar (sticky + smart-hide) ---------- */
.dp-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: transform var(--t-med) var(--ease);
}
.dp-topbar.is-hidden { transform: translateY(-100%); }
/* On mobile, the topbar is too important to ever hide — search and nav must always be reachable */
/* ---------- Site Footer (injected by app-shell) ---------- */
.dp-footer {
  margin-top: 48px;
  padding: 28px 24px 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.dp-footer-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 10px;
}
.dp-footer-brand { display: flex; align-items: center; gap: 10px; }
.dp-footer-tagline { display: block; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-top: 2px; }
.dp-footer-links { display: flex; gap: 14px; }
.dp-footer-links a { color: var(--soft); font-weight: 700; text-decoration: none; }
.dp-footer-links a:hover { color: var(--accent); }
.dp-footer-links button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.dp-footer-links button:hover { color: var(--accent); }
.dp-footer-waitlist {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: var(--soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.dp-footer-waitlist:hover { color: var(--accent); }
.dp-footer-social { display: flex; gap: 12px; }
.dp-footer-social a { color: var(--muted); font-weight: 600; text-decoration: none; }
.dp-footer-social a:hover { color: var(--accent); }
.dp-footer-copy { color: var(--muted-2); }

.dp-legal-lock { overflow: hidden; }

.dp-legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 5, 8, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.dp-legal-overlay[hidden] { display: none; }
.dp-legal-paper [hidden] { display: none !important; }
.dp-legal-paper {
  width: min(780px, 100%);
  max-height: min(86vh, 860px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #f7f5ef;
  color: #151515;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}
.dp-legal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  background: #f7f5ef;
}
.dp-legal-head h2 {
  margin: 0;
  color: #111;
  font: 700 20px var(--font-head);
  letter-spacing: 0;
}
.dp-legal-close {
  appearance: none;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  background: transparent;
  color: #252525;
  cursor: pointer;
  font: 700 12px var(--font-body);
}
.dp-legal-body {
  overflow: auto;
  padding: 22px;
  color: #242424;
  font: 400 14px/1.7 var(--font-body);
}
.dp-legal-body p {
  margin: 0 0 12px;
}
.dp-legal-section {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.dp-legal-section h3 {
  margin: 0 0 8px;
  color: #111;
  font: 700 15px/1.3 var(--font-head);
  letter-spacing: 0;
}
.dp-legal-body ul {
  margin: 0 0 12px;
  padding-inline-start: 22px;
}
.dp-legal-body li { margin: 4px 0; }
.dp-legal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  background: #f7f5ef;
}
.dp-legal-actions .dp-btn.secondary {
  border-color: rgba(0, 0, 0, 0.18);
  color: #252525;
}
.dp-legal-actions .dp-btn.primary {
  border-color: #111;
  background: #111;
  color: #fff;
}
.dp-legal-actions .dp-btn.primary:hover {
  border-color: #2a2a2a;
  background: #2a2a2a;
  color: #fff;
}

@media (max-width: 760px) {
  .dp-legal-overlay {
    align-items: end;
    padding: 10px;
  }
  .dp-legal-paper {
    max-height: 94vh;
    border-radius: 8px 8px 0 0;
  }
  .dp-legal-head,
  .dp-legal-body,
  .dp-legal-actions {
    padding-inline: 16px;
  }
  .dp-legal-actions {
    flex-direction: column-reverse;
  }
  .dp-legal-actions .dp-btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .dp-footer-row { flex-direction: column; align-items: flex-start; }
  .dp-footer-links, .dp-footer-social { gap: 10px; flex-wrap: wrap; }
}

/* ---------- Explorer Tier Card — Hero integrated (right column, compact) ---------- */
/* ---------- Academy Tier Card — Hero integrated (right column, compact) ---------- */
[data-page="academy"] .dp-hero {
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
  max-width: 1100px;
}
[data-page="academy"] .dp-academy-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
[data-page="academy"] .dp-academy-hero-card:hover {
  border-color: var(--accent-ring);
  box-shadow: 0 0 24px rgba(76, 201, 240, 0.08);
}
[data-page="academy"] .dp-academy-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76, 201, 240, 0.12) 0%, rgba(10, 14, 20, 0.92) 55%);
  z-index: 0;
}
[data-page="academy"] .dp-academy-card-body {
  position: relative;
  z-index: 1;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dp-academy-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4cc9f0;
  background: rgba(76, 201, 240, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.dp-academy-card-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.dp-academy-card-desc {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}
.dp-academy-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: #4cc9f0;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.2);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dp-academy-card-cta:hover {
  background: rgba(76, 201, 240, 0.18);
  border-color: #4cc9f0;
}

/* Academy bottom tier card */
.dp-academy-tier-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-top: 32px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.dp-academy-tier-card:hover {
  border-color: rgba(76, 201, 240, 0.4);
  box-shadow: 0 0 28px rgba(76, 201, 240, 0.08);
}
.dp-academy-tier-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76, 201, 240, 0.15) 0%, rgba(10, 14, 20, 0.94) 60%);
  z-index: 0;
}
.dp-academy-tier-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
}
.dp-academy-tier-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4cc9f0;
  background: rgba(76, 201, 240, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.dp-academy-tier-heading {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  display: block;
  margin-top: 8px;
}
.dp-academy-tier-desc {
  margin: 0;
  font-size: 13px;
  color: var(--soft);
  line-height: 1.45;
  max-width: 52ch;
}
.dp-academy-tier-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #4cc9f0;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.25);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.dp-academy-tier-cta:hover {
  background: rgba(76, 201, 240, 0.18);
  border-color: #4cc9f0;
}

@media (max-width: 760px) {
  [data-page="academy"] .dp-hero { grid-template-columns: 1fr; gap: 18px; }
  .dp-academy-tier-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 16px;
  }
  .dp-academy-tier-heading { font-size: 1rem; }
  .dp-academy-tier-cta { align-self: stretch; text-align: center; justify-content: center; }
}

/* ---------- Secondary plan cards (Plans page) ---------- */
.dp-plan-grid--secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.dp-plan-card--secondary {
  padding: 16px 18px;
  text-align: left;
  opacity: 0.82;
}
.dp-plan-card--secondary h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.dp-plan-card--secondary p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 8px;
}
.dp-plan-card--secondary a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.dp-plan-card--secondary a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .dp-plan-grid--secondary { grid-template-columns: 1fr; }
}
.dp-explorer-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.dp-explorer-hero-card:hover {
  border-color: var(--accent-ring);
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.08);
}
.dp-explorer-hero-card .dp-explorer-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(10, 14, 20, 0.92) 55%);
  z-index: 0;
}
.dp-explorer-hero-card .dp-explorer-card-body {
  position: relative;
  z-index: 1;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dp-explorer-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 107, 53, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.dp-explorer-card-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.dp-explorer-card-desc {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}
.dp-explorer-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dp-explorer-card-cta:hover {
  background: rgba(255, 107, 53, 0.18);
  border-color: var(--accent);
}

/* ---------- Explorer Tier Card — Bottom horizontal variant ---------- */
.dp-explorer-tier-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-top: 32px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.dp-explorer-tier-card:hover {
  border-color: var(--accent-ring);
  box-shadow: 0 0 28px rgba(255, 107, 53, 0.08);
}
.dp-explorer-tier-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(10, 14, 20, 0.94) 60%);
  z-index: 0;
}
.dp-explorer-tier-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
}
.dp-explorer-tier-card .dp-explorer-tier-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 107, 53, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.dp-explorer-tier-heading {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.dp-explorer-tier-desc {
  margin: 0;
  font-size: 13px;
  color: var(--soft);
  line-height: 1.45;
  max-width: 52ch;
}
.dp-explorer-tier-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.25);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.dp-explorer-tier-cta:hover {
  background: rgba(255, 107, 53, 0.18);
  border-color: var(--accent);
}

@media (max-width: 760px) {
  .dp-explorer-tier-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 16px;
  }
  .dp-explorer-tier-heading { font-size: 1rem; }
  .dp-explorer-tier-cta { align-self: stretch; text-align: center; justify-content: center; }
}
/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .dp-topbar { transform: translateY(0) !important; }
  .dp-subnav { transform: translateY(0) !important; }
}

.dp-topbar-hamburger {
  display: none;
  appearance: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.dp-topbar-hamburger:hover { background: var(--surface); }
.dp-topbar-hamburger svg { width: 16px; height: 16px; }
@media (max-width: 920px) {
  .dp-topbar-hamburger { display: inline-flex; }
}

.dp-topbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
  white-space: nowrap;
}
.dp-topbar-brand:hover { color: var(--accent); }

.dp-topbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 auto;
}
.dp-topbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dp-topbar-link:hover {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
}
.dp-topbar-link.active {
  color: var(--accent);
  background: rgba(255, 107, 53, 0.12);
  border-color: var(--accent-ring);
}

.dp-topbar-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.dp-topbar-crumb .sep { color: var(--muted-3); }
.dp-topbar-crumb .cur { color: var(--text); }

.dp-topbar-search {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.dp-topbar-search:focus-within { border-color: var(--accent); background: var(--surface); }
.dp-topbar-search svg { color: var(--muted); flex-shrink: 0; }
.dp-topbar-search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13.5px;
}
.dp-topbar-search input::placeholder { color: var(--muted); }
.dp-topbar-search kbd {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  padding: 2px 6px;
  border-radius: var(--radius-xs);
}

.dp-topbar-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

/* Topbar marketing / ad slot */
.dp-topbar-ad-slot {
  flex: 1;
  max-width: 380px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  padding: 0 16px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.dp-topbar-ad-slot:hover { border-color: var(--accent); color: var(--soft); }
@media (max-width: 920px) {
  .dp-topbar-ad-slot { max-width: 200px; font-size: 10px; padding: 0 10px; }
  .dp-topbar-links { display: none; }
  .dp-topbar-brand { font-size: 12px; letter-spacing: 0.13em; }
}
@media (max-width: 760px) {
  .dp-topbar-ad-slot { display: none; }
  .dp-topbar { padding: 8px 12px; gap: 8px; }
  .dp-topbar-actions { gap: 6px; }
  .dp-topbar-actions .dp-btn.primary.small { display: none; }
  .dp-avatar-btn { max-width: 116px; }
  .dp-avatar-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.dp-icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--soft);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  position: relative;
}
.dp-icon-btn:hover { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.dp-icon-btn[data-dot]::after {
  content: ""; position: absolute; top: 6px; right: 6px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 2px var(--bg);
}

.dp-avatar-btn {
  height: 36px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dp-avatar-btn:hover { background: var(--surface); border-color: var(--border-strong); }
.dp-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FF8550 0%, #FF6B35 35%, #2A3441 100%);
  display: inline-block;
  border: 1px solid var(--border-strong);
}

/* ---------- Compact filter rail (sits directly under topbar) ---------- */
.dp-subnav {
  position: sticky;
  top: 60px; /* under the topbar */
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transform: translateY(0);
  transition: transform var(--t-med) var(--ease);
  overflow-x: hidden;
}
.dp-subnav.is-hidden { transform: translateY(-160%); }
.dp-subnav .label-mini {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.dp-subnav .dp-chip-rail { flex: 1; min-width: 0; }

/* ---------- Page content padding ---------- */
.dp-main > :not(.dp-topbar):not(.dp-subnav) {
  padding: 24px clamp(16px, 4vw, 36px);
}
.dp-main > section + section,
.dp-main > div + section,
.dp-main > section + div { margin-top: 32px; }

.dp-hero {
  display: grid;
  gap: 12px;
  max-width: 880px;
  padding-top: 8px !important;
}
/* Explore page: 2-col hero with tier card */
[data-page="explore"] .dp-hero {
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
  max-width: 1100px;
}
.dp-hero-text { min-width: 0; }
.dp-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.dp-hero h1 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.018em;
}
.dp-hero p {
  margin: 0;
  max-width: 64ch;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.55;
}

.dp-section { display: grid; gap: 16px; }
.dp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.dp-section-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.dp-section-head p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.dp-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .dp-shell { grid-template-columns: 1fr; }
  .dp-sidebar { display: none; }
  .dp-grid { grid-template-columns: 1fr 1fr; }
  .dp-subnav { top: 56px; padding: 8px 14px; }
  .dp-topbar-crumb { display: none; }
}

@media (max-width: 760px) {
  .dp-main > :not(.dp-topbar):not(.dp-subnav) { padding: 18px 14px; }
  .dp-topbar { padding: 10px 14px; }
  [data-page="explore"] .dp-hero { grid-template-columns: 1fr; gap: 18px; }
  .dp-hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .dp-grid { grid-template-columns: 1fr; }
  .dp-section-head { align-items: start; flex-direction: column; gap: 8px; }
}

/* ---------- Tease launch navbar-only overrides ---------- */
[data-app-shell] {
  display: none !important;
}

.dp-shell {
  display: block !important;
}

.dp-main {
  width: min(1440px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto;
}

.dp-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  width: 100vw;
  min-height: 60px;
  margin-inline-start: calc(50% - 50vw);
  margin-inline-end: 0;
  padding: 0 2rem;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.dp-avatar-btn,
.dp-topbar-search,
.dp-topbar-ad-slot,
.dp-topbar-crumb {
  display: none !important;
}

.dp-topbar-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
}

.dp-topbar-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dp-topbar-brand .is-white { color: var(--text); }
.dp-topbar-brand .is-accent { color: var(--accent); }

.dp-topbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
  justify-self: center;
}

.dp-topbar-link {
  color: var(--text-soft);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.dp-topbar-link--button {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text-soft);
}

.dp-topbar-link:hover,
.dp-topbar-link.active,
.dp-topbar-link--button:hover {
  color: var(--text);
  background: var(--surface-3);
}

.dp-topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  padding: 0.45rem 1.1rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.dp-topbar-cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.dp-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: max-content;
}

.dp-topbar-account {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.dp-topbar-account:hover {
  color: var(--text);
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.dp-topbar-mobile {
  display: none;
}

.dp-scroll-band {
  overflow: hidden;
  margin: 18px 0 8px;
  width: 100vw;
  margin-inline-start: calc(50% - 50vw);
  margin-inline-end: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.95rem 0;
  background: var(--surface);
  white-space: nowrap;
}

.dp-scroll-band.dp-scroll-band--top {
  margin-top: 0;
}

.dp-scroll-band.dp-scroll-band--bottom {
  margin-top: 34px;
  margin-bottom: 0;
}

.dp-scroll-band-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  animation-name: dp-scroll-left;
  animation-duration: 28s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transform: translate3d(0, 0, 0);
}

.dp-scroll-band-inner span {
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
  font-family: var(--font-head);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.dp-scroll-band-inner .hot {
  color: var(--accent-2);
}

@keyframes dp-scroll-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .dp-scroll-band-inner {
    animation: none;
  }
}

.dp-footer {
  padding: 28px 0 20px;
}

.dp-launch-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0 6px;
}

.dp-launch-hero > .dp-site-lead-card {
  align-self: center;
}

.dp-launch-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.dp-launch-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.dp-launch-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.028em;
  text-transform: uppercase;
  max-width: 12ch;
}

.dp-launch-title em {
  display: block;
  font-style: normal;
  color: var(--accent);
}

.dp-launch-copy {
  margin: 12px 0 0;
  max-width: 54ch;
  color: var(--soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.dp-launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dp-launch-band {
  margin: 16px 0 0;
  padding: 26px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.dp-launch-band-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.dp-launch-band-label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.dp-launch-band-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.dp-launch-band-copy {
  margin: 14px auto 0;
  max-width: 58ch;
  color: var(--soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.dp-launch-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.dp-launch-input {
  min-width: min(100%, 320px);
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  color: var(--text);
  font: inherit;
}

.dp-launch-input::placeholder {
  color: var(--muted);
}

.dp-site-lead-card {
  width: min(100% - 28px, 960px);
  margin: 22px auto;
}

.dp-site-lead-card.is-hero {
  width: 100%;
  margin: 0;
}

.dp-site-lead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 106, 42, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}

.dp-site-lead-card.is-hero .dp-site-lead-inner {
  display: grid;
  align-items: start;
  gap: 16px;
  padding: 20px;
}

.dp-site-lead-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.dp-site-lead-inner h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.dp-site-lead-inner p {
  max-width: 66ch;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.dp-site-lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dp-site-lead-card.is-hero .dp-site-lead-actions .dp-btn {
  flex: 1 1 150px;
  justify-content: center;
}

.dp-launch-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.dp-launch-section-head h2 {
  margin: 6px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.dp-launch-section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.dp-waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(3, 5, 8, 0.82);
  backdrop-filter: blur(12px);
}

body.dp-waitlist-open {
  overflow: hidden;
}

.dp-waitlist-modal.is-open {
  display: flex;
}

.dp-waitlist-dialog {
  width: min(100%, 540px);
  max-height: min(92vh, 760px);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 23, 31, 0.98), rgba(10, 14, 20, 1));
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 138, 61, 0.04);
  overflow: auto;
}

/* Public localization: Arabic is the first RTL locale; rules remain locale-generic. */
.dp-language-switch {
  min-height: 36px;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--soft);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.dp-language-switch:hover {
  border-color: var(--accent);
  color: var(--text);
}

html[dir="rtl"] body {
  font-family: var(--font-ar-body), var(--font-body), sans-serif;
  text-align: start;
}

html[dir="rtl"] .dp-topbar-brand,
html[dir="rtl"] .dp-footer-brand,
html[dir="rtl"] [dir="ltr"] {
  direction: ltr;
}

html[dir="rtl"] .dp-topbar-link,
html[dir="rtl"] .dp-topbar-cta,
html[dir="rtl"] .dp-btn,
html[dir="rtl"] .dp-launch-title,
html[dir="rtl"] .dp-launch-band-title,
html[dir="rtl"] .dp-hero h1,
html[dir="rtl"] .dp-section-head h2,
html[dir="rtl"] .dp-launch-section-head h2,
html[dir="rtl"] .dp-waitlist-heading {
  letter-spacing: 0;
  text-transform: none;
}

html[dir="rtl"] .dp-topbar-cta {
  margin-inline-start: 0.5rem;
  margin-left: 0;
}

html[dir="rtl"] .dp-launch-eyebrow::before {
  order: 2;
}

html[dir="rtl"] .dp-launch-copy,
html[dir="rtl"] .dp-hero p {
  max-width: 62ch;
}

html[dir="rtl"] .dp-launch-hero,
html[dir="rtl"] .dp-hero,
html[dir="rtl"] .dp-section,
html[dir="rtl"] .dp-launch-band-inner,
html[dir="rtl"] .dp-article {
  text-align: start;
}

html[dir="rtl"] .dp-launch-actions,
html[dir="rtl"] .dp-board-card-actions,
html[dir="rtl"] .dp-board-tags,
html[dir="rtl"] .dp-board-indicators {
  justify-content: flex-start;
}

html[dir="rtl"] .dp-footer-row,
html[dir="rtl"] .dp-footer-links,
html[dir="rtl"] .dp-footer-social {
  direction: rtl;
}

html[dir="rtl"] .dp-footer-brand {
  align-items: flex-start;
}

html[dir="rtl"] .dp-waitlist-close {
  right: auto;
  inset-inline-end: 14px;
}

html[dir="rtl"] .dp-waitlist-header {
  padding-right: 0;
  padding-inline-end: 42px;
}

html[dir="rtl"] .dp-waitlist-field > span small {
  margin-left: 0;
  margin-inline-start: 5px;
}

html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[name="whatsapp"],
html[dir="rtl"] .dp-mono {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] canvas,
html[dir="rtl"] .dp-detail-canvas,
html[dir="rtl"] .dp-detail-viewer-mount {
  direction: ltr;
}

@media (max-width: 920px) {
  .dp-topbar-actions .dp-language-switch {
    display: none;
  }

  html[dir="rtl"] .dp-topbar-mobile-link,
  html[dir="rtl"] .dp-topbar-mobile-account {
    justify-content: flex-start;
    text-align: start;
  }
}

/* Public polish: small motion, no layout shift, disabled for reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .dp-launch-hero,
  .dp-hero,
  .dp-section,
  .dp-blog-card,
  .dp-card-shell,
  .dp-toolkit-card,
  .dp-owned-card {
    animation: dp-soft-enter 520ms cubic-bezier(.2,.8,.2,1) both;
  }

  .dp-launch-hero { animation-delay: 40ms; }
  .dp-section { animation-delay: 90ms; }

  .dp-btn,
  .dp-blog-card,
  .dp-card-shell,
  .dp-toolkit-card,
  .dp-owned-card {
    transition:
      transform 180ms cubic-bezier(.2,.8,.2,1),
      border-color 180ms ease,
      background-color 180ms ease,
      box-shadow 180ms ease;
  }

  .dp-btn:hover,
  .dp-blog-card:hover,
  .dp-card-shell:hover,
  .dp-toolkit-card:hover,
  .dp-owned-card:hover {
    transform: translateY(-2px);
  }

  @keyframes dp-soft-enter {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Authority shell: minimal technical rail, no pill navigation */
.dp-topbar {
  padding: 0 clamp(18px, 3vw, 48px);
  background: rgba(4, 6, 9, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.dp-topbar-inner.dp-topbar-pro {
  min-height: 72px;
  grid-template-columns: auto minmax(420px, 1fr) minmax(250px, 360px) auto auto;
  gap: clamp(18px, 2.3vw, 34px);
}

.dp-topbar-pro .dp-topbar-brand {
  width: 248px;
  height: 42px;
  padding-inline-end: 28px;
  border-color: rgba(255, 255, 255, 0.12);
}

.dp-topbar-pro .dp-topbar-brand img {
  width: 220px;
  max-width: 220px;
  max-height: 36px;
  object-fit: contain;
}

.dp-topbar-pro .dp-topbar-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
}

.dp-topbar-pro .dp-topbar-link {
  position: relative;
  min-height: 72px;
  padding: 0;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(238, 242, 247, 0.68);
  font: 700 13px/1 var(--font-ui);
  letter-spacing: 0.01em;
  text-transform: none;
}

.dp-topbar-pro .dp-topbar-link::before {
  content: none;
}

.dp-topbar-pro .dp-topbar-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 2px;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  opacity: 0;
  transform: scaleX(0.18);
  transition: opacity 140ms ease, transform 140ms ease;
}

.dp-topbar-pro .dp-topbar-link:hover,
.dp-topbar-pro .dp-topbar-link.active {
  color: #fff;
  background: transparent;
  border: 0;
}

.dp-topbar-pro .dp-topbar-link:hover::after,
.dp-topbar-pro .dp-topbar-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.dp-topbar-pro .dp-topbar-link .dp-nav-ico,
.dp-topbar-pro .dp-topbar-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.72;
}

.dp-topbar-pro .dp-topbar-link.active .dp-nav-ico,
.dp-topbar-pro .dp-topbar-link:hover .dp-nav-ico,
.dp-topbar-pro .dp-topbar-link.active svg,
.dp-topbar-pro .dp-topbar-link:hover svg {
  opacity: 1;
}

.dp-topbar-pro .dp-topbar-link em {
  margin-inline-start: 3px;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 103, 52, 0.58);
  background: transparent;
  color: var(--accent);
  box-shadow: none;
  font: 800 9px/1 var(--font-ui);
}

.dp-topbar-pro .dp-topbar-search {
  height: 38px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  box-shadow: none;
  padding-inline: 0;
}

.dp-topbar-pro .dp-topbar-search:focus-within {
  border-color: #fff;
  box-shadow: none;
}

.dp-language-switch,
.dp-topbar-account,
.dp-topbar-bell,
.dp-account-trigger {
  min-height: 38px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  background: transparent;
  box-shadow: none;
  color: rgba(238,242,247,0.78);
}

.dp-language-switch:hover,
.dp-topbar-account:hover,
.dp-topbar-bell:hover,
.dp-account-trigger:hover {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.dp-topbar-bell {
  width: 38px;
  height: 38px;
}

.dp-topbar-bell span {
  top: -7px;
  right: -7px;
  box-shadow: 0 0 0 3px #05070a;
}

.dp-account-trigger {
  min-width: 150px;
  gap: 10px;
  padding: 0 2px;
}

.dp-account-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,103,52,0.95), rgba(112,121,135,0.92));
  box-shadow: none;
}

.dp-account-trigger b {
  color: rgba(238,242,247,0.58);
}

.dp-account-menu {
  top: calc(100% + 10px);
  width: 238px;
  padding: 8px;
  border-radius: 0;
  background: rgba(7, 10, 15, 0.985);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.54);
}

.dp-account-menu a,
.dp-account-menu button {
  min-height: 40px;
  border-radius: 0;
  color: rgba(238,242,247,0.78);
}

.dp-account-menu a:hover,
.dp-account-menu button:hover {
  background: rgba(255,255,255,0.055);
  color: #fff;
}

@media (max-width: 1320px) {
  .dp-topbar-inner.dp-topbar-pro {
    grid-template-columns: auto minmax(280px, 1fr) auto auto;
  }
}

@media (max-width: 920px) {
  .dp-topbar {
    padding: 0 12px;
  }

  .dp-topbar-inner.dp-topbar-pro,
  html[dir="rtl"] .dp-topbar-inner.dp-topbar-pro {
    min-height: 64px;
    border-radius: 0;
    gap: 10px;
  }

  .dp-topbar-pro .dp-topbar-brand,
  .dp-mobile-drawer-head .dp-topbar-brand {
    width: 184px;
    height: 34px;
    border: 0;
  }

  .dp-topbar-pro .dp-topbar-brand img,
  .dp-mobile-drawer-head .dp-topbar-brand img {
    width: 182px;
    max-width: 182px;
    max-height: 30px;
  }

  .dp-topbar-pro .dp-topbar-hamburger {
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    background: transparent;
    box-shadow: none;
  }

  .dp-topbar-pro .dp-topbar-mobile {
    border-radius: 0;
    border-color: rgba(255,255,255,0.12);
    background: rgba(7,10,15,0.985);
  }

  .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link,
  .dp-topbar-pro .dp-topbar-mobile-link,
  .dp-topbar-pro .dp-topbar-mobile-account {
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link.active {
    border-color: rgba(255,255,255,0.16);
    background: transparent;
    box-shadow: inset 3px 0 0 #fff;
  }

  html[dir="rtl"] .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link.active {
    box-shadow: inset -3px 0 0 #fff;
  }
}

.dp-waitlist-dialog-body {
  padding: 28px;
}

.dp-waitlist-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.dp-waitlist-close:hover {
  border-color: rgba(255, 138, 61, 0.5);
  background: rgba(255, 138, 61, 0.1);
  transform: rotate(4deg);
}

.dp-waitlist-header {
  padding-right: 42px;
}

.dp-waitlist-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.dp-waitlist-heading {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.dp-waitlist-copy {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.dp-waitlist-fields {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.dp-waitlist-section-label,
.dp-waitlist-context-label {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dp-waitlist-field-grid,
.dp-waitlist-context-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dp-waitlist-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.dp-waitlist-field > span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.dp-waitlist-field > span b {
  color: var(--accent);
}

.dp-waitlist-field > span small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.dp-waitlist-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--bg-2);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.dp-waitlist-input:focus {
  border-color: rgba(255, 138, 61, 0.75);
  background: rgba(20, 26, 35, 0.98);
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.1);
}

.dp-waitlist-input.is-error {
  border-color: var(--danger);
}

.dp-waitlist-context-fields[hidden],
.dp-waitlist-registration-context[hidden],
[data-registration-media][hidden],
[data-registration-hide][hidden],
[data-registration-success-value][hidden],
[data-registration-success-actions][hidden],
[data-registration-socials][hidden],
[data-waitlist-tag][hidden],
[data-waitlist-note][hidden],
[data-default-context-field][hidden] {
  display: none;
}

.dp-waitlist-registration-context {
  position: relative;
  display: block;
  min-height: 112px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 61, 0.34);
  border-radius: 14px;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 61, 0.14), transparent 48%),
    linear-gradient(135deg, rgba(255, 138, 61, 0.1), rgba(13, 18, 25, 0.94) 58%);
}

.dp-waitlist-context-media {
  position: absolute;
  inset: 0;
}

.dp-waitlist-context-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(0.86) contrast(1.08);
}

.dp-waitlist-context-media span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.98) 0%, rgba(8, 12, 18, 0.83) 46%, rgba(8, 12, 18, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 12, 18, 0.72), transparent 68%);
}

.dp-waitlist-context-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 6px;
  min-height: 112px;
  padding: 18px;
}

.dp-waitlist-registration-context strong {
  max-width: 82%;
  font-family: var(--font-head);
  font-size: 17px;
  line-height: 1.25;
  text-wrap: balance;
}

.dp-waitlist-context-meta {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.dp-waitlist-registration-context.has-thumbnail .dp-waitlist-context-label,
.dp-waitlist-registration-context.has-thumbnail .dp-waitlist-context-meta {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 520px) {
  .dp-waitlist-modal {
    align-items: stretch;
    justify-content: center;
    overflow-y: auto;
    padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
  }

  .dp-waitlist-dialog {
    width: 100%;
    max-height: calc(100dvh - 24px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    margin: auto 0;
    border-radius: 18px;
  }

  .dp-waitlist-dialog-body {
    padding: 22px 16px 20px;
  }

  .dp-waitlist-header {
    padding-right: 38px;
  }

  .dp-waitlist-field-grid,
  .dp-waitlist-context-fields {
    grid-template-columns: 1fr;
  }
}

.dp-waitlist-textarea {
  min-height: 110px;
  resize: vertical;
}

.dp-waitlist-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

html[dir="rtl"] .dp-waitlist-submit {
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
}

.dp-waitlist-status {
  margin-top: 10px;
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
}

.dp-waitlist-status[data-state="error"] {
  color: var(--danger);
}

.dp-waitlist-status[data-state="success"] {
  color: var(--success);
}

.dp-waitlist-success {
  display: none;
  text-align: center;
  padding: 18px 8px 8px;
}

.dp-waitlist-success.is-visible {
  display: grid;
  justify-items: center;
  animation: dpWaitlistSuccessIn 260ms ease both;
}

.dp-waitlist-success-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 138, 61, 0.5);
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 35% 30%, #ff9a5c, var(--accent) 58%, #c94f12);
  box-shadow: 0 0 0 8px rgba(255, 138, 61, 0.08), 0 14px 40px rgba(255, 92, 24, 0.24);
  font-size: 24px;
  font-weight: 900;
}

.dp-waitlist-success-value {
  margin: 18px 0 0;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dp-waitlist-success-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 22px;
}

.dp-waitlist-success-actions .dp-btn {
  justify-content: center;
}

.dp-waitlist-success-socials {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.dp-waitlist-success-socials > span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dp-waitlist-success-socials > div {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.dp-waitlist-success-socials a {
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.dp-waitlist-success-socials a:hover {
  color: var(--accent);
}

@keyframes dpWaitlistSuccessIn {
  from { opacity: 0; transform: translateY(8px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 520px) {
  .dp-waitlist-success-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dp-site-lead-inner {
    align-items: stretch;
    flex-direction: column;
  }
  .dp-site-lead-inner .dp-btn {
    width: 100%;
  }
}

@media (min-width: 900px) {
  .dp-launch-hero {
    grid-template-columns: minmax(280px, 420px) minmax(360px, 520px);
    justify-content: space-between;
    gap: clamp(28px, 8vw, 120px);
    min-height: 270px;
  }
}

.dp-waitlist-note {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .dp-main {
    width: min(100%, calc(100% - 24px));
  }

  .dp-topbar {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 0 1rem;
  }

  .dp-topbar-hamburger {
    display: inline-flex;
    flex-shrink: 0;
    justify-self: end;
  }

  .dp-topbar-links {
    display: none;
  }
  
  .dp-topbar-actions {
    justify-self: end;
  }

  .dp-topbar-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 0.9rem;
    border-radius: 999px;
  }

  .dp-topbar-mobile {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  }

  .dp-topbar.is-mobile-open .dp-topbar-mobile {
    display: grid;
  }

  .dp-topbar-mobile-link,
  .dp-topbar-mobile-account {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
    padding: 0.45rem 0.9rem;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .dp-topbar-mobile-link--button {
    cursor: pointer;
  }

  .dp-topbar-mobile-link:hover,
  .dp-topbar-mobile-link.active,
  .dp-topbar-mobile-account:hover,
  .dp-topbar-mobile-link--button:hover {
    background: var(--surface-3);
    color: var(--text);
  }

  .dp-scroll-band {
    margin-top: 14px;
    margin-inline-start: calc(50% - 50vw);
    margin-inline-end: 0;
  }
}

@media (max-width: 760px) {
  .dp-main {
    width: 100%;
  }

  .dp-main > :not(.dp-topbar):not(.dp-subnav):not(.dp-scroll-band) {
    padding-inline: clamp(14px, 4vw, 20px);
  }

  .dp-launch-title {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }

  .dp-launch-band {
    padding: 22px 14px;
  }

  .dp-launch-form {
    flex-direction: column;
    align-items: stretch;
  }

  .dp-launch-input,
  .dp-launch-form .dp-btn {
    width: 100%;
  }

  .dp-launch-actions .dp-btn {
    flex: 1 1 100%;
  }

  .dp-launch-section-head,
  .dp-section-head,
  .dp-strip-head {
    align-items: stretch;
  }

  .dp-launch-section-head > *,
  .dp-section-head > *,
  .dp-strip-head > * {
    min-width: 0;
  }

  html[dir="rtl"] .dp-footer-row,
  html[dir="rtl"] .dp-footer-links,
  html[dir="rtl"] .dp-footer-social {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

/* Final shell lock: locale changes labels, never brand typography or shell placement. */
.dp-topbar {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  padding-left: clamp(16px, 2.4vw, 32px);
  padding-right: clamp(16px, 2.4vw, 32px);
}

.dp-topbar-brand {
  grid-column: 1;
  justify-self: start;
}

.dp-topbar-links {
  grid-column: 2;
}

.dp-topbar-actions {
  grid-column: 3;
}

.dp-topbar-hamburger {
  grid-column: 4;
  justify-self: end;
}

.dp-topbar,
.dp-topbar-links,
.dp-topbar-actions,
.dp-footer,
.dp-footer-row,
.dp-footer-brand,
.dp-footer-links,
.dp-footer-social {
  direction: ltr;
}

.dp-footer {
  width: 100%;
  padding: 28px clamp(16px, 2.4vw, 32px) 20px;
}

.dp-footer-row {
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.dp-footer-row:last-child {
  justify-content: flex-start;
}

.dp-footer-brand,
.dp-footer-links,
.dp-footer-social {
  align-items: center;
  justify-content: flex-start;
}

.dp-topbar-brand,
.dp-footer .dp-topbar-brand,
html[dir="rtl"] .dp-topbar-brand,
html[dir="rtl"] .dp-footer .dp-topbar-brand {
  direction: ltr;
  font-family: "Sora", "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  word-spacing: normal;
  text-transform: uppercase;
}

html[dir="rtl"] .dp-topbar-link,
html[dir="rtl"] .dp-topbar-cta,
html[dir="rtl"] .dp-footer-links a,
html[dir="rtl"] .dp-footer-copy {
  direction: rtl;
  font-family: var(--font-ar-body), system-ui, sans-serif;
}

html[dir="rtl"] .dp-language-switch,
html[dir="rtl"] .dp-footer-social a {
  direction: ltr;
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: normal;
  word-spacing: normal;
}

@media (max-width: 920px) {
  .dp-topbar,
  html[dir="rtl"] .dp-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    direction: ltr;
    padding-left: 14px;
    padding-right: 14px;
  }

  .dp-topbar-brand {
    grid-column: 1;
  }

  .dp-topbar-actions {
    grid-column: 2;
    justify-self: end;
  }

  .dp-topbar-hamburger {
    grid-column: 3;
    justify-self: end;
  }

  .dp-topbar-mobile {
    grid-column: 1 / -1;
  }

  html[dir="rtl"] .dp-topbar-mobile {
    direction: rtl;
  }

  html[dir="rtl"] .dp-topbar-mobile-link,
  html[dir="rtl"] .dp-topbar-mobile-account {
    direction: rtl;
    font-family: var(--font-ar-body), system-ui, sans-serif;
  }
}

@media (max-width: 760px) {
  .dp-footer {
    padding: 24px 16px 18px;
  }

  .dp-footer-row,
  html[dir="rtl"] .dp-footer-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .dp-footer-brand {
    flex-wrap: wrap;
  }

  .dp-footer-links,
  .dp-footer-social,
  html[dir="rtl"] .dp-footer-links,
  html[dir="rtl"] .dp-footer-social {
    justify-content: flex-start;
  }
}

/* Shared public chrome container: stable physical placement in LTR and RTL. */
.dp-site-shell {
  width: min(100%, 1570px);
  min-width: 0;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
  box-sizing: border-box;
}

.dp-topbar {
  width: auto;
  max-width: none;
  margin-inline: calc((100vw - 100%) / -2);
  padding: 0;
  overflow: visible;
}

.dp-topbar-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  direction: ltr;
}

.dp-topbar-inner > * {
  min-width: 0;
}

.dp-topbar-brand {
  grid-column: 1;
  justify-self: start;
  max-width: 100%;
  flex-shrink: 0;
}

.dp-topbar-links {
  grid-column: 2;
  justify-self: center;
}

.dp-topbar-actions {
  grid-column: 3;
  justify-self: end;
}

.dp-topbar-hamburger {
  grid-column: 4;
  justify-self: end;
}

.dp-footer {
  width: auto;
  max-width: none;
  margin-inline: calc((100vw - 100%) / -2);
  padding: 28px 0 20px;
}

.dp-footer-inner {
  display: grid;
  gap: 10px;
  direction: ltr;
}

.dp-footer-row {
  margin: 0;
  align-items: center;
  justify-content: space-between;
}

.dp-footer-brand {
  flex-wrap: wrap;
}

.dp-footer-copy {
  flex-basis: 100%;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 920px) {
  .dp-topbar-inner,
  html[dir="rtl"] .dp-topbar-inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 10px;
    direction: ltr;
  }

  .dp-topbar-actions {
    grid-column: 3;
  }

  .dp-topbar-hamburger {
    grid-column: 4;
  }

  .dp-topbar-mobile {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .dp-footer-row,
  html[dir="rtl"] .dp-footer-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .dp-site-shell {
    padding-inline: 16px;
  }

  .dp-topbar-inner,
  html[dir="rtl"] .dp-topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .dp-topbar-brand {
    font-size: clamp(1rem, 5.5vw, 1.25rem);
    overflow: visible;
  }

  .dp-topbar-actions {
    grid-column: 2;
  }

  .dp-topbar-hamburger {
    grid-column: 3;
  }

  .dp-footer-row,
  html[dir="rtl"] .dp-footer-row {
    width: 100%;
  }
}

/* Footer lock: physical layout stays consistent across LTR/RTL.
   Desktop = logo/copy left, socials middle, page links right.
   Mobile = stacked vertically. */
.dp-footer-inner {
  direction: ltr;
}

.dp-footer-row,
html[dir="rtl"] .dp-footer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  direction: ltr;
  text-align: left;
}

.dp-footer-brand,
html[dir="rtl"] .dp-footer-brand {
  display: grid;
  justify-items: start;
  justify-self: start;
  gap: 8px;
  min-width: 0;
  direction: ltr;
}

.dp-footer-social,
html[dir="rtl"] .dp-footer-social {
  display: flex;
  justify-content: center;
  justify-self: center;
  gap: 14px;
  min-width: max-content;
  padding: 0;
  direction: ltr;
}

.dp-footer-links,
html[dir="rtl"] .dp-footer-links {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  gap: 16px;
  min-width: 0;
  direction: ltr;
}

html[dir="rtl"] .dp-footer-links a {
  direction: rtl;
}

.dp-footer-copy,
html[dir="rtl"] .dp-footer-copy {
  flex-basis: auto;
  direction: rtl;
  text-align: left;
}

@media (max-width: 760px) {
  .dp-footer-row,
  html[dir="rtl"] .dp-footer-row {
    grid-template-columns: 1fr;
    justify-items: start;
    align-items: start;
    gap: 14px;
    width: 100%;
  }

  .dp-footer-brand,
  .dp-footer-social,
  .dp-footer-links,
  html[dir="rtl"] .dp-footer-brand,
  html[dir="rtl"] .dp-footer-social,
  html[dir="rtl"] .dp-footer-links {
    justify-self: start;
    justify-content: flex-start;
  }

  .dp-footer-links,
  html[dir="rtl"] .dp-footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* Pro commerce shell polish */
.dp-topbar-pro {
  min-height: 74px;
  gap: 22px;
  padding-block: 10px;
}
.dp-topbar-pro .dp-topbar-brand {
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.dp-topbar-pro .dp-topbar-links {
  gap: 10px;
  justify-content: flex-start;
}
.dp-topbar-pro .dp-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  color: #d9dee7;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
  font-weight: 700;
}
.dp-topbar-pro .dp-topbar-link .dp-nav-ico,
.dp-topbar-pro .dp-topbar-link svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}
.dp-topbar-pro .dp-topbar-link em {
  font-style: normal;
  font-size: 10px;
  line-height: 1;
  color: var(--accent);
  border: 1px solid rgba(255, 104, 55, 0.5);
  border-radius: 999px;
  padding: 4px 7px;
}
.dp-topbar-pro .dp-topbar-link:hover,
.dp-topbar-pro .dp-topbar-link.active {
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: inset 0 -2px 0 var(--accent);
}
.dp-topbar-pro .dp-topbar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  max-width: 360px;
  height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  color: #d9dee7;
}
.dp-topbar-pro .dp-topbar-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #eef2f7;
  background: transparent;
  font: 600 13px var(--font-ui);
}
.dp-topbar-pro .dp-topbar-search kbd {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 7px;
  padding: 3px 7px;
  color: #aeb7c5;
  background: rgba(0,0,0,0.22);
}
.dp-topbar-bell,
.dp-account-trigger {
  height: 46px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #edf2f7;
  background: rgba(255,255,255,0.045);
  border-radius: 14px;
}
.dp-topbar-bell {
  position: relative;
  width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dp-topbar-bell span {
  position: absolute;
  top: -7px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: 800 11px/20px var(--font-ui);
}
.dp-account-menu-wrap { position: relative; }
.dp-account-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px 0 8px;
  cursor: pointer;
  font: 800 13px var(--font-ui);
}
.dp-account-avatar {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #7b8797, #232a33 55%, #0d1118);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.dp-account-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 80;
  width: 240px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(28,34,43,0.98), rgba(12,17,24,0.98));
  box-shadow: 0 22px 60px rgba(0,0,0,0.38);
}
.dp-account-menu a,
.dp-account-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 0 11px;
  border: 0;
  border-radius: 10px;
  color: #eef2f7;
  background: transparent;
  text-decoration: none;
  font: 750 13px var(--font-ui);
  text-align: left;
  cursor: pointer;
}
.dp-account-menu a:hover,
.dp-account-menu button:hover { background: rgba(255,255,255,0.07); color: var(--accent); }
.dp-owned-svg-version { color: rgba(166, 178, 195, 0.72); font: 700 10px var(--font-ui); }
@media (max-width: 1120px) {
  .dp-topbar-pro .dp-topbar-search { display: none; }
}
@media (max-width: 920px) {
  .dp-topbar-pro { min-height: 66px; }
  .dp-topbar-pro .dp-topbar-brand { border-right: 0; padding-right: 0; justify-self: center; }
  .dp-topbar-pro .dp-topbar-links,
  .dp-topbar-pro .dp-topbar-actions { display: none; }
  .dp-topbar-pro .dp-topbar-hamburger { grid-column: 1; grid-row: 1; justify-self: start; }
  .dp-topbar-pro .dp-topbar-mobile {
    margin-top: 10px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(28,34,43,0.98), rgba(12,17,24,0.98));
  }
  .dp-topbar.is-mobile-open .dp-topbar-mobile { display: grid; gap: 8px; }
  .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link,
  .dp-topbar-pro .dp-topbar-mobile-link,
  .dp-topbar-pro .dp-topbar-mobile-account {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    border-radius: 12px;
    padding: 0 13px;
    color: #eef2f7;
    text-decoration: none;
    background: rgba(255,255,255,0.035);
  }
  .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link.active { box-shadow: inset 3px 0 0 var(--accent); }
}

/* Pro shell final override: production-grade navbar and mobile drawer */
.dp-topbar {
  background:
    linear-gradient(180deg, rgba(15, 19, 25, 0.96), rgba(7, 10, 14, 0.96)),
    radial-gradient(circle at 20% 0%, rgba(255, 104, 55, 0.08), transparent 28%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.dp-topbar-inner.dp-topbar-pro {
  grid-template-columns: auto minmax(360px, 1fr) minmax(230px, 340px) auto auto;
  min-height: 72px;
  gap: clamp(16px, 2vw, 26px);
}

.dp-topbar-pro .dp-topbar-brand {
  width: 216px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  text-decoration: none;
}

html[dir="rtl"] .dp-topbar-pro .dp-topbar-brand {
  direction: ltr;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 0;
}

.dp-topbar-pro .dp-topbar-brand img {
  width: 100%;
  max-width: 198px;
  height: auto;
  display: block;
}

.dp-topbar-pro .dp-topbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  min-width: 0;
}

.dp-topbar-pro .dp-topbar-link {
  position: relative;
  min-height: 46px;
  padding: 0 13px;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: rgba(238, 242, 247, 0.76);
  background: transparent;
  font: 760 14px/1 var(--font-ui);
  letter-spacing: 0;
  text-transform: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.dp-topbar-pro .dp-topbar-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.dp-topbar-pro .dp-topbar-link:hover,
.dp-topbar-pro .dp-topbar-link.active {
  color: #fff;
  border-color: rgba(255, 104, 55, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028));
  box-shadow: none;
}

.dp-topbar-pro .dp-topbar-link.active::after,
.dp-topbar-pro .dp-topbar-link:hover::after {
  transform: scaleX(1);
}

.dp-topbar-pro .dp-topbar-link .dp-nav-ico,
.dp-topbar-pro .dp-topbar-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.dp-topbar-pro .dp-topbar-link em {
  margin-inline-start: 1px;
  padding: 4px 7px;
  border-color: rgba(255, 104, 55, 0.58);
  background: rgba(255, 104, 55, 0.11);
  color: var(--accent);
  font: 850 9px/1 var(--font-ui);
}

.dp-topbar-pro .dp-topbar-search {
  justify-self: stretch;
  width: 100%;
  min-width: 230px;
  max-width: 360px;
  height: 46px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.dp-topbar-pro .dp-topbar-actions {
  gap: 9px;
  align-items: center;
}

.dp-language-switch,
.dp-topbar-account,
.dp-topbar-bell,
.dp-account-trigger {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  color: #eef2f7;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.dp-language-switch:hover,
.dp-topbar-account:hover,
.dp-topbar-bell:hover,
.dp-account-trigger:hover {
  border-color: rgba(255, 104, 55, 0.34);
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
}

.dp-topbar-bell {
  width: 46px;
  height: 46px;
}

.dp-topbar-bell span {
  top: -8px;
  right: -6px;
  box-shadow: 0 0 0 3px #080b10;
}

html[dir="rtl"] .dp-topbar-bell span {
  right: auto;
  left: -6px;
}

.dp-account-trigger {
  min-width: 150px;
  padding: 0 12px 0 8px;
}

html[dir="rtl"] .dp-account-trigger {
  direction: rtl;
  padding: 0 8px 0 12px;
}

.dp-account-trigger b {
  display: inline-flex;
  margin-inline-start: auto;
  color: rgba(238, 242, 247, 0.72);
}

.dp-account-menu {
  width: 250px;
  padding: 10px;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(28, 34, 43, 0.985), rgba(10, 14, 20, 0.985)),
    radial-gradient(circle at 18% 0%, rgba(255, 104, 55, 0.13), transparent 34%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.48);
}

html[dir="rtl"] .dp-account-menu {
  right: auto;
  left: 0;
  text-align: right;
}

.dp-account-menu a,
.dp-account-menu button {
  min-height: 44px;
  border-radius: 12px;
  font: 760 14px var(--font-ui);
}

html[dir="rtl"] .dp-account-menu a,
html[dir="rtl"] .dp-account-menu button {
  text-align: right;
  direction: rtl;
}

.dp-account-menu a:hover,
.dp-account-menu button:hover {
  background: rgba(255, 104, 55, 0.12);
  color: #fff;
}

@media (max-width: 1320px) {
  .dp-topbar-inner.dp-topbar-pro {
    grid-template-columns: auto minmax(280px, 1fr) auto auto;
  }
  .dp-topbar-pro .dp-topbar-search { display: none; }
}

@media (max-width: 920px) {
  .dp-topbar-inner.dp-topbar-pro,
  html[dir="rtl"] .dp-topbar-inner.dp-topbar-pro {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 68px;
    gap: 10px;
  }

  .dp-topbar-pro .dp-topbar-brand {
    grid-column: 2;
    justify-self: center;
    width: 190px;
    padding: 0;
    border: 0;
  }

  .dp-topbar-pro .dp-topbar-hamburger {
    grid-column: 1;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.11);
  }

  .dp-topbar-pro .dp-topbar-links,
  .dp-topbar-pro .dp-topbar-actions {
    display: none;
  }

  .dp-topbar-pro .dp-topbar-mobile {
    grid-column: 1 / -1;
    width: min(100%, 620px);
    justify-self: center;
    margin-top: 12px;
    padding: 16px;
    border-radius: 20px;
    border-color: rgba(255,255,255,0.13);
    background:
      linear-gradient(180deg, rgba(24, 30, 39, 0.99), rgba(10, 14, 20, 0.99)),
      radial-gradient(circle at 12% 0%, rgba(255, 104, 55, 0.13), transparent 30%);
    box-shadow: 0 24px 70px rgba(0,0,0,0.46);
  }

  .dp-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 54px;
    padding-bottom: 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
  }

  .dp-mobile-drawer-head .dp-topbar-brand {
    width: 190px;
    justify-self: start;
  }

  .dp-topbar.is-mobile-open .dp-topbar-mobile {
    display: grid;
    gap: 8px;
  }

  .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link,
  .dp-topbar-pro .dp-topbar-mobile-link,
  .dp-topbar-pro .dp-topbar-mobile-account {
    position: relative;
    min-height: 54px;
    padding: 0 16px;
    gap: 14px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: rgba(255,255,255,0.035);
    color: #eef2f7;
    font: 760 15px var(--font-ui);
  }

  .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link svg,
  .dp-topbar-pro .dp-topbar-mobile-account svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }

  .dp-topbar-pro .dp-topbar-mobile-account i {
    display: inline-flex;
    margin-inline-start: auto;
    color: rgba(238,242,247,0.6);
  }

  .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link.active {
    border-color: rgba(255, 104, 55, 0.24);
    background: linear-gradient(90deg, rgba(255, 104, 55, 0.13), rgba(255,255,255,0.035));
    box-shadow: inset 4px 0 0 var(--accent);
  }

  html[dir="rtl"] .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link.active {
    box-shadow: inset -4px 0 0 var(--accent);
  }
}

@media (max-width: 520px) {
  .dp-topbar-pro .dp-topbar-brand,
  .dp-mobile-drawer-head .dp-topbar-brand {
    width: 176px;
  }
}

/* Final shell polish: slimmer liquid-glass nav + controlled footer mark */
.dp-topbar {
  padding: 12px clamp(16px, 2.5vw, 34px);
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.94), rgba(5, 7, 10, 0.91)),
    radial-gradient(circle at 14% 0%, rgba(255, 103, 52, 0.12), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(120, 145, 175, 0.08), transparent 28%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28), inset 0 -1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(22px) saturate(1.25);
}

.dp-topbar-inner.dp-topbar-pro {
  min-height: 64px;
  grid-template-columns: auto minmax(420px, 1fr) minmax(250px, 360px) auto auto;
  gap: clamp(14px, 1.8vw, 24px);
}

.dp-topbar-pro .dp-topbar-brand {
  width: 220px;
  height: 38px;
  padding-inline-end: 25px;
  border-color: rgba(255, 255, 255, 0.09);
}

.dp-topbar-pro .dp-topbar-brand img {
  width: 196px;
  max-width: 196px;
  max-height: 34px;
  object-fit: contain;
}

.dp-topbar-pro .dp-topbar-links {
  gap: 5px;
}

.dp-topbar-pro .dp-topbar-link {
  min-height: 42px;
  padding: 0 11px;
  gap: 8px;
  border-radius: 10px;
  color: rgba(238, 242, 247, 0.7);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  font: 720 13.5px/1 var(--font-ui);
}

.dp-topbar-pro .dp-topbar-link::before {
  content: "";
  position: absolute;
  inset: 6px 5px;
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: -1;
}

.dp-topbar-pro .dp-topbar-link::after {
  left: 13px;
  right: 13px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 16px rgba(255, 103, 52, 0.45);
}

.dp-topbar-pro .dp-topbar-link:hover,
.dp-topbar-pro .dp-topbar-link.active {
  color: #fff;
  background: transparent;
  border-color: transparent;
}

.dp-topbar-pro .dp-topbar-link:hover::before,
.dp-topbar-pro .dp-topbar-link.active::before {
  opacity: 1;
  transform: scale(1);
}

.dp-topbar-pro .dp-topbar-link .dp-nav-ico,
.dp-topbar-pro .dp-topbar-link svg {
  width: 18px;
  height: 18px;
  opacity: 0.92;
}

.dp-topbar-pro .dp-topbar-link em {
  padding: 3px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 103, 52, 0.55);
  background: rgba(255, 103, 52, 0.095);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.dp-topbar-pro .dp-topbar-search {
  height: 42px;
  border-radius: 11px;
  border-color: rgba(255, 255, 255, 0.085);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.028)),
    rgba(255,255,255,0.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055), 0 10px 24px rgba(0,0,0,0.14);
}

.dp-topbar-pro .dp-topbar-search:focus-within {
  border-color: rgba(255, 103, 52, 0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.075), 0 0 0 3px rgba(255, 103, 52, 0.1);
}

.dp-language-switch,
.dp-topbar-account,
.dp-topbar-bell,
.dp-account-trigger {
  min-height: 42px;
  border-radius: 11px;
  border-color: rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055), 0 10px 24px rgba(0,0,0,0.12);
}

.dp-topbar-bell {
  width: 42px;
  height: 42px;
}

.dp-account-trigger {
  min-width: 144px;
  gap: 9px;
}

.dp-account-avatar {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 35% 22%, rgba(255,255,255,0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 103, 52, 0.95), rgba(74, 86, 101, 0.95));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 8px 18px rgba(0,0,0,0.22);
}

.dp-account-menu {
  top: calc(100% + 12px);
  width: 242px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(22, 27, 35, 0.98), rgba(8, 11, 16, 0.98)),
    radial-gradient(circle at 22% 0%, rgba(255, 103, 52, 0.14), transparent 34%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 68px rgba(0,0,0,0.52), inset 0 1px 0 rgba(255,255,255,0.055);
}

.dp-account-menu a,
.dp-account-menu button {
  min-height: 42px;
  border-radius: 9px;
}

.dp-footer {
  padding: 24px clamp(16px, 3vw, 40px);
  background: linear-gradient(180deg, rgba(12, 16, 22, 0.98), rgba(5, 7, 10, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.dp-footer-inner,
.dp-footer-row {
  min-height: 0;
}

.dp-footer-brand {
  gap: 12px;
  min-width: 0;
}

.dp-footer .dp-topbar-brand,
.dp-footer .dp-topbar-brand.is-footer-brand,
html[dir="rtl"] .dp-footer .dp-topbar-brand,
html[dir="rtl"] .dp-footer .dp-topbar-brand.is-footer-brand {
  width: 156px;
  height: 30px;
  max-width: 156px;
  padding: 0;
  border: 0;
  flex: 0 0 156px;
}

.dp-footer .dp-topbar-brand img,
.dp-footer .dp-topbar-brand.is-footer-brand img {
  width: 156px;
  max-width: 156px;
  max-height: 28px;
  object-fit: contain;
}

.dp-footer-copy {
  font-size: 11px;
  color: rgba(238,242,247,0.5);
}

@media (max-width: 1320px) {
  .dp-topbar-inner.dp-topbar-pro {
    grid-template-columns: auto minmax(280px, 1fr) auto auto;
  }
}

@media (max-width: 920px) {
  .dp-topbar {
    padding: 10px 12px;
  }

  .dp-topbar-inner.dp-topbar-pro,
  html[dir="rtl"] .dp-topbar-inner.dp-topbar-pro {
    min-height: 60px;
    border-radius: 16px;
  }

  .dp-topbar-pro .dp-topbar-brand,
  .dp-mobile-drawer-head .dp-topbar-brand {
    width: 178px;
    height: 34px;
  }

  .dp-topbar-pro .dp-topbar-brand img,
  .dp-mobile-drawer-head .dp-topbar-brand img {
    width: 176px;
    max-width: 176px;
    max-height: 31px;
  }

  .dp-topbar-pro .dp-topbar-hamburger {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .dp-topbar-pro .dp-topbar-mobile {
    border-radius: 16px;
  }

  .dp-footer .dp-topbar-brand,
  .dp-footer .dp-topbar-brand.is-footer-brand {
    width: 142px;
    max-width: 142px;
    flex-basis: 142px;
  }

  .dp-footer .dp-topbar-brand img,
  .dp-footer .dp-topbar-brand.is-footer-brand img {
    width: 142px;
    max-width: 142px;
  }
}

/* Authority rail wins: final navbar style for production-grade minimalism */
.dp-topbar {
  padding: 0 clamp(18px, 3vw, 48px);
  background: var(--surface-glass);
  border-bottom: 1px solid var(--divider);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(1.12);
}

.dp-topbar-inner.dp-topbar-pro {
  min-height: 64px;
  grid-template-columns: auto minmax(360px, 1fr) auto;
  gap: clamp(22px, 3.2vw, 58px);
  align-items: center;
}

.dp-topbar-pro .dp-topbar-brand {
  width: 232px;
  height: 36px;
  padding-inline-end: 24px;
  border-color: rgba(255, 255, 255, 0.12);
}

.dp-topbar-pro .dp-topbar-brand img {
  width: 210px;
  max-width: 210px;
  max-height: 32px;
  object-fit: contain;
}

.dp-topbar-pro .dp-topbar-links {
  gap: 0;
  justify-content: center;
}

.dp-topbar-pro .dp-topbar-link {
  position: relative;
  min-height: 64px;
  padding: 0 clamp(15px, 1.55vw, 26px);
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(236, 241, 247, 0.68);
  font: 800 14px/1 var(--font-display);
  letter-spacing: 0;
  text-transform: none;
}

.dp-topbar-pro .dp-topbar-link + .dp-topbar-link {
  border-inline-start: 0;
}

.dp-topbar-pro .dp-topbar-link::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: 1px;
  height: 28px;
  background: var(--divider);
  transform: translateY(-50%);
  opacity: 1;
}

.dp-topbar-pro .dp-topbar-link:first-child::before {
  content: none;
}

.dp-topbar-pro .dp-topbar-link::after {
  content: "";
  position: absolute;
  left: clamp(15px, 1.55vw, 26px);
  right: clamp(15px, 1.55vw, 26px);
  bottom: 11px;
  height: 2px;
  border-radius: 0;
  background: rgba(218, 226, 236, 0.62);
  box-shadow: none;
  opacity: 0;
  transform: scaleX(1);
  transition: opacity 140ms ease, transform 140ms ease;
  transform-origin: center;
}

.dp-topbar-pro .dp-topbar-link:hover,
.dp-topbar-pro .dp-topbar-link.active {
  color: rgba(248, 250, 252, 0.94);
  background: transparent;
  border: 0;
}

.dp-topbar-pro .dp-topbar-link:hover::after,
.dp-topbar-pro .dp-topbar-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.dp-topbar-pro .dp-topbar-link .dp-nav-ico,
.dp-topbar-pro .dp-topbar-link svg {
  display: none;
}

.dp-topbar-pro .dp-topbar-link:hover svg,
.dp-topbar-pro .dp-topbar-link.active svg,
.dp-topbar-pro .dp-topbar-link:hover .dp-nav-ico,
.dp-topbar-pro .dp-topbar-link.active .dp-nav-ico {
  opacity: 1;
}

.dp-topbar-pro .dp-topbar-link em {
  position: absolute;
  top: 14px;
  inset-inline-end: 7px;
  margin: 0;
  padding: 1px 4px 2px;
  border-radius: 6px;
  border: 1px solid rgba(255, 103, 52, 0.46);
  background: transparent;
  color: var(--accent);
  box-shadow: none;
  font: 800 7px/1 var(--font-ui);
  letter-spacing: 0.03em;
}

.dp-topbar-pro .dp-topbar-search {
  display: none;
}

.dp-topbar-pro .dp-topbar-actions {
  justify-self: end;
  gap: 10px;
}

.dp-language-switch,
.dp-topbar-account,
.dp-topbar-bell,
.dp-account-trigger {
  min-height: 38px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--divider);
  background: transparent;
  box-shadow: none;
  color: rgba(238,242,247,0.78);
  font-family: var(--font-display);
  font-weight: 800;
}

.dp-language-switch:hover,
.dp-topbar-account:hover,
.dp-topbar-bell:hover,
.dp-account-trigger:hover {
  color: rgba(248,250,252,0.94);
  border-color: rgba(218,226,236,0.58);
  background: transparent;
}

.dp-topbar-bell {
  width: 38px;
  height: 38px;
}

.dp-account-trigger {
  min-width: 150px;
  gap: 10px;
  padding: 0 2px;
}

.dp-account-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,103,52,0.95), rgba(112,121,135,0.92));
  box-shadow: none;
}

.dp-account-menu {
  top: calc(100% + 10px);
  width: 238px;
  padding: 8px;
  border-radius: 0;
  background: var(--surface-panel);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-panel);
}

.dp-account-menu a,
.dp-account-menu button {
  min-height: 40px;
  border-radius: 0;
  color: rgba(238,242,247,0.78);
}

.dp-account-menu a:hover,
.dp-account-menu button:hover {
  background: rgba(255,255,255,0.055);
  color: #fff;
}

@media (max-width: 920px) {
  .dp-topbar {
    padding: 0 12px;
  }

  .dp-topbar-inner.dp-topbar-pro,
  html[dir="rtl"] .dp-topbar-inner.dp-topbar-pro {
    min-height: 60px;
    border-radius: 0;
  }

  .dp-topbar-pro .dp-topbar-brand,
  .dp-mobile-drawer-head .dp-topbar-brand {
    width: 184px;
    height: 34px;
    border: 0;
  }

  .dp-topbar-pro .dp-topbar-brand img,
  .dp-mobile-drawer-head .dp-topbar-brand img {
    width: 182px;
    max-width: 182px;
    max-height: 30px;
  }

  .dp-topbar-pro .dp-topbar-hamburger {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    background: transparent;
    box-shadow: none;
  }

  .dp-topbar-pro .dp-topbar-mobile,
  .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link,
  .dp-topbar-pro .dp-topbar-mobile-link,
  .dp-topbar-pro .dp-topbar-mobile-account {
    border-radius: 0;
  }

  .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link.active {
    background: transparent;
    box-shadow: inset 3px 0 0 rgba(218,226,236,0.68);
  }

  html[dir="rtl"] .dp-topbar-pro .dp-topbar-mobile .dp-topbar-link.active {
    box-shadow: inset -3px 0 0 rgba(218,226,236,0.68);
  }
}
