/* ================================================================
   DEECLIQ — PUBLIC MARKETING SITE
   Apple-inspired: huge type, generous whitespace, scroll-reveal motion.
   Scoped to dl-* classes so it never touches the internal dashboard UI.
   ================================================================ */

.dl-page { background: #f7f7f9; color: #1d1d1f; overflow-x: hidden; }

/* ── Theme-aware text utilities ──────────────────────────────────
   Use these instead of inline color styles — inline styles can't be
   overridden by the dark/neon blocks below, which made some text
   stay low-contrast (or invisible) when switching modes. */
.dl-text-body  { color: #1d1d1f; }
.dl-text-muted { color: #6e6e73; }
.dl-text-brand { color: #2563eb; }
html[data-theme="dark"] .dl-text-body  { color: #f5f5f7; }
html[data-theme="dark"] .dl-text-muted { color: #9a9aa3; }
html[data-theme="dark"] .dl-text-brand { color: #818cf8; }
html[data-theme="dark"].theme-neon .dl-text-body  { color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-text-muted { color: #A1A1AA; }
html[data-theme="dark"].theme-neon .dl-text-brand { color: #39FF14; }

/* ── Sticky nav ──────────────────────────────────────────────── */
.dl-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 5vw;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, padding .35s ease;
}
.dl-nav.dl-nav-scrolled, .dl-nav.dl-nav-drawer-open {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 4px 24px rgba(0,0,0,.06);
  padding: 10px 5vw;
}
html[data-theme="dark"] .dl-nav.dl-nav-scrolled,
html[data-theme="dark"] .dl-nav.dl-nav-drawer-open {
  background: rgba(18,18,26,.97);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.3);
}
.dl-nav-brand { display: flex; align-items: center; gap: 9px; text-decoration: none; justify-self: start; }
.dl-nav-brand-icon {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg,#2563eb,#1d4ed8);
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .85rem;
}
.dl-nav-logo-img {
  width: 230px; height: 80px; border-radius: 0; object-fit: contain;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

/* ── Recreated logo (SVG mark + CSS text, no image file) ────────── */
.dl-logo-mark {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  display: inline-flex;
}
.dl-nav-brand .dl-logo-mark {
  animation: dlNavLogoFloat 3.2s ease-in-out infinite;
}
@keyframes dlNavLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
a:hover > .dl-logo-mark,
a:hover .dl-logo-mark { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .dl-nav-brand .dl-logo-mark { animation: none; }
}
/* Column layout: tagline sits directly below the icon+wordmark row, left
   aligned under it — not squeezed in beside it. Speed-lines use fixed px
   (not %) so they keep tracking the icon's own height instead of the
   taller stacked total. */
.dl-nav-logo-wind { position: relative; display: inline-flex; flex-direction: column; align-items: flex-start; }
.dl-nav-logo-wind .dl-logo-tagline { margin-top: 2px; margin-left: 46px; }
.dl-logo-wordmark {
  background: linear-gradient(90deg,#9333ea,#6d5ef0 55%,#0ea5e9);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-family: inherit;
}
.dl-logo-tagline { color: #8a8a90; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.dl-footer-brand .dl-logo-tagline { margin-top: 4px; margin-left: 54px; }
html[data-theme="dark"] .dl-logo-tagline { color: #9a9aa3; }
html[data-theme="dark"].theme-neon .dl-logo-tagline { color: #A1A1AA; }
html[data-theme="dark"].theme-neon .dl-logo-wordmark { background: linear-gradient(90deg,#39FF14,#1ab8f0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.dl-nav-brand:hover .dl-nav-logo-img { transform: rotate(-6deg) scale(1.08); }

/* ── Footer logo: floating in air ────────────── */
.dl-logo-float-wrap {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 4px;
}
.dl-footer-logo-anim {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  animation: dlLogoFloat 3.6s ease-in-out infinite;
}
@keyframes dlLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-1deg); }
}
@media (prefers-reduced-motion: reduce) {
  .dl-footer-logo-anim { animation: none; }
}

/* ── Speed lines: trailing wind streaks behind the icon. Fixed px (not %)
   so they keep tracking the icon's own size in each context (nav vs
   footer use different $logo_size). ── */
.dl-speed-line {
  position: absolute; left: -16px; height: 2.5px; border-radius: 4px;
  background: linear-gradient(90deg, transparent, #7c3aed 35%, #6366f1 65%, transparent);
  box-shadow: 0 0 5px 1px rgba(99,102,241,.55);
  animation: dlSpeedLine 1.4s ease-in-out infinite;
  z-index: 1; opacity: 0; pointer-events: none;
}
/* Generic fallback sizing/placement — used wherever the logo appears
   without one of the two dedicated wrappers below (tool-page nav,
   sidebar, auth pages, search topbar). */
.dl-speed-1 { width: 13px; top: 8px; }
.dl-speed-2 { width: 9px; top: 16px; }
.dl-speed-3 { width: 11px; top: 24px; }
.dl-nav-logo-wind .dl-speed-line { left: -20px; height: 2.5px; box-shadow: 0 0 5px 1px rgba(99,102,241,.55); }
.dl-nav-logo-wind .dl-speed-1 { width: 16px; top: 10px; }
.dl-nav-logo-wind .dl-speed-2 { width: 11px; top: 19px; }
.dl-nav-logo-wind .dl-speed-3 { width: 14px; top: 28px; }
.dl-logo-float-wrap .dl-speed-line { left: -54px; }
.dl-logo-float-wrap .dl-speed-1 { width: 50px; top: 32%; animation-delay: 0s; }
.dl-logo-float-wrap .dl-speed-2 { width: 34px; top: 50%; animation-delay: .25s; }
.dl-logo-float-wrap .dl-speed-3 { width: 42px; top: 68%; animation-delay: .5s; }
@keyframes dlSpeedLine {
  0%   { opacity: 0; transform: translateX(6px) scaleX(.5); }
  30%  { opacity: 1; transform: translateX(-6px) scaleX(1); }
  70%  { opacity: .85; transform: translateX(-22px) scaleX(1); }
  100% { opacity: 0; transform: translateX(-38px) scaleX(.5); }
}
@media (prefers-reduced-motion: reduce) {
  .dl-speed-line { display: none; }
}
/* Desktop nav links (inside nav bar) */
.dl-nav-links-desktop { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; }
.dl-nav-links-desktop a {
  font-size: .82rem; font-weight: 500; color: #424245; text-decoration: none;
  position: relative; display: inline-block; padding: 8px 14px; border-radius: 999px;
  transition: color .3s ease, background .3s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
.dl-nav-links-desktop a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  border-radius: 2px;
  background: #2563eb; transform: scaleX(0); transition: transform .4s cubic-bezier(.65,0,.35,1);
}
.dl-nav-links-desktop a:hover {
  color: #1d1d1f; background: rgba(37,99,235,.08); transform: translateY(-2px);
}
.dl-nav-links-desktop a.dl-active::after, .dl-nav-links-desktop a:hover::after { transform: scaleX(1); }

/* Mobile drawer (outside nav, fixed panel) */
.dl-nav-links {
  display: flex; flex-direction: column; align-items: stretch; gap: 0;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 9999;
  width: min(86vw, 310px);
  background: #ffffff;
  transform: translateX(-110%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
  overflow-y: auto; overflow-x: hidden;
  box-shadow: 8px 0 48px rgba(0,0,0,.16);
  border-radius: 22px 0 0 22px;
}
.dl-nav-links.dl-nav-links-open { transform: translateX(0); }

.dl-nav-login {
  font-size: .8rem; font-weight: 600; color: #fff; background: #1d1d1f;
  padding: 8px 18px; border-radius: 999px; text-decoration: none;
  transition: background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.dl-nav-login:hover { background: #2563eb; color: #fff; transform: translateY(-1px); }
.dl-nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.dl-nav-search { flex: 0 0 180px; height: 34px; }
.dl-nav-search.ts-expanded { flex: 0 0 260px; }
@media (max-width: 980px) { .dl-nav-search { display: none; } }
.dl-nav-theme {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid #e5e5ea;
  background: #fff; color: #1d1d1f; cursor: pointer; font-size: .85rem;
  display: grid; place-items: center; transition: background .2s, transform .2s, box-shadow .2s;
}
.dl-nav-theme i { transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.dl-nav-theme:hover { background: #f5f5f7; transform: translateY(-1px) scale(1.06); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.dl-nav-theme:hover i { transform: rotate(18deg); }
/* ── Hamburger button (public nav) ──────────────────────────────── */
@keyframes dlBurgerPulse {
  0%   { box-shadow: 0 2px 10px rgba(124,58,237,.4), 0 0 0 0 rgba(124,58,237,.28); }
  60%  { box-shadow: 0 2px 10px rgba(124,58,237,.4), 0 0 0 10px rgba(124,58,237,.0); }
  100% { box-shadow: 0 2px 10px rgba(124,58,237,.4), 0 0 0 0 rgba(124,58,237,.0); }
}
/* ── Hamburger button ────────────────────────────────────────── */
.dl-nav-burger {
  display: none;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  border: none;
  border-radius: 11px;
  cursor: pointer;
  align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(99,102,241,.35);
  transition: transform .18s, box-shadow .18s, opacity .18s;
  flex-shrink: 0;
}
.dl-nav-burger:hover { transform: scale(1.07); box-shadow: 0 5px 18px rgba(99,102,241,.45); }
.dl-nav-burger:active { transform: scale(.93); }
.dl-burger-icon { display: flex; flex-direction: column; gap: 5px; width: 18px; pointer-events: none; }
.dl-burger-icon span {
  display: block; height: 2px; border-radius: 3px; background: #fff;
  transform-origin: center;
  transition: transform .36s cubic-bezier(.68,-.15,.265,1.35), opacity .22s ease, width .28s ease;
}
.dl-burger-icon span:nth-child(1) { width: 18px; }
.dl-burger-icon span:nth-child(2) { width: 12px; }
.dl-burger-icon span:nth-child(3) { width: 18px; }
.dl-nav-burger.dl-burger-open { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 3px 12px rgba(239,68,68,.35); }
.dl-nav-burger.dl-burger-open .dl-burger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 18px; }
.dl-nav-burger.dl-burger-open .dl-burger-icon span:nth-child(2) { opacity: 0; width: 0; }
.dl-nav-burger.dl-burger-open .dl-burger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 18px; }

/* Overlay */
.dl-nav-mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 499;
  background: rgba(15,23,42,.5); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}
.dl-nav-mobile-overlay.dl-nav-mobile-overlay-open { display: block; }

/* ── Drawer inner elements — always styled, visibility via media queries ── */
/* ── Drawer login card (logged out) ─────────────────────────── */
.dl-drawer-login-card {
  position: relative; overflow: hidden;
  margin: 14px 12px 4px;
  border-radius: 18px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #2563eb 100%);
  padding: 20px 18px 18px;
  box-shadow: 0 8px 28px rgba(99,102,241,.38);
}
.dl-drawer-login-orb {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.10); pointer-events: none;
}
.dl-drawer-login-orb-1 { width: 90px; height: 90px; top: -28px; right: -18px; }
.dl-drawer-login-orb-2 { width: 55px; height: 55px; bottom: -16px; left: 10px; }
.dl-drawer-login-top { margin-bottom: 12px; }
.dl-drawer-login-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.18); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 99px;
}
.dl-drawer-login-headline {
  font-size: 1.15rem; font-weight: 800; color: #fff;
  line-height: 1.25; margin-bottom: 5px;
}
.dl-drawer-login-headline span {
  background: linear-gradient(90deg, #fde68a, #fbbf24);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dl-drawer-login-sub {
  font-size: .75rem; color: rgba(255,255,255,.72); margin-bottom: 14px;
}
.dl-drawer-login-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: #4f46e5;
  font-size: .82rem; font-weight: 700;
  padding: 9px 18px; border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0,0,0,.15);
  transition: transform .18s, box-shadow .18s;
}
.dl-drawer-login-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* ── Drawer user card (logged in) ───────────────────────────── */
.dl-drawer-user-card {
  position: relative; overflow: hidden;
  margin: 14px 12px 4px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 16px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
}
.dl-drawer-user-avatar {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  display: grid; place-items: center;
  color: #fff; font-size: .95rem; flex-shrink: 0;
}
.dl-drawer-user-info { flex: 1; }
.dl-drawer-user-info strong { display: block; font-size: .85rem; font-weight: 700; color: #f1f5f9; }
.dl-drawer-user-info small { display: block; font-size: .7rem; color: #64748b; margin-top: 1px; }
.dl-drawer-user-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff; font-size: .75rem; font-weight: 700;
  padding: 7px 13px; border-radius: 99px;
  text-decoration: none; white-space: nowrap;
  transition: opacity .18s;
}
.dl-drawer-user-btn:hover { opacity: .88; }

.dl-drawer-nav-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #94a3b8; padding: 16px 18px 6px;
}

/* Drawer nav links */
.dl-drawer-link {
  display: flex; align-items: center; gap: 13px;
  padding: 9px 14px; margin: 2px 10px;
  border-radius: 13px; color: #1e293b;
  font-size: .93rem; font-weight: 500; text-decoration: none;
  transition: background .15s, transform .15s;
}
.dl-drawer-link:hover { background: #f1f5f9; transform: translateX(4px); }
.dl-drawer-link.dl-active { background: #eff6ff; color: #2563eb; font-weight: 600; }
.dl-drawer-link-icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  color: #fff; font-size: .85rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* Dark mode drawer */
html[data-theme="dark"] .dl-nav-links { background: #0f172a; box-shadow: 8px 0 48px rgba(0,0,0,.5); }
html[data-theme="dark"] .dl-drawer-header { border-bottom-color: #1e293b; }
html[data-theme="dark"] .dl-drawer-logo-text {
  background: linear-gradient(90deg,#c4b5fd,#818cf8,#67e8f9);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
html[data-theme="dark"] .dl-drawer-nav-label { color: #475569; }
html[data-theme="dark"] .dl-drawer-link { color: #cbd5e1; }
html[data-theme="dark"] .dl-drawer-link:hover { background: #1e293b; }
html[data-theme="dark"] .dl-drawer-link.dl-active { background: #1e1b4b; color: #818cf8; }

/* ================================================================
   MOBILE — hamburger visible, desktop nav hidden
   ================================================================ */
@media (max-width: 820px) {
  .dl-nav-burger { display: flex; }
  .dl-nav-search { display: none; }
  .dl-nav-login { display: none; }
  .dl-nav-links-desktop { display: none; }
  .dl-nav-logo-wind .dl-logo-tagline { display: none; }
  .dl-nav { height: 62px; padding: 0 18px; display: flex; justify-content: space-between; align-items: center; gap: 0; }
}

@media (max-width: 480px) {
  #neonToggleBtn { display: none; }
  .dl-nav { height: 58px; padding: 0 14px; }
}


/* ── Drawer header ───────────────────────────────────────────── */
.dl-drawer-header {
  display: flex;
  align-items: center; justify-content: flex-start;
  min-height: 62px; padding: 0 18px;
  flex-shrink: 0;
  border-bottom: 1px solid #f0f4f8;
  visibility: hidden; /* hidden behind nav bar */
}
.dl-drawer-logo { display: flex; align-items: center; gap: 9px; }
.dl-drawer-logo-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, #9333ea, #6366f1);
  color: #fff; font-weight: 900; font-size: .88rem;
  display: grid; place-items: center;
  box-shadow: 0 3px 10px rgba(99,102,241,.3);
}
.dl-drawer-logo-text {
  font-weight: 800; font-size: .98rem;
  background: linear-gradient(90deg,#9333ea,#6d5ef0 55%,#0ea5e9);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.dl-drawer-close {
  width: 38px; height: 38px; border-radius: 11px; border: none;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff; font-size: .9rem;
  cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 3px 12px rgba(239,68,68,.35);
  transition: transform .18s, box-shadow .18s;
  flex-shrink: 0;
}
.dl-drawer-close:hover { transform: scale(1.07); box-shadow: 0 5px 18px rgba(239,68,68,.45); }
.dl-drawer-close:active { transform: scale(.93); }


/* ── Hero ────────────────────────────────────────────────────── */
.dl-hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 6vw 80px;
  overflow: hidden;
}
.dl-hero-glow {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 900px 600px at 50% -10%, rgba(37,99,235,.10) 0%, transparent 70%),
    radial-gradient(ellipse 700px 500px at 90% 30%, rgba(99,102,241,.08) 0%, transparent 70%);
  will-change: transform;
}
.dl-hero-eyebrow {
  font-size: .78rem; font-weight: 600; color: #2563eb; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 22px;
  opacity: 0; transform: translateY(14px);
  animation: dlFadeUp .7s ease .05s forwards;
}
.dl-hero-title {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.04;
  color: #1d1d1f; margin: 0 0 22px;
  opacity: 0; transform: translateY(22px);
  animation: dlFadeUp .8s ease .15s forwards;
}
.dl-hero-title span {
  background: linear-gradient(90deg,#2563eb,#6366f1 40%,#3b82f6 60%,#2563eb);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: dlShimmer 6s linear infinite;
}
@keyframes dlShimmer { to { background-position: -200% center; } }
.dl-hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #6e6e73; max-width: 620px;
  line-height: 1.55; margin: 0 0 38px;
  opacity: 0; transform: translateY(22px);
  animation: dlFadeUp .8s ease .3s forwards;
}
.dl-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(22px);
  animation: dlFadeUp .8s ease .45s forwards;
}
@keyframes dlFadeUp { to { opacity: 1; transform: translateY(0); } }

.dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 999px; font-size: .92rem; font-weight: 600;
  text-decoration: none; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
  cursor: pointer; border: none; position: relative; overflow: hidden;
}
.dl-btn-primary { background: #2563eb; color: #fff; box-shadow: 0 8px 24px rgba(37,99,235,.32); }
.dl-btn-primary::before {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: dlBtnShine 3.2s ease-in-out infinite;
}
@keyframes dlBtnShine {
  0%   { left: -60%; }
  35%  { left: 130%; }
  100% { left: 130%; }
}
.dl-btn-primary:hover { background: #1d4ed8; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,99,235,.4); }
.dl-btn:active { transform: translateY(0) scale(.97); }
.dl-btn-ghost { background: #f5f5f7; color: #1d1d1f; }
.dl-btn-ghost:hover { background: #e8e8ed; color: #1d1d1f; transform: translateY(-2px); }

.dl-hero-search {
  margin-top: 44px; width: 100%; max-width: 560px;
  opacity: 0; transform: translateY(22px);
  animation: dlFadeUp .8s ease .55s forwards;
}
.dl-search-box {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #e5e5ea; border-radius: 999px;
  padding: 8px 8px 8px 22px; box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: box-shadow .25s, border-color .25s;
}
.dl-search-box:focus-within { border-color: #2563eb; box-shadow: 0 14px 34px rgba(37,99,235,.16); transform: translateY(-1px); }
.dl-search-box i { color: #98989d; font-size: .95rem; transition: transform .3s, color .3s; }
.dl-search-box:focus-within i { color: #2563eb; transform: scale(1.15); }
.dl-search-box input { flex: 1; border: none; outline: none; font-size: .94rem; font-family: inherit; background: none; }
.dl-search-box button {
  background: #1d1d1f; color: #fff; border: none; border-radius: 999px;
  padding: 11px 22px; font-size: .85rem; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: background .2s, transform .15s;
}
.dl-search-box button:hover { background: #2563eb; }
.dl-search-box button:active { transform: scale(.94); }

.dl-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px; border: 2px solid #d2d2d7; border-radius: 14px;
  display: flex; justify-content: center; padding-top: 6px;
}
.dl-scroll-cue::after {
  content: ''; width: 4px; height: 8px; border-radius: 2px; background: #98989d;
  animation: dlScrollCue 1.6s ease infinite;
}
@keyframes dlScrollCue { 0%{ opacity:1; transform:translateY(0); } 60%{ opacity:0; transform:translateY(10px); } 100%{ opacity:0; } }


/* ── Floating colour blobs — soft, blurred, slowly drifting accents ──── */
.dl-blob {
  position: absolute; border-radius: 50%; filter: blur(60px);
  opacity: .35; z-index: -1; pointer-events: none;
  animation: dlBlobFloat 14s ease-in-out infinite alternate;
}
.dl-blob-1 { width: 340px; height: 340px; top: -60px; left: -80px; background: radial-gradient(circle, #818cf8, transparent 70%); }
.dl-blob-2 { width: 300px; height: 300px; top: 120px; right: -60px; background: radial-gradient(circle, #f472b6, transparent 70%); animation-delay: -4s; animation-direction: alternate-reverse; }
.dl-blob-3 { width: 260px; height: 260px; bottom: -40px; left: 30%; background: radial-gradient(circle, #34d399, transparent 70%); animation-delay: -8s; }
@keyframes dlBlobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(26px,18px) scale(1.12); }
}

/* ── Tools Ticker ────────────────────────────────────────────── */
.dl-ticker-wrap {
  display: flex; align-items: center; gap: 0;
  background: #f1f5f9; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0;
  overflow: hidden; padding: 0;
}
.dl-ticker-label {
  flex-shrink: 0; padding: 0 20px;
  font-size: .72rem; font-weight: 800; color: #6366f1;
  text-transform: uppercase; letter-spacing: .08em;
  display: flex; align-items: center; gap: 6px;
  background: linear-gradient(90deg,#eef2ff,#f1f5f9);
  border-right: 1px solid #e2e8f0; height: 44px; white-space: nowrap;
}
.dl-ticker-track-wrap { flex: 1; overflow: hidden; }
.dl-ticker-track {
  display: flex; width: max-content;
  animation: dlTickerScroll 55s linear infinite;
}
.dl-ticker-track:hover { animation-play-state: paused; }
@keyframes dlTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.dl-ticker-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0 20px; height: 44px; white-space: nowrap;
  font-size: .78rem; font-weight: 600; color: #475569;
  text-decoration: none; border-right: 1px solid #e2e8f0;
  transition: background .15s, color .15s;
}
.dl-ticker-item:hover { background: #eef2ff; color: #6366f1; }
.dl-ticker-item i { font-size: .72rem; color: #6366f1; }

html[data-theme="dark"] .dl-ticker-wrap { background: #1e1e2e; border-color: #2d2d3f; }
html[data-theme="dark"] .dl-ticker-label { background: linear-gradient(90deg,#1e1b4b,#1e1e2e); border-color: #2d2d3f; }
html[data-theme="dark"] .dl-ticker-item { color: #94a3b8; border-color: #2d2d3f; }
html[data-theme="dark"] .dl-ticker-item:hover { background: #1e1b4b; color: #818cf8; }
@media (max-width: 480px) {
  .dl-ticker-label { padding: 0 12px; font-size: .66rem; }
  .dl-ticker-item  { padding: 0 14px; font-size: .74rem; }
}

/* ── Scroll-reveal sections ──────────────────────────────────── */
.dl-section { padding: 110px 6vw; max-width: 1180px; margin: 0 auto; }
.dl-section-alt { background: #edeff3; }
.dl-section-alt > .dl-section-inner { max-width: 1180px; margin: 0 auto; padding: 110px 6vw; }
.dl-eyebrow {
  text-align: center; font-size: .78rem; font-weight: 600; color: #2563eb;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.dl-title {
  text-align: center; font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 700;
  letter-spacing: -.02em; color: #1d1d1f; margin: 0 0 16px; line-height: 1.15;
}
.dl-sub {
  text-align: center; font-size: 1.05rem; color: #6e6e73; max-width: 600px;
  margin: 0 auto 64px; line-height: 1.6;
}

.dl-category-heading {
  font-size: 1.15rem; font-weight: 800; color: #1d1d1f;
  margin: 48px 0 20px; letter-spacing: -.01em;
}
.dl-category-heading:first-of-type { margin-top: 28px; }

.dl-filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 0 40px;
}
.dl-filter-pill {
  background: #f1f5f9; border: 1px solid #e2e8f0; color: #475569;
  font-size: .85rem; font-weight: 600;
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.dl-filter-pill:hover { background: #e2e8f0; }
.dl-filter-pill.dl-filter-active {
  background: #2563eb; border-color: #2563eb; color: #fff;
}
.dl-card-cat {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
  color: #94a3b8; margin: 14px 0 2px;
}
.dl-filter-empty {
  text-align: center; color: #6e6e73; font-size: .95rem; margin: 30px 0;
}
.dl-card-soon { opacity: .6; cursor: default; }
.dl-card-soon-badge {
  position: absolute; top: 18px; right: 18px;
  font-size: .68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  background: #f1f5f9; border: 1px solid #e2e8f0; color: #64748b;
}

.dl-reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.dl-reveal.dl-visible { opacity: 1; transform: translateY(0); }
.dl-reveal-d1 { transition-delay: .08s; }
.dl-reveal-d2 { transition-delay: .16s; }
.dl-reveal-d3 { transition-delay: .24s; }
.dl-reveal-d4 { transition-delay: .32s; }

/* ── Founder block (About page) ──────────────────────────────── */
.dl-founder-row {
  display: flex; align-items: center; gap: 36px; justify-content: center;
  max-width: 880px; margin: 0 auto 36px; flex-wrap: wrap;
}
.dl-founder-photo {
  width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
  border: 4px solid #fff; box-shadow: 0 12px 32px rgba(0,0,0,.14);
  flex-shrink: 0; transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s;
}
.dl-founder-photo:hover { transform: scale(1.05) rotate(-2deg); box-shadow: 0 18px 40px rgba(37,99,235,.25); }

/* ── Feature grid ────────────────────────────────────────────── */
.dl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.dl-grid-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.dl-card {
  background: #fff; border: 1px solid #eaeaec; border-radius: 22px;
  padding: 34px 30px; text-align: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.dl-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 24px 48px rgba(0,0,0,.08); }
.dl-card-popout {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,.06); color: #6e6e73;
  display: grid; place-items: center; font-size: .72rem;
  opacity: 0; transform: scale(.8);
  transition: opacity .2s, transform .2s, background .2s, color .2s;
}
.dl-card:hover .dl-card-popout { opacity: 1; transform: scale(1); }
.dl-card-popout:hover { background: #2563eb; color: #fff; }
html[data-theme="dark"] .dl-card-popout { background: rgba(255,255,255,.08); color: #9a9aa3; }
html[data-theme="dark"] .dl-card-popout:hover { background: #818cf8; color: #fff; }
html[data-theme="dark"].theme-neon .dl-card-popout { background: rgba(57,255,20,.1); color: #A1A1AA; }
html[data-theme="dark"].theme-neon .dl-card-popout:hover { background: #39FF14; color: #0B0B0F; }
.dl-card-num {
  position: absolute; top: 18px; right: 22px; z-index: -1;
  font-size: 3.2rem; font-weight: 800;
  line-height: 1;
  opacity: .1;
  font-style: italic;
  transition: opacity .25s, transform .25s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.dl-card:hover .dl-card-num { opacity: .18; transform: scale(1.06); }
.dl-card-icon {
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.dl-card:hover .dl-card-icon { transform: rotate(-8deg) scale(1.1); }
.dl-card-icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.3rem; color: #fff; margin-bottom: 20px;
}
.dl-card-icon-doc { position: relative; overflow: visible; }
.dl-card-icon-doc i { font-size: 1.5rem; }
.dl-card-icon-badge {
  position: absolute; left: 50%; bottom: -7px; transform: translateX(-50%);
  background: rgba(0,0,0,.32);
  color: #fff; font-size: .56rem; font-weight: 800; letter-spacing: .02em;
  padding: 2px 7px; border-radius: 5px; text-transform: uppercase;
  border: 2px solid #fff; white-space: nowrap;
}
html[data-theme="dark"] .dl-card-icon-badge { border-color: #11111a; }
.dl-card h3 { font-size: 1.05rem; font-weight: 700; color: #1d1d1f; margin: 0 0 10px; letter-spacing: -.01em; }
.dl-card p { font-size: .88rem; color: #6e6e73; line-height: 1.7; margin: 0; }
.dl-card ul { list-style: none; padding: 0; margin: 0; font-size: .88rem; color: #6e6e73; line-height: 1.9; }
.dl-card ul li { display: flex; gap: 8px; align-items: flex-start; }
.dl-card ul li i { color: #10b981; margin-top: 3px; flex-shrink: 0; }

/* ── Clickable service cards + detail modal (About page) ───────── */
/* ── Services grid section — soft ambient blobs + eyebrow label so it
   doesn't feel like a plain flat card grid ── */
.dl-services-section { position: relative; overflow: visible; }
.dl-services-section .dl-blob { z-index: 0; }
.dl-services-eyebrow {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand, #2563eb); background: color-mix(in srgb, var(--brand, #2563eb) 10%, transparent);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--brand, #2563eb) 22%, transparent);
}
.dl-services-section .dl-grid { position: relative; z-index: 1; }

/* ── Stats strip + process steps — fills out the rest of the Services
   page so it isn't just a card grid followed by a closing paragraph. ── */
.dl-services-live-badge {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  text-align: center; font-size: .8rem; color: var(--txt-2, #6e6e73); margin-bottom: 28px;
}
.dl-services-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: dlLiveDotPulse 1.8s ease-out infinite;
}
@keyframes dlLiveDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.dl-services-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 920px; margin: 0 auto;
}
.dl-services-stat {
  text-align: center; padding: 26px 16px; border-radius: 16px;
  background: var(--surface, #fff); border: 1px solid var(--border, #ececef);
  transition: transform .2s ease, box-shadow .2s ease;
}
.dl-services-stat:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.08); }
.dl-services-stat-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  margin: 0 auto 14px; font-size: 1.1rem; color: #fff;
  background: linear-gradient(135deg, var(--brand, #2563eb), var(--brand-dark, #1d4ed8));
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.dl-services-stat strong {
  display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  color: var(--brand, #2563eb); letter-spacing: -.02em; line-height: 1;
}
.dl-services-stat span { display: block; margin-top: 8px; font-size: .85rem; color: var(--txt-2, #6e6e73); }

/* Steps as a real 4-column grid on desktop (never wraps to an odd 3+1
   layout) — connector arrows are pseudo-elements tied to each card, not
   separate flex items, so they can never end up pointing at the wrong
   neighbor when the layout reflows. */
.dl-services-steps {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1180px; margin: 0 auto;
}
.dl-services-step {
  background: var(--surface, #fff); border: 1px solid var(--border, #ececef); border-radius: 18px;
  padding: 26px 22px; position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dl-services-step:hover {
  transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); border-color: var(--brand, #2563eb);
}
/* Arrow motion is staggered left-to-right (0s, .4s, .8s) instead of all
   three pulsing in sync — that stagger is what actually reads as "flow
   moving from step 1 toward step 4", rather than three identical, isolated
   blinking icons that don't communicate order. A faint connecting line
   ties the row together visually so it doesn't look like 4 separate,
   unrelated cards. */
@keyframes dlStepArrowSlide {
  0%, 60%, 100% { transform: translate(0, -50%); opacity: .45; }
  30%           { transform: translate(8px, -50%); opacity: 1; }
}
@media (min-width: 900px) {
  .dl-services-steps { grid-template-columns: repeat(4, 1fr); gap: 38px; position: relative; }
  .dl-services-steps::before {
    content: ''; position: absolute; top: 67px; left: 5%; right: 5%; height: 2px;
    background: linear-gradient(90deg, var(--brand, #2563eb) 0%, var(--border, #d8dadf) 100%);
    opacity: .25; z-index: 0;
  }
  .dl-services-step:not(:last-child)::after {
    content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; top: 50%; right: -31px; transform: translateY(-50%);
    color: var(--brand, #2563eb); font-size: 1.3rem; z-index: 1;
    animation: dlStepArrowSlide 1.8s ease-in-out infinite;
  }
  .dl-services-step:nth-child(1)::after { animation-delay: 0s; }
  .dl-services-step:nth-child(2)::after { animation-delay: .4s; }
  .dl-services-step:nth-child(3)::after { animation-delay: .8s; }
}
.dl-services-step-num {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand, #2563eb), var(--brand-dark, #1d4ed8));
  color: #fff; font-size: 1.1rem; margin-bottom: 16px; position: relative;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.dl-services-step-tag {
  position: absolute; bottom: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--surface, #fff); border: 2px solid var(--brand, #2563eb); color: var(--brand, #2563eb);
  font-size: .68rem; font-weight: 800; display: grid; place-items: center;
}
.dl-services-step h3 { font-size: 1rem; font-weight: 700; color: var(--txt, #1d1d1f); margin: 0 0 8px; }
.dl-services-step p { font-size: .85rem; color: var(--txt-2, #6e6e73); line-height: 1.65; margin: 0; }

@media (max-width: 640px) {
  .dl-services-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .dl-services-steps { grid-template-columns: 1fr; gap: 18px; }
}

.dl-service-card {
  cursor: pointer; position: relative; overflow: hidden;
  border-top: 3px solid transparent;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.dl-service-card:hover {
  border-top-color: var(--service-accent, var(--brand, #2563eb));
  box-shadow: 0 24px 48px rgba(0,0,0,.1);
}
.dl-service-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 0%, var(--service-accent, var(--brand, #2563eb)), transparent 60%);
  transition: opacity .35s ease;
}
.dl-service-card:hover::before { opacity: .07; }

/* Icon sits beside the title instead of stacked above it — reads as one
   header row (logo | name) rather than two separate vertical blocks. */
.dl-service-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; position: relative; z-index: 1; }
.dl-service-head .dl-card-icon {
  margin-bottom: 0; flex-shrink: 0;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--service-accent, var(--brand, #2563eb)) 45%, transparent);
  transition: box-shadow .35s ease;
}
.dl-service-head h3 { margin: 0; font-size: 1rem; }

.dl-service-teaser { font-size: .85rem; color: var(--txt-2, #6e6e73); line-height: 1.6; margin: 0 0 14px; }

/* Professional inline list — plain text with dot separators instead of
   colorful pill/chip badges, reads closer to a feature line on a
   corporate site than a tag cloud. */
.dl-service-tags {
  font-size: .8rem; color: var(--txt-2, #6e6e73); line-height: 1.7; margin-bottom: 4px;
}
.dl-service-tags span { color: var(--txt, #1d1d1f); font-weight: 600; }
.dl-service-tags span:not(:last-child)::after { content: '·'; color: var(--border, #d8dadf); margin: 0 6px; font-weight: 400; }
.dl-service-tags-extra.hidden { display: none; }
.dl-service-tags-toggle {
  font-size: .8rem; font-weight: 600; color: var(--brand, #2563eb);
  background: none; border: none; padding: 0; cursor: pointer; text-decoration: underline;
  text-decoration-color: transparent; transition: text-decoration-color .15s;
}
.dl-service-tags-toggle:hover { text-decoration-color: var(--brand, #2563eb); }

.dl-service-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: .82rem; font-weight: 700; color: #2563eb;
}
.dl-service-more i { transition: transform .25s ease; }
.dl-service-card:hover .dl-service-more i { transform: translateX(4px); }
html[data-theme="dark"] .dl-service-more { color: #818cf8; }
html[data-theme="dark"].theme-neon .dl-service-more { color: #39FF14; }
html.theme-neon:not([data-theme="dark"]) .dl-service-more { color: #16a34a; }

.dl-service-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 10001;
  background: rgba(15,23,42,.62); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.dl-service-modal-overlay.dl-service-modal-open { display: flex; }
.dl-service-modal {
  background: var(--surface, #fff); border-radius: 26px; width: min(660px, 100%);
  max-height: 86vh; overflow-y: auto; padding: 0 0 36px;
  position: relative; box-shadow: 0 40px 90px rgba(0,0,0,.35);
  animation: dlServiceModalIn .28s cubic-bezier(.2,.8,.2,1);
  border: 1px solid var(--border, #eee);
}
@keyframes dlServiceModalIn {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.dl-service-modal::-webkit-scrollbar { width: 8px; }
.dl-service-modal::-webkit-scrollbar-thumb { background: var(--border, #e2e8f0); border-radius: 8px; }

/* Header band — color set dynamically via JS to match the card. Kept flat
   and clean (no blurred glow smear) for a more professional, corporate
   feel rather than a flashy marketing-banner look. */
.dl-service-modal-head {
  padding: 34px 38px 26px; border-radius: 26px 26px 0 0;
  position: relative; box-shadow: inset 0 -1px 0 rgba(0,0,0,.08);
}
/* Sticky close button — sits in a zero-height wrapper so it stays pinned
   to the top-right corner of the modal as the user scrolls through the
   item list, instead of scrolling away with the gradient header. */
.dl-service-modal-close-wrap {
  position: sticky; top: 16px; height: 0; z-index: 30;
  display: flex; justify-content: flex-end; padding-right: 16px;
}
.dl-service-modal-close {
  width: 38px; height: 38px;
  border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: #1d1d1f;
  font-size: 1.4rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background .2s, color .2s, transform .25s, box-shadow .2s;
  box-shadow: 0 6px 18px rgba(0,0,0,.22), 0 0 0 1px rgba(0,0,0,.04);
}
.dl-service-modal-close:hover {
  background: #fff; transform: rotate(90deg) scale(1.08);
  box-shadow: 0 8px 22px rgba(0,0,0,.28), 0 0 0 1px rgba(0,0,0,.06);
}
.dl-service-modal-icon {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.6rem; color: #fff; margin-bottom: 18px; position: relative; z-index: 1;
  box-shadow: 0 10px 24px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.18);
}
.dl-service-modal h3 {
  font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0 0 12px;
  letter-spacing: -.01em; position: relative; z-index: 1; text-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.dl-service-modal-intro {
  font-size: .93rem; color: rgba(255,255,255,.92); line-height: 1.7; margin: 0;
  position: relative; z-index: 1;
}
.dl-service-modal-label {
  padding: 24px 38px 0; font-size: .74rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--txt-2, #6e6e73);
}
.dl-service-modal-list {
  padding: 12px 38px 0; display: flex; flex-direction: column; gap: 10px;
  --service-accent: #2563eb;
}
.dl-service-modal-item {
  display: flex; gap: 13px; align-items: flex-start; padding: 14px 16px;
  border: 1px solid var(--border, #ececef); border-radius: 12px; background: var(--surface, #fff);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.dl-service-modal-item:hover {
  border-color: var(--service-accent); box-shadow: 0 6px 16px rgba(0,0,0,.06); transform: translateY(-1px);
}
.dl-service-modal-item i {
  color: var(--service-accent); margin-top: 3px; flex-shrink: 0; font-size: 1.05rem;
}
.dl-service-modal-item strong { display: block; font-size: .93rem; color: var(--txt, #1d1d1f); margin-bottom: 4px; }
.dl-service-modal-item p { margin: 0; font-size: .85rem; color: var(--txt-2, #6e6e73); line-height: 1.65; }
.dl-service-modal > .dl-btn { margin: 24px 38px 0 !important; width: calc(100% - 76px) !important; }

html[data-theme="dark"] .dl-service-modal-close { background: rgba(255,255,255,.1); color: #f5f5f7; box-shadow: none; }
html[data-theme="dark"] .dl-service-modal-close:hover { background: rgba(255,255,255,.18); }
html[data-theme="dark"] .dl-service-modal-item { background: var(--surface, #11111a); border-color: rgba(255,255,255,.08); }
html[data-theme="dark"] .dl-service-modal-item:hover { box-shadow: 0 6px 16px rgba(0,0,0,.3); }

html[data-theme="dark"].theme-neon .dl-service-modal-item i { color: #39FF14; }
html.theme-neon:not([data-theme="dark"]) .dl-service-modal-item i { color: #16a34a; }

/* ── Team section (About page) ──────────────────────────────────
   Deliberately different from a plain "circle avatar on white card"
   layout: a soft blob-shaped photo frame, a colored pill for the role,
   and a click-through to a two-column profile modal. */
.dl-team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px; max-width: 1100px; margin: 44px auto 0;
}
.dl-team-card {
  background: #fff; border: 1px solid #eaeaec; border-radius: 22px;
  padding: 30px 22px; text-align: center; cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.dl-team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.dl-team-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: .8rem; font-weight: 700; color: #2563eb;
}
.dl-team-more i { transition: transform .25s ease; }
.dl-team-card:hover .dl-team-more i { transform: translateX(4px); }
html[data-theme="dark"] .dl-team-more { color: #818cf8; }
html[data-theme="dark"].theme-neon .dl-team-more { color: #39FF14; }
html.theme-neon:not([data-theme="dark"]) .dl-team-more { color: #16a34a; }
.dl-team-photo-wrap {
  width: 96px; height: 96px; margin: 0 auto 18px; overflow: hidden;
  border-radius: 38% 62% 58% 42% / 48% 42% 58% 52%;
  box-shadow: 0 10px 26px rgba(37,99,235,.18);
  transition: border-radius .4s ease;
}
.dl-team-card:hover .dl-team-photo-wrap { border-radius: 50%; }
.dl-team-photo { width: 100%; height: 100%; object-fit: cover; }
.dl-team-initials { display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.4rem; }
.dl-team-card h3 { font-size: 1.02rem; font-weight: 700; color: #1d1d1f; margin: 0 0 6px; }
.dl-team-role {
  display: inline-block; font-size: .72rem; font-weight: 700; color: #2563eb;
  background: #eff6ff; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.dl-team-card p { font-size: .85rem; color: #6e6e73; line-height: 1.65; margin: 0; }

.dl-team-modal { display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap; }
.dl-team-modal-photo-wrap {
  width: 130px; height: 130px; flex-shrink: 0; border-radius: 30% 70% 65% 35% / 45% 40% 60% 55%;
  overflow: hidden; box-shadow: 0 14px 30px rgba(37,99,235,.2);
}
.dl-team-modal-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.dl-team-modal > div:last-child { flex: 1; min-width: 240px; }
.dl-team-modal h3 { font-size: 1.3rem; font-weight: 800; color: #1d1d1f; margin: 4px 0 6px; }
.dl-team-modal-role {
  display: inline-block; font-size: .75rem; font-weight: 700; color: #2563eb;
  background: #eff6ff; padding: 4px 12px; border-radius: 999px; margin: 0 0 14px;
}
.dl-team-modal-skills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.dl-team-skill-tag {
  font-size: .76rem; font-weight: 600; color: #4f46e5; background: rgba(99,102,241,.1);
  padding: 5px 12px; border-radius: 999px;
}
.dl-team-modal-fact {
  font-size: .85rem; color: #6e6e73; font-style: italic; margin: 14px 0 0;
  padding-top: 14px; border-top: 1px solid #f0f0f2;
}
.dl-team-modal-fact i { color: #f59e0b; margin-right: 6px; }

html[data-theme="dark"] .dl-team-card { background: #11111a; border-color: rgba(255,255,255,.08); }
html[data-theme="dark"] .dl-team-card h3 { color: #f5f5f7; }
html[data-theme="dark"] .dl-team-card p { color: #9a9aa3; }
html[data-theme="dark"] .dl-team-role { background: rgba(129,140,248,.15); color: #a5b4fc; }
html[data-theme="dark"] .dl-team-modal h3 { color: #f5f5f7; }
html[data-theme="dark"] .dl-team-modal-role { background: rgba(129,140,248,.15); color: #a5b4fc; }
html[data-theme="dark"] .dl-team-skill-tag { background: rgba(129,140,248,.15); color: #a5b4fc; }
html[data-theme="dark"] .dl-team-modal-fact { color: #9a9aa3; border-top-color: rgba(255,255,255,.08); }
html[data-theme="dark"].theme-neon .dl-team-role,
html[data-theme="dark"].theme-neon .dl-team-modal-role,
html[data-theme="dark"].theme-neon .dl-team-skill-tag { background: rgba(57,255,20,.12); color: #39FF14; }
html.theme-neon:not([data-theme="dark"]) .dl-team-role,
html.theme-neon:not([data-theme="dark"]) .dl-team-modal-role,
html.theme-neon:not([data-theme="dark"]) .dl-team-skill-tag { background: rgba(22,163,74,.1); color: #16a34a; }

/* ── Contact page ────────────────────────────────────────────────────
   Restrained, professional two-column layout: a plain info sidebar (no
   colored bubbles/gradients) beside a clean bordered form card — the
   standard pattern professional-services sites use, instead of flashy
   banners or scattered card grids. */
.dl-contact-layout {
  display: grid; grid-template-columns: .85fr 1fr; gap: 56px;
  max-width: 940px; margin: 0 auto; align-items: start;
}
@media (max-width: 860px) { .dl-contact-layout { grid-template-columns: 1fr; gap: 36px; } }

.dl-contact-side h2 { font-size: 1.6rem; font-weight: 800; color: var(--txt, #1d1d1f); margin: 0 0 12px; letter-spacing: -.01em; }
.dl-contact-side > p { font-size: .92rem; color: var(--txt-2, #6e6e73); line-height: 1.7; margin: 0 0 30px; }

.dl-contact-list { list-style: none; margin: 0; padding: 0; }
.dl-contact-list li {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px 0;
  border-top: 1px solid var(--border, #ececef);
}
.dl-contact-list li:first-child { border-top: none; }
.dl-contact-list i { color: var(--brand, #2563eb); font-size: .95rem; margin-top: 3px; flex-shrink: 0; width: 18px; text-align: center; }
.dl-contact-list strong { display: block; font-size: .78rem; font-weight: 700; color: var(--txt-2, #9a9aa3); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.dl-contact-list a { color: var(--txt, #1d1d1f); font-weight: 600; font-size: .93rem; text-decoration: none; }
.dl-contact-list a:hover { color: var(--brand, #2563eb); text-decoration: underline; }
.dl-contact-list span { color: var(--txt, #1d1d1f); font-size: .89rem; line-height: 1.6; }

.dl-contact-form-panel {
  background: var(--surface, #fff); border: 1px solid var(--border, #ececef);
  border-radius: 18px; padding: 36px 34px; box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
@media (max-width: 480px) { .dl-contact-form-panel { padding: 28px 22px; } }

.dl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .dl-form-row { grid-template-columns: 1fr; } }

.dl-contact-char-count {
  text-align: right; font-size: .72rem; color: var(--txt-2, #9a9aa3); margin-top: 4px;
}
.dl-contact-form-hint { font-size: .8rem; color: var(--txt-2, #9a9aa3); }
.dl-contact-form-hint i { color: var(--brand, #2563eb); margin-right: 4px; }

/* "Chat with Syra" callout under the contact list — a quieter, bordered
   strip rather than another colorful card, pointing to the instant-answer
   alternative for people who don't want to wait on an email reply. */
.dl-contact-syra-callout {
  display: flex; align-items: center; gap: 14px; margin-top: 28px; padding: 16px 18px;
  border: 1px solid var(--border, #ececef); border-radius: 14px; text-decoration: none;
  background: var(--page-bg, #f8fafc); transition: border-color .2s ease, transform .2s ease;
}
.dl-contact-syra-callout:hover { border-color: var(--brand, #2563eb); transform: translateY(-2px); }
.dl-contact-syra-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-light, rgba(37,99,235,.1)); display: grid; place-items: center; font-size: 1rem;
}
.dl-contact-syra-callout div:not(.dl-contact-syra-avatar) { flex: 1; min-width: 0; }
.dl-contact-syra-callout strong { display: block; font-size: .87rem; font-weight: 700; color: var(--txt, #1d1d1f); }
.dl-contact-syra-callout span { display: block; font-size: .79rem; color: var(--txt-2, #6e6e73); margin-top: 2px; }
.dl-contact-syra-callout > i { color: var(--brand, #2563eb); flex-shrink: 0; transition: transform .2s ease; }
.dl-contact-syra-callout:hover > i { transform: translateX(4px); }

/* ── FAQ accordion ───────────────────────────────────────────── */
.dl-contact-faq { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.dl-contact-faq-item {
  background: var(--surface, #fff); border: 1px solid var(--border, #ececef); border-radius: 16px;
  padding: 6px 22px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.dl-contact-faq-item:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.06); }
.dl-contact-faq-item[open] { border-color: var(--brand, #2563eb); box-shadow: 0 12px 28px rgba(0,0,0,.07); }
.dl-contact-faq-item summary {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; cursor: pointer; list-style: none;
}
.dl-contact-faq-item summary::-webkit-details-marker { display: none; }
.dl-contact-faq-icon {
  width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center;
  font-size: .9rem; color: #fff; flex-shrink: 0; box-shadow: 0 6px 14px rgba(0,0,0,.16);
}
.dl-contact-faq-q { flex: 1; font-size: .92rem; font-weight: 700; color: var(--txt, #1d1d1f); line-height: 1.4; }
.dl-contact-faq-chev { font-size: .8rem; color: var(--txt-2, #9a9aa3); transition: transform .25s ease; flex-shrink: 0; }
.dl-contact-faq-item[open] .dl-contact-faq-chev { transform: rotate(180deg); color: var(--brand, #2563eb); }
.dl-contact-faq-item p {
  margin: 0 0 20px; padding-left: 52px; font-size: .87rem; color: var(--txt-2, #6e6e73); line-height: 1.65;
  animation: dlFaqFadeIn .25s ease;
}
@keyframes dlFaqFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }


/* ── Steps / numbered flow ───────────────────────────────────── */
.dl-steps { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.dl-step { flex: 1; min-width: 200px; max-width: 260px; text-align: center; }
.dl-step-num {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg,#2563eb,#1d4ed8); color: #fff;
  display: grid; place-items: center; font-size: 1.3rem; font-weight: 800;
  box-shadow: 0 10px 28px rgba(37,99,235,.3);
}
.dl-step h4 { font-size: 1rem; font-weight: 700; color: #1d1d1f; margin: 0 0 8px; }
.dl-step p { font-size: .86rem; color: #6e6e73; line-height: 1.6; margin: 0; }

/* ── Quote — uses theme tokens (var(--txt), var(--brand)) so the text and
   accent colour follow whichever theme/dark-mode is active everywhere
   it's used, not just the two themes that had hardcoded overrides before. */
.dl-quote {
  max-width: 720px; margin: 0 auto; text-align: center;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 500; color: var(--txt, #1d1d1f);
  line-height: 1.5; letter-spacing: -.01em; font-style: italic;
  padding: 0 20px;
}
.dl-quote::before, .dl-quote::after { color: var(--brand, #2563eb); opacity: .4; }

/* ── Quote card — a fancier, theme-aware testimonial treatment: large
   decorative quote icon, soft gradient backdrop, and a real attribution
   row with avatar + name + role, instead of a bare italic line of text. */
.dl-quote-card {
  position: relative; max-width: 760px; margin: 0 auto; padding: 48px 44px 36px;
  border-radius: 24px; background: var(--surface, #fff); border: 1px solid var(--border, #ececef);
  box-shadow: 0 20px 50px rgba(0,0,0,.06); overflow: hidden;
}
.dl-quote-card::before {
  content: ''; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background: radial-gradient(circle at 12% 0%, var(--brand, #2563eb), transparent 55%);
}
.dl-quote-card-icon {
  font-size: 1.8rem; color: var(--brand, #2563eb); opacity: .8; margin-bottom: 14px;
  position: relative; z-index: 1;
}
/* Gradient "fill" text — instead of a flat solid colour, the quote's own
   words are filled with the current theme's brand gradient (var(--brand)
   to var(--brand-dark)), so it changes automatically with the theme and
   reads as a deliberate stylistic highlight rather than plain body text. */
.dl-quote-card .dl-quote {
  margin: 0 0 26px; text-align: left; padding: 0; position: relative; z-index: 1;
  background: linear-gradient(100deg, var(--brand, #2563eb), var(--brand-dark, #1d4ed8));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dl-quote-card .dl-quote::before, .dl-quote-card .dl-quote::after { content: none; }
.dl-quote-card-attr {
  display: flex; align-items: center; gap: 14px; position: relative; z-index: 1;
  padding-top: 20px; border-top: 1px solid var(--border, #ececef);
}
.dl-quote-card-avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--brand, #2563eb);
}
.dl-quote-card-attr strong { display: block; font-size: .92rem; color: var(--txt, #1d1d1f); }
.dl-quote-card-attr span { display: block; font-size: .8rem; color: var(--txt-2, #6e6e73); margin-top: 2px; }

@media (max-width: 600px) {
  .dl-quote-card { padding: 36px 26px 28px; }
}

/* ── CTA banner ──────────────────────────────────────────────── */
.dl-cta {
  max-width: 1100px; margin: 0 auto;
  border-radius: 32px;
  background: linear-gradient(135deg,#1d1d1f 0%,#000 100%);
  padding: 90px 6vw; text-align: center; position: relative; overflow: hidden;
}
.dl-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 0%, rgba(37,99,235,.25) 0%, transparent 70%);
}
.dl-cta h2 { position: relative; font-size: clamp(1.8rem,3.4vw,2.6rem); font-weight: 700; color: #fff; margin: 0 0 14px; letter-spacing: -.02em; }
.dl-cta p { position: relative; font-size: 1rem; color: #b8b8bd; margin: 0 0 32px; }
.dl-cta-btns { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Portfolio page — hero reuses the site's own themed .dl-hero, just
   with a personal stat row + avatar dropped in, so it works exactly like
   every other page across light/dark/all 5 accent themes. ──────────── */

/* Scroll progress bar — fixed thin gradient strip that fills as you scroll. */
.dl-pf-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 1000;
  background: linear-gradient(90deg,#2563eb,#8b5cf6,#ec4899);
  transition: width .1s linear;
}
html[data-theme="dark"].theme-neon .dl-pf-progress,
html.theme-neon:not([data-theme="dark"]) .dl-pf-progress { background: linear-gradient(90deg,#16a34a,#22c55e,#86efac); }

/* Floating section navigator, styled like a map route — waypoints (dots)
   joined by an animated heartbeat/ECG pulse line, the stop names always
   visible (not just on hover), and the whole thing swaying gently like
   it's caught in a breeze. */
@keyframes dlPfSecnavSway {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  25%      { transform: translateY(-50%) rotate(.6deg); }
  75%      { transform: translateY(-50%) rotate(-.6deg); }
}
.dl-pf-secnav {
  position: fixed; top: 50%; right: 18px; z-index: 997;
  display: flex; flex-direction: column; gap: 22px;
  padding: 22px 18px 22px 16px;
  transform-origin: 100% 50%;
  animation: dlPfSecnavSway 6s ease-in-out infinite;
}
.dl-pf-secnav-ecg {
  position: absolute; left: -2px; top: 30px; bottom: 30px; width: 50px; height: calc(100% - 60px);
  z-index: -1; overflow: visible;
}
/* Road base — the "asphalt" outline the journey runs along. */
.dl-pf-road-base {
  fill: none; stroke: #c7ccd6; stroke-width: 6; stroke-linejoin: round; stroke-linecap: round;
  vector-effect: non-scaling-stroke; opacity: .55;
}
/* Dashed center stripe, animated so it looks like it's scrolling along
   the road as the line travels from waypoint to waypoint. */
.dl-pf-road-stripe {
  fill: none; stroke: #2563eb; stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round;
  vector-effect: non-scaling-stroke; opacity: .8;
  stroke-dasharray: 8 7;
  animation: dlPfRoadDash 2.4s linear infinite;
}
@keyframes dlPfRoadDash { to { stroke-dashoffset: -30; } }

.dl-pf-secnav a {
  display: flex; align-items: center; gap: 12px; text-decoration: none; position: relative;
}
.dl-pf-secnav-dot {
  width: 22px; height: 22px; border-radius: 50%; background: #fff; flex-shrink: 0;
  border: 2px solid #c7ccd6; box-shadow: 0 2px 6px rgba(0,0,0,.12);
  display: grid; place-items: center; position: relative; z-index: 1;
  transition: background .25s, transform .25s, box-shadow .25s, border-color .25s;
}
.dl-pf-secnav-num {
  font-size: .68rem; font-weight: 800; color: #9a9aa3; transition: color .25s;
}
.dl-pf-secnav-finish .dl-pf-secnav-dot { color: #1d1d1f; font-size: .72rem; }
.dl-pf-secnav-label {
  font-size: .76rem; font-weight: 600; color: #6e6e73; white-space: nowrap;
  transition: color .25s, transform .25s;
}
.dl-pf-secnav a:hover .dl-pf-secnav-dot { transform: scale(1.15); border-color: #2563eb; }
.dl-pf-secnav a:hover .dl-pf-secnav-label { color: #1d1d1f; transform: translateX(2px); }
.dl-pf-secnav-active .dl-pf-secnav-dot {
  background: #2563eb; border-color: #2563eb; transform: scale(1.25);
  box-shadow: 0 0 0 5px rgba(37,99,235,.2), 0 2px 6px rgba(0,0,0,.15);
}
.dl-pf-secnav-active .dl-pf-secnav-num { color: #fff; }
.dl-pf-secnav-active.dl-pf-secnav-finish .dl-pf-secnav-dot i { color: #fff; }
.dl-pf-secnav-active .dl-pf-secnav-label { color: #2563eb; font-weight: 700; }
@media (max-width: 760px) {
  .dl-pf-secnav { display: none; }
}
html[data-theme="dark"] .dl-pf-road-base { stroke: #3a3a44; }
html[data-theme="dark"] .dl-pf-road-stripe { stroke: #818cf8; }
html[data-theme="dark"] .dl-pf-secnav-dot { background: #1a1a22; border-color: #3a3a44; }
html[data-theme="dark"] .dl-pf-secnav-num { color: #9a9aa3; }
html[data-theme="dark"] .dl-pf-secnav-finish .dl-pf-secnav-dot { color: #f5f5f7; }
html[data-theme="dark"] .dl-pf-secnav-label { color: #9a9aa3; }
html[data-theme="dark"] .dl-pf-secnav a:hover .dl-pf-secnav-label { color: #f5f5f7; }
html[data-theme="dark"] .dl-pf-secnav a:hover .dl-pf-secnav-dot { border-color: #818cf8; }
html[data-theme="dark"] .dl-pf-secnav-active .dl-pf-secnav-dot { background: #818cf8; border-color: #818cf8; box-shadow: 0 0 0 5px rgba(129,140,248,.22); }
html[data-theme="dark"] .dl-pf-secnav-active .dl-pf-secnav-label { color: #818cf8; }
html[data-theme="dark"].theme-neon .dl-pf-secnav-active .dl-pf-secnav-dot,
html.theme-neon:not([data-theme="dark"]) .dl-pf-secnav-active .dl-pf-secnav-dot { background: #16a34a; border-color: #16a34a; box-shadow: 0 0 0 5px rgba(22,163,74,.22); }
html[data-theme="dark"].theme-neon .dl-pf-secnav-active .dl-pf-secnav-label,
html.theme-neon:not([data-theme="dark"]) .dl-pf-secnav-active .dl-pf-secnav-label { color: #16a34a; }
html[data-theme="dark"].theme-neon .dl-pf-road-stripe,
html.theme-neon:not([data-theme="dark"]) .dl-pf-road-stripe { stroke: #16a34a; }
@media (prefers-reduced-motion: reduce) {
  .dl-pf-secnav { animation: none; transform: translateY(-50%); }
  .dl-pf-road-stripe { animation: none; }
}

/* Scroll-to-top button — fades in once the user has scrolled past the hero. */
.dl-pf-to-top {
  /* Bottom-left, not bottom-right — the chat widget bubble already lives
     fixed at bottom:24px;right:24px, and the two were overlapping. */
  position: fixed; bottom: 28px; left: 28px; z-index: 998;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: #1d1d1f; color: #fff; font-size: 1rem;
  display: grid; place-items: center;
  opacity: 0; transform: translateY(12px) scale(.8); pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1), background .2s;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.dl-pf-to-top-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.dl-pf-to-top:hover { background: #2563eb; transform: translateY(-3px) scale(1.06); }

/* Gradient name treatment in the hero. */
.dl-pf-name-gradient {
  background: linear-gradient(90deg,#2563eb,#8b5cf6,#ec4899,#2563eb);
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: dlPfNameShimmer 6s linear infinite;
}
@keyframes dlPfNameShimmer { to { background-position: -300% center; } }
html.theme-neon:not([data-theme="dark"]) .dl-pf-name-gradient,
html[data-theme="dark"].theme-neon .dl-pf-name-gradient {
  background: linear-gradient(90deg,#16a34a,#22c55e,#86efac,#16a34a); background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* 3D tilt-on-hover avatar, controlled via JS setting --rx/--ry. */
.dl-pf-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  font-size: .78rem; font-weight: 700; color: #2563eb; background: #eff6ff;
  padding: 7px 16px; border-radius: 999px; letter-spacing: .02em;
}
html[data-theme="dark"] .dl-pf-badge { background: rgba(129,140,248,.15); color: #a5b4fc; }
html[data-theme="dark"].theme-neon .dl-pf-badge,
html.theme-neon:not([data-theme="dark"]) .dl-pf-badge { background: rgba(22,163,74,.12); color: #16a34a; }

.dl-pf-avatar-wrap {
  display: inline-block; perspective: 700px; margin-bottom: 22px;
  animation: dlPfFloat 4.5s ease-in-out infinite;
}
.dl-pf-avatar {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  border: 4px solid #fff; box-shadow: 0 0 0 6px rgba(37,99,235,.12), 0 16px 36px rgba(0,0,0,.18);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .15s ease-out;
}
@keyframes dlPfFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.dl-pf-stats {
  display: flex; gap: 44px; justify-content: center; flex-wrap: wrap; margin: 8px 0 36px;
}
.dl-pf-stat { display: flex; flex-direction: column; text-align: center; }
.dl-pf-stat strong { font-size: 1.9rem; font-weight: 800; color: #1d1d1f; }
.dl-pf-stat span { font-size: .78rem; color: #6e6e73; margin-top: 2px; }
.dl-pf-social {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: #f5f5f7; color: #1d1d1f; font-size: 1.1rem;
  transition: background .25s, transform .25s, color .25s;
}
.dl-pf-social:hover { background: #2563eb; color: #fff; transform: translateY(-3px) rotate(8deg); }

/* ── Auto-rotating highlights slider ─────────────────────────────── */
.dl-pf-slider {
  max-width: 720px; margin: 0 auto; text-align: center; position: relative;
  background: rgba(255,255,255,.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.6); border-radius: 26px;
  padding: 44px 36px; box-shadow: 0 20px 50px rgba(37,99,235,.1), inset 0 1px 0 rgba(255,255,255,.8);
}
.dl-pf-slides { position: relative; min-height: 110px; }
.dl-pf-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease; pointer-events: none;
}
.dl-pf-slide-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dl-pf-slide-icon {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px; display: grid; place-items: center;
  color: #fff; font-size: 1.4rem; box-shadow: 0 10px 24px rgba(37,99,235,.3);
  animation: dlPfSlideIconPop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes dlPfSlideIconPop { from { transform: scale(.5) rotate(-10deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
.dl-pf-slide p { font-size: 1.1rem; font-weight: 600; color: #1d1d1f; line-height: 1.6; max-width: 560px; margin: 0 auto; }
.dl-pf-slider-progress { max-width: 160px; height: 4px; margin: 24px auto 0; background: rgba(0,0,0,.08); border-radius: 4px; overflow: hidden; }
.dl-pf-slider-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg,#2563eb,#8b5cf6); border-radius: 4px; }
.dl-pf-slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.dl-pf-slider-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; background: #d2d2d7; cursor: pointer;
  transition: background .25s, transform .25s, width .25s;
}
.dl-pf-slider-dot:hover { transform: scale(1.2); }
.dl-pf-slider-dot-active { background: #2563eb; width: 22px; border-radius: 4px; }

.dl-pf-typed { color: #2563eb; font-weight: 700; }
.dl-pf-typed-cursor { color: #2563eb; font-weight: 400; animation: dlPfBlink 1s step-end infinite; }
@keyframes dlPfBlink { 50% { opacity: 0; } }
html[data-theme="dark"] .dl-pf-typed,
html[data-theme="dark"] .dl-pf-typed-cursor { color: #818cf8; }
html[data-theme="dark"].theme-neon .dl-pf-typed,
html[data-theme="dark"].theme-neon .dl-pf-typed-cursor,
html.theme-neon:not([data-theme="dark"]) .dl-pf-typed,
html.theme-neon:not([data-theme="dark"]) .dl-pf-typed-cursor { color: #16a34a; }

/* Infinite scrolling tech-stack marquee — contained in its own rounded
   pill strip with a soft gradient backdrop and edge fade, instead of a
   bare full-width row between two plain lines. */
.dl-pf-marquee-wrap { max-width: 1180px; margin: 0 auto; padding: 0 6vw; }
.dl-pf-marquee {
  overflow: hidden; position: relative; padding: 20px 0;
  background: linear-gradient(135deg,#eff6ff,#f5f3ff); border-radius: 999px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.dl-pf-marquee-track {
  display: flex; gap: 48px; width: max-content; padding: 0 24px;
  animation: dlPfMarquee 22s linear infinite;
}
.dl-pf-marquee-track span {
  display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: #4b4b52; white-space: nowrap;
  background: #fff; padding: 8px 16px; border-radius: 999px; box-shadow: 0 4px 12px rgba(37,99,235,.08);
}
.dl-pf-marquee-track i { font-size: 1.05rem; color: #2563eb; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 5px; }
@keyframes dlPfMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .dl-pf-marquee-track { animation: none; } }
html[data-theme="dark"] .dl-pf-marquee { background: linear-gradient(135deg,#171723,#1a1530); }
html[data-theme="dark"] .dl-pf-marquee-track span { background: #11111a; color: #c9c9d1; box-shadow: 0 4px 12px rgba(0,0,0,.4); }
html[data-theme="dark"] .dl-pf-marquee-track i { color: #818cf8; }
html[data-theme="dark"].theme-neon .dl-pf-marquee-track i,
html.theme-neon:not([data-theme="dark"]) .dl-pf-marquee-track i { color: #16a34a; }

.dl-pf-work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1180px; margin: 40px auto 0; }
.dl-pf-work-card {
  display: block; text-decoration: none; background: #fff; border: 1px solid #eaeaec; border-radius: 20px;
  padding: 30px 26px; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.dl-pf-work-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: 0 24px 48px rgba(37,99,235,.14); border-color: #c7d2fe; }
.dl-pf-work-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff; font-size: 1.2rem;
  margin-bottom: 18px; transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.dl-pf-work-card:hover .dl-pf-work-icon { transform: rotate(-8deg) scale(1.1); }
.dl-pf-work-card h3 { font-size: 1.05rem; font-weight: 700; color: #1d1d1f; margin: 0 0 8px; }
.dl-pf-work-card p { font-size: .87rem; color: #6e6e73; line-height: 1.65; margin: 0 0 16px; }
.dl-pf-work-link { font-size: .82rem; font-weight: 700; color: #2563eb; display: inline-flex; align-items: center; gap: 6px; }

.dl-pf-skill-group { margin-bottom: 30px; max-width: 760px; margin-left: auto; margin-right: auto; }
.dl-pf-skill-group h4 { font-size: .85rem; font-weight: 700; color: #1d1d1f; margin: 0 0 12px; text-align: center; }
.dl-pf-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.dl-pf-tag {
  font-size: .82rem; font-weight: 600; color: #2563eb; background: #eff6ff;
  padding: 8px 16px; border-radius: 999px;
}

.dl-pf-timeline { max-width: 700px; margin: 40px auto 0; position: relative; }
.dl-pf-timeline-item { display: flex; gap: 22px; padding-bottom: 36px; position: relative; }
.dl-pf-timeline-item:not(:last-child)::before {
  content: ''; position: absolute; left: 7px; top: 26px; bottom: 0; width: 2px; background: #e5e5ea;
}
.dl-pf-timeline-dot {
  width: 16px; height: 16px; border-radius: 50%; background: #2563eb; flex-shrink: 0; margin-top: 4px;
  box-shadow: 0 0 0 4px #eff6ff;
}
.dl-pf-timeline-date { font-size: .76rem; font-weight: 700; color: #2563eb; text-transform: uppercase; letter-spacing: .04em; }
.dl-pf-timeline-item h3 { font-size: 1rem; font-weight: 700; color: #1d1d1f; margin: 6px 0 6px; }
.dl-pf-timeline-item p { font-size: .87rem; color: #6e6e73; line-height: 1.6; margin: 0; }

/* A distinct serif display face for the name + section titles, so the
   page reads as a personal portfolio rather than another marketing page
   in the same sans-serif system as the rest of the site. */
.dl-portfolio-page .dl-hero-title,
.dl-portfolio-page .dl-title,
.dl-pf-about-card { font-family: 'Playfair Display', Georgia, serif; }

.dl-pf-section { position: relative; }
.dl-pf-section-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem; font-weight: 700; color: #2563eb; opacity: .08;
  position: absolute; top: 6px; left: 6vw; line-height: 1; pointer-events: none; z-index: 0;
}
@media (max-width: 760px) { .dl-pf-section-num { display: none; } }

.dl-pf-about-row {
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 36px; align-items: start;
  max-width: 1020px; margin: 36px auto 0;
}
@media (max-width: 760px) { .dl-pf-about-row { grid-template-columns: 1fr; } }
.dl-pf-about-text p { font-size: .96rem; color: #4b4b52; line-height: 1.85; margin: 0 0 18px; }
.dl-pf-about-card {
  background: #fff; border: 1px solid #eaeaec; border-radius: 20px; padding: 28px 26px;
}
.dl-pf-about-row-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 0; font-size: .88rem; color: #1d1d1f;
  border-bottom: 1px solid #f0f0f2;
}
.dl-pf-about-row-item:last-of-type { border-bottom: none; }
.dl-pf-about-row-item i { width: 30px; height: 30px; border-radius: 50%; background: #eff6ff; color: #2563eb; display: grid; place-items: center; font-size: .82rem; flex-shrink: 0; }

html[data-theme="dark"] .dl-pf-about-text p { color: #b4b4bd; }
html[data-theme="dark"] .dl-pf-about-card { background: #11111a; border-color: rgba(255,255,255,.08); }
html[data-theme="dark"] .dl-pf-about-row-item { color: #f5f5f7; border-bottom-color: rgba(255,255,255,.08); }
html[data-theme="dark"] .dl-pf-about-row-item i { background: rgba(129,140,248,.15); color: #a5b4fc; }
html[data-theme="dark"] .dl-pf-section-num { color: #818cf8; opacity: .1; }

.dl-pf-cta {
  text-align: center; padding: 90px 6vw 110px;
  background: linear-gradient(135deg,#2563eb,#6366f1);
  color: #fff;
}
.dl-pf-cta h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; margin: 0 0 12px; }
.dl-pf-cta p { font-size: .98rem; color: rgba(255,255,255,.85); margin: 0 0 28px; }
.dl-pf-cta .dl-btn-primary { background: #fff; color: #2563eb; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.dl-pf-cta .dl-btn-primary:hover { background: #f0f4ff; color: #1d4ed8; }

html[data-theme="dark"] .dl-pf-stat strong { color: #f5f5f7; }
html[data-theme="dark"] .dl-pf-stat span { color: #9a9aa3; }
html[data-theme="dark"] .dl-pf-social { background: rgba(255,255,255,.08); color: #f5f5f7; }
html[data-theme="dark"] .dl-pf-social:hover { background: #818cf8; color: #fff; }
html[data-theme="dark"] .dl-pf-slider {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
}
html[data-theme="dark"] .dl-pf-slide p { color: #f5f5f7; }
html[data-theme="dark"] .dl-pf-slider-progress { background: rgba(255,255,255,.1); }
html[data-theme="dark"] .dl-pf-slider-dot { background: #38383f; }
html[data-theme="dark"] .dl-pf-slider-dot-active { background: #818cf8; }
html[data-theme="dark"].theme-neon .dl-pf-slider-dot-active,
html.theme-neon:not([data-theme="dark"]) .dl-pf-slider-dot-active { background: #16a34a; }
html[data-theme="dark"] .dl-pf-work-card { background: #11111a; border-color: rgba(255,255,255,.08); }
html[data-theme="dark"] .dl-pf-work-card h3 { color: #f5f5f7; }
html[data-theme="dark"] .dl-pf-work-card p { color: #9a9aa3; }
html[data-theme="dark"] .dl-pf-skill-group h4 { color: #f5f5f7; }
html[data-theme="dark"] .dl-pf-tag { background: rgba(129,140,248,.15); color: #a5b4fc; }
html[data-theme="dark"] .dl-pf-timeline-item h3 { color: #f5f5f7; }
html[data-theme="dark"] .dl-pf-timeline-item p { color: #9a9aa3; }
html[data-theme="dark"] .dl-pf-timeline-item:not(:last-child)::before { background: rgba(255,255,255,.12); }
html[data-theme="dark"] .dl-pf-timeline-dot { box-shadow: 0 0 0 4px rgba(129,140,248,.15); }

html[data-theme="dark"].theme-neon .dl-pf-tag,
html.theme-neon:not([data-theme="dark"]) .dl-pf-tag { background: rgba(57,255,20,.12); color: #16a34a; }
html[data-theme="dark"].theme-neon .dl-pf-work-link,
html.theme-neon:not([data-theme="dark"]) .dl-pf-work-link { color: #16a34a; }

/* ── Legal pages (Privacy / Terms / Refund) ─────────────────────── */
.dl-legal-content { max-width: 760px; margin: 0 auto; }
.dl-legal-content .dl-legal-updated { font-size: .82rem; color: #98989d; margin-bottom: 38px; }
.dl-legal-content h2 {
  font-size: 1.2rem; font-weight: 800; color: #1d1d1f; letter-spacing: -.01em;
  margin: 38px 0 12px;
}
.dl-legal-content h2:first-of-type { margin-top: 0; }
.dl-legal-content p { font-size: .93rem; color: #6e6e73; line-height: 1.8; margin: 0 0 14px; }
.dl-legal-content ul { margin: 0 0 14px; padding-left: 22px; }
.dl-legal-content ul li { font-size: .93rem; color: #6e6e73; line-height: 1.8; margin-bottom: 6px; }
.dl-legal-content strong { color: #1d1d1f; }
.dl-legal-content a { color: #2563eb; font-weight: 600; text-decoration: none; }
.dl-legal-content a:hover { text-decoration: underline; }
html[data-theme="dark"] .dl-legal-content h2 { color: #f5f5f7; }
html[data-theme="dark"] .dl-legal-content p,
html[data-theme="dark"] .dl-legal-content ul li { color: #9a9aa3; }
html[data-theme="dark"] .dl-legal-content strong { color: #f5f5f7; }
html[data-theme="dark"] .dl-legal-content a { color: #818cf8; }
html[data-theme="dark"].theme-neon .dl-legal-content a { color: #39FF14; }
html.theme-neon:not([data-theme="dark"]) .dl-legal-content a { color: #16a34a; }

/* ── Footer — follows the page's own light/dark/accent theme (like the
   rest of the site) instead of a fixed dark band. ── */
.dl-footer-dark {
  position: relative; padding: 56px 6vw 28px; text-align: left;
  background: var(--page-bg, #f8fafc); margin-top: 80px; overflow: hidden;
  border-top: 1px solid var(--border, #eaeaec);
}
.dl-footer-grid {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.3fr;
  gap: 32px; max-width: 1180px; margin: 0 auto;
}
@media (max-width: 980px) { .dl-footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px) { .dl-footer-grid { grid-template-columns: 1fr 1fr; } }

.dl-footer-col h5 {
  font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--txt, #1d1d1f); margin: 0 0 16px;
}
.dl-footer-col { display: flex; flex-direction: column; gap: 12px; }
.dl-footer-col a {
  font-size: .85rem; font-weight: 500; color: var(--txt-2, #6e6e73); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: color .2s ease;
  width: fit-content;
}
.dl-footer-col a i { font-size: .72rem; }
.dl-footer-col a:hover { color: var(--brand, #2563eb); }

.dl-footer-brand-col { grid-column: span 1; }
@media (max-width: 640px) { .dl-footer-brand-col { grid-column: span 2; order: -1; } }
.dl-footer-blurb { font-size: .82rem; color: var(--txt-2, #6e6e73); line-height: 1.65; margin: 14px 0 0; max-width: 270px; }

.dl-footer-bottom {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 40px auto 0; padding-top: 22px;
  border-top: 1px solid var(--border, #eaeaec); flex-wrap: wrap; gap: 14px;
}
.dl-footer-copyright { font-size: .78rem; color: var(--txt-2, #98989d); }
.dl-footer-social-row { display: flex; gap: 16px; }
.dl-footer-social-row a {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--page-bg-2, rgba(0,0,0,.05)); color: var(--txt-2, #6e6e73);
  transition: background .2s ease, color .2s ease;
}
.dl-footer-social-row a:hover { background: var(--brand, #2563eb); color: #fff; }
@media (max-width: 540px) { .dl-footer-bottom { justify-content: center; text-align: center; } }

@media (max-width: 640px) {
  .dl-hero { padding: 110px 5vw 50px !important; min-height: auto; }
  .dl-section, .dl-section-alt > .dl-section-inner { padding: 60px 5vw; }
  .dl-cta { max-width: calc(100% - 8vw); margin: 0 auto; padding: 50px 5vw; border-radius: 22px; }
  .dl-steps { gap: 30px; }
  .dl-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .dl-card { padding: 20px 18px; }
  .dl-hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem) !important; }
  .dl-hero-sub { font-size: .92rem; }
  .dl-cta-btns { flex-direction: column; gap: 10px; align-items: stretch; }
  .dl-cta-btns .dl-btn { text-align: center; justify-content: center; }
  .dl-filter-bar { gap: 6px; }
  .dl-filter-pill { font-size: .76rem; padding: 5px 12px; }
}

@media (max-width: 480px) {
  .dl-nav { padding: 0 16px; height: 60px; }
  .dl-nav-brand { font-size: .9rem; }
  .dl-hero { padding: 100px 4vw 44px !important; }
  .dl-section { padding: 50px 4vw !important; }
  .dl-btn { padding: 12px 20px; font-size: .88rem; }
  .dl-eyebrow { font-size: .72rem; }
  .dl-stats { gap: 32px; }
  /* Tools landing page responsive */
  .dl-filter-bar { gap: 5px; margin: 0 0 28px; }
  .dl-filter-pill { font-size: .72rem; padding: 4px 10px; }
  .dl-grid { gap: 12px; }
  .dl-card { padding: 18px 16px; border-radius: 16px; }
  .dl-card h3 { font-size: .96rem; }
  .dl-card-icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 12px; }
  .dl-cta { padding: 36px 5vw; border-radius: 18px; }
  .dl-cta h2 { font-size: 1.3rem; }
}

@media (max-width: 360px) {
  .dl-filter-pill { font-size: .68rem; padding: 4px 8px; }
  .dl-card { padding: 14px 14px; }
  .dl-hero-title { font-size: clamp(1.6rem, 9vw, 2.2rem) !important; }
  .dl-hero-sub { font-size: .82rem; }
  .dl-nav-login { display: none; }
}

/* ================================================================
   COMPREHENSIVE RESPONSIVE — all public pages (phones ≤ 640px)
   ================================================================ */

/* ── Robot — hide on small screens to prevent text overlap ───── */
@media (max-width: 640px) {
  .dl-robot { display: none !important; }
}

/* ── Section / hero padding (all pages) ─────────────────────── */
@media (max-width: 640px) {
  .dl-section-alt > .dl-section-inner { padding: 56px 5vw !important; }
  .dl-section { padding: 56px 5vw !important; }
  .dl-title { font-size: clamp(1.7rem, 7vw, 2.6rem) !important; line-height: 1.15; }
  .dl-sub { font-size: .9rem; }

  /* Services page */
  .dl-grid-2 { grid-template-columns: 1fr !important; }
  .dl-services-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 20px 14px; }
  .dl-services-step { padding: 20px 18px; }
  .dl-service-head { flex-direction: row; align-items: flex-start; gap: 12px; }
  .dl-service-head h3 { font-size: .96rem; }

  /* About page */
  .dl-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .dl-team-card { padding: 20px 14px; border-radius: 16px; }
  .dl-team-photo-wrap { width: 70px; height: 70px; }
  .dl-team-card h3 { font-size: .88rem; }
  .dl-team-role { font-size: .66rem; padding: 3px 9px; }
  .dl-team-card p { font-size: .78rem; }
  .dl-founder-row { gap: 20px; flex-direction: column; align-items: center; text-align: center; }
  .dl-quote-card { padding: 28px 20px; }

  /* Contact page */
  .dl-contact-layout { gap: 28px; }
  .dl-contact-side h2 { font-size: 1.3rem; }
  .dl-contact-form-panel { padding: 24px 18px; }

  /* Stats strip */
  .dl-stats { gap: 28px; }
  .dl-stat-num { font-size: 1.9rem; }

  /* CTA */
  .dl-cta h2 { font-size: 1.4rem; }
  .dl-cta p { font-size: .9rem; }
}

@media (max-width: 480px) {
  .dl-section-alt > .dl-section-inner { padding: 44px 4vw !important; }
  .dl-section { padding: 44px 4vw !important; }
  .dl-title { font-size: clamp(1.4rem, 8vw, 2rem) !important; }

  /* About — team goes 1 col */
  .dl-team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 28px auto 0; }
  .dl-team-photo-wrap { width: 80px; height: 80px; }
  .dl-team-card h3 { font-size: .95rem; }

  /* Services */
  .dl-services-stats { grid-template-columns: 1fr 1fr !important; }
  .dl-services-stat-num { font-size: 1.6rem; }

  /* Home public page hero section items */
  .dl-steps { gap: 16px; }
  .dl-step { padding: 18px 16px; }

  /* Forms */
  .dl-contact-form-panel { padding: 22px 16px; }
  .dl-form-label { font-size: .82rem; }
}

@media (max-width: 380px) {
  .dl-nav-actions { gap: 6px; }
  #neonToggleBtn, .dl-nav-theme:last-of-type { display: none; }
  .dl-hero { padding: 90px 4vw 36px !important; }
  .dl-section { padding: 36px 4vw !important; }
  .dl-section-alt > .dl-section-inner { padding: 36px 4vw !important; }
}

/* ── Stats / trust strip ─────────────────────────────────────── */
.dl-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 56px; }
.dl-stat { text-align: center; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.dl-stat:hover { transform: translateY(-4px); }
.dl-stat-num {
  font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(135deg,#2563eb,#6366f1);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.dl-stat-label { font-size: .82rem; color: #6e6e73; margin-top: 8px; font-weight: 500; }

/* ================================================================
   DARK MODE — vibrant, glowing, inspired by colourful 3D-tech sites
   ================================================================ */
html[data-theme="dark"] .dl-page { background: #07070b; color: #e6e6ea; }

html[data-theme="dark"] .dl-nav { background: rgba(7,7,11,0); }
html[data-theme="dark"] .dl-nav.dl-nav-scrolled {
  background: rgba(12,12,18,.72); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
html[data-theme="dark"] .dl-nav-brand span { color: #f5f5f7; }
html[data-theme="dark"] .dl-nav-links-desktop a { color: #9a9aa3; }
html[data-theme="dark"] .dl-nav-links-desktop a:hover { background: rgba(255,255,255,.08); color: #fff; }
html[data-theme="dark"] .dl-nav-login { background: #fff; color: #07070b; }
html[data-theme="dark"] .dl-nav-login:hover { background: #c7d2fe; color: #07070b; }
html[data-theme="dark"] .dl-nav-theme { background: #14141b; border-color: rgba(255,255,255,.12); color: #f5f5f7; }
html[data-theme="dark"] .dl-nav-theme:hover { background: #1c1c25; }


html[data-theme="dark"] .dl-hero-glow {
  background:
    radial-gradient(ellipse 900px 600px at 20% -10%, rgba(99,102,241,.30) 0%, transparent 70%),
    radial-gradient(ellipse 700px 550px at 85% 20%, rgba(244,114,182,.22) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 50% 90%, rgba(52,211,153,.14) 0%, transparent 70%);
}
html[data-theme="dark"] .dl-blob { opacity: .55; filter: blur(70px); }
html[data-theme="dark"] .dl-hero-eyebrow { color: #a5b4fc; }
html[data-theme="dark"] .dl-hero-title { color: #f5f5f7; }
html[data-theme="dark"] .dl-hero-title span {
  background: linear-gradient(90deg,#818cf8,#f472b6 50%,#34d399);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
html[data-theme="dark"] .dl-hero-sub { color: #9a9aa3; }
html[data-theme="dark"] .dl-btn-ghost { background: rgba(255,255,255,.08); color: #f5f5f7; }
html[data-theme="dark"] .dl-btn-ghost:hover { background: rgba(255,255,255,.14); color: #f5f5f7; }
html[data-theme="dark"] .dl-btn-primary { box-shadow: 0 8px 28px rgba(99,102,241,.45); }
html[data-theme="dark"] .dl-btn-primary:hover { box-shadow: 0 12px 34px rgba(99,102,241,.55); color: #fff; }

html[data-theme="dark"] .dl-search-box { background: #14141b; border-color: rgba(255,255,255,.1); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
html[data-theme="dark"] .dl-search-box input { color: #f5f5f7; }
html[data-theme="dark"] .dl-search-box:focus-within { border-color: #818cf8; box-shadow: 0 14px 34px rgba(99,102,241,.25); }
html[data-theme="dark"] .dl-scroll-cue { border-color: #38383f; }
html[data-theme="dark"] .dl-scroll-cue::after { background: #818cf8; }

html[data-theme="dark"] .dl-section-alt { background: #0c0c12; }
html[data-theme="dark"] .dl-eyebrow { color: #a5b4fc; }
html[data-theme="dark"] .dl-title { color: #f5f5f7; }
html[data-theme="dark"] .dl-sub { color: #9a9aa3; }

html[data-theme="dark"] .dl-card { background: #11111a; border-color: rgba(255,255,255,.08); }
html[data-theme="dark"] .dl-card:hover { box-shadow: 0 24px 48px rgba(99,102,241,.18); border-color: rgba(129,140,248,.35); }
html[data-theme="dark"] .dl-card h3 { color: #f5f5f7; }
html[data-theme="dark"] .dl-founder-photo { border-color: #171a20; }
html[data-theme="dark"] .dl-card p, html[data-theme="dark"] .dl-card ul { color: #9a9aa3; }
html[data-theme="dark"] .dl-card ul li i { color: #34d399; }

html[data-theme="dark"] .dl-step h4 { color: #f5f5f7; }
html[data-theme="dark"] .dl-step p { color: #9a9aa3; }
html[data-theme="dark"] .dl-step-num { box-shadow: 0 10px 30px rgba(99,102,241,.45); }

html[data-theme="dark"] .dl-quote::before, html[data-theme="dark"] .dl-quote::after { color: #818cf8; }

html[data-theme="dark"] .dl-cta { background: linear-gradient(135deg,#11111a 0%,#000 100%); }
html[data-theme="dark"] .dl-cta::before {
  background:
    radial-gradient(ellipse 600px 400px at 20% 0%, rgba(99,102,241,.4) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 90% 100%, rgba(244,114,182,.25) 0%, transparent 70%);
}

html[data-theme="dark"] .dl-footer { border-top-color: rgba(255,255,255,.08); }
html[data-theme="dark"] .dl-footer-brand span { color: #f5f5f7 !important; }
html[data-theme="dark"] .dl-footer-links a { color: #9a9aa3; }
html[data-theme="dark"] .dl-footer-links a:hover { color: #818cf8; }

html[data-theme="dark"] .dl-stat-label { color: #9a9aa3; }
html[data-theme="dark"] .dl-stat-num { background: linear-gradient(135deg,#818cf8,#f472b6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ================================================================
   NEON THEME — "DAY" VARIANT — neon is an accent overlay, not a forced
   dark skin: with day mode active, neon should sprinkle the green/cyan
   accent color across the light page instead of flipping it to black.
   (The dark-mode neon block further below — gated on
   html[data-theme="dark"].theme-neon — keeps the full black+neon look
   for when night mode is active too.)
   ================================================================ */
html.theme-neon:not([data-theme="dark"]) .dl-page { background: linear-gradient(180deg,#f0fdf4 0%,#f6fef9 40%,#fff 100%); }
html.theme-neon:not([data-theme="dark"]) .dl-section-alt { background: #ecfdf3; }
html.theme-neon:not([data-theme="dark"]) .dl-text-brand { color: #16a34a; }
html.theme-neon:not([data-theme="dark"]) .dl-nav-links-desktop a:hover { background: rgba(22,163,74,.1); color: #16a34a; }
html.theme-neon:not([data-theme="dark"]) .dl-nav-links-desktop a::after { background: #16a34a; }
html.theme-neon:not([data-theme="dark"]) .dl-nav-login { background: #16a34a; }
html.theme-neon:not([data-theme="dark"]) .dl-nav-login:hover { background: #15803d; color: #fff; }
html.theme-neon:not([data-theme="dark"]) .dl-nav-theme:hover { box-shadow: 0 4px 14px rgba(22,163,74,.25); }
html.theme-neon:not([data-theme="dark"]) .dl-hero-eyebrow,
html.theme-neon:not([data-theme="dark"]) .dl-eyebrow { color: #16a34a; }
html.theme-neon:not([data-theme="dark"]) .dl-hero-title span {
  background: linear-gradient(90deg,#16a34a,#0ea5e9 50%,#16a34a);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
html.theme-neon:not([data-theme="dark"]) .dl-btn-primary { background: #16a34a; box-shadow: 0 8px 24px rgba(22,163,74,.32); }
html.theme-neon:not([data-theme="dark"]) .dl-btn-primary:hover { background: #15803d; color: #fff; }
html.theme-neon:not([data-theme="dark"]) .dl-card:hover { box-shadow: 0 24px 48px rgba(22,163,74,.14); border-color: rgba(22,163,74,.3); }
html.theme-neon:not([data-theme="dark"]) .dl-search-box:focus-within { border-color: #16a34a; box-shadow: 0 14px 34px rgba(22,163,74,.18); }
html.theme-neon:not([data-theme="dark"]) .dl-scroll-cue::after { background: #16a34a; }
html.theme-neon:not([data-theme="dark"]) .dl-step-num { background: linear-gradient(135deg,#16a34a,#15803d); box-shadow: 0 10px 28px rgba(22,163,74,.3); }
html.theme-neon:not([data-theme="dark"]) .dl-logo-wordmark { background: linear-gradient(90deg,#16a34a,#0ea5e9); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ================================================================
   NEON THEME — "NIGHT" VARIANT — independent overlay (html[data-theme="dark"].theme-neon), mirrors the
   dark-mode block above but with the neon green palette.
   ================================================================ */
html[data-theme="dark"].theme-neon .dl-page { background: #0B0B0F; color: #F8FAFC; }

html[data-theme="dark"].theme-neon .dl-nav { background: rgba(11,11,15,0); }
html[data-theme="dark"].theme-neon .dl-nav.dl-nav-scrolled {
  background: rgba(17,19,23,.78); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(57,255,20,.10);
}
html[data-theme="dark"].theme-neon .dl-nav-brand span { color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-nav-links-desktop a { color: #A1A1AA; }
html[data-theme="dark"].theme-neon .dl-nav-links-desktop a:hover { background: rgba(57,255,20,.1); color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-nav-login { background: #39FF14; color: #0B0B0F; }
html[data-theme="dark"].theme-neon .dl-nav-login:hover { background: #2ECC0F; color: #0B0B0F; }
html[data-theme="dark"].theme-neon .dl-nav-theme { background: #171A20; border-color: rgba(57,255,20,.16); color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-nav-theme:hover { background: #1E232D; }

html[data-theme="dark"].theme-neon .dl-hero-glow {
  background:
    radial-gradient(ellipse 900px 600px at 20% -10%, rgba(57,255,20,.30) 0%, transparent 70%),
    radial-gradient(ellipse 700px 550px at 85% 20%, rgba(46,204,15,.22) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 50% 90%, rgba(16,185,129,.14) 0%, transparent 70%);
}
html[data-theme="dark"].theme-neon .dl-blob { opacity: .55; filter: blur(70px); }
html[data-theme="dark"].theme-neon .dl-hero-eyebrow { color: #39FF14; }
html[data-theme="dark"].theme-neon .dl-hero-title { color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-hero-title span {
  background: linear-gradient(90deg,#39FF14,#2ECC0F 50%,#10B981);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
html[data-theme="dark"].theme-neon .dl-hero-sub { color: #A1A1AA; }
html[data-theme="dark"].theme-neon .dl-btn-ghost { background: rgba(57,255,20,.12); color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-btn-ghost:hover { background: rgba(57,255,20,.18); color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-btn-primary { box-shadow: 0 8px 28px rgba(57,255,20,.45); }
html[data-theme="dark"].theme-neon .dl-btn-primary:hover { box-shadow: 0 12px 34px rgba(57,255,20,.55); color: #fff; }

html[data-theme="dark"].theme-neon .dl-search-box { background: #171A20; border-color: rgba(57,255,20,.14); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
html[data-theme="dark"].theme-neon .dl-search-box input { color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-search-box:focus-within { border-color: #39FF14; box-shadow: 0 14px 34px rgba(57,255,20,.25); }
html[data-theme="dark"].theme-neon .dl-scroll-cue { border-color: #2A2F38; }
html[data-theme="dark"].theme-neon .dl-scroll-cue::after { background: #39FF14; }

html[data-theme="dark"].theme-neon .dl-section-alt { background: #111317; }
html[data-theme="dark"].theme-neon .dl-eyebrow { color: #39FF14; }
html[data-theme="dark"].theme-neon .dl-title { color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-sub { color: #A1A1AA; }

html[data-theme="dark"].theme-neon .dl-card { background: #171A20; border-color: rgba(57,255,20,.12); }
html[data-theme="dark"].theme-neon .dl-card:hover { box-shadow: 0 24px 48px rgba(57,255,20,.18); border-color: rgba(57,255,20,.35); }
html[data-theme="dark"].theme-neon .dl-card h3 { color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-founder-photo { border-color: #171A20; box-shadow: 0 12px 32px rgba(57,255,20,.2); }
html[data-theme="dark"].theme-neon .dl-card p, html[data-theme="dark"].theme-neon .dl-card ul { color: #A1A1AA; }
html[data-theme="dark"].theme-neon .dl-card ul li i { color: #10B981; }

html[data-theme="dark"].theme-neon .dl-step h4 { color: #F8FAFC; }
html[data-theme="dark"].theme-neon .dl-step p { color: #A1A1AA; }
html[data-theme="dark"].theme-neon .dl-step-num { box-shadow: 0 10px 30px rgba(57,255,20,.45); }

html[data-theme="dark"].theme-neon .dl-quote::before, html[data-theme="dark"].theme-neon .dl-quote::after { color: #39FF14; }

html[data-theme="dark"].theme-neon .dl-cta { background: linear-gradient(135deg,#171A20 0%,#000 100%); }
html[data-theme="dark"].theme-neon .dl-cta::before {
  background:
    radial-gradient(ellipse 600px 400px at 20% 0%, rgba(57,255,20,.4) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 90% 100%, rgba(46,204,15,.25) 0%, transparent 70%);
}

html[data-theme="dark"].theme-neon .dl-footer { border-top-color: rgba(57,255,20,.12); }
html[data-theme="dark"].theme-neon .dl-footer-brand span { color: #F8FAFC !important; }
html[data-theme="dark"].theme-neon .dl-footer-links a { color: #A1A1AA; }
html[data-theme="dark"].theme-neon .dl-footer-links a:hover { color: #39FF14; }

html[data-theme="dark"].theme-neon .dl-stat-label { color: #A1A1AA; }
html[data-theme="dark"].theme-neon .dl-stat-num { background: linear-gradient(135deg,#39FF14,#2ECC0F); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ================================================================
   ACCENT THEME — VIOLET — DAY (light, soft purple/lavender)
   ================================================================ */
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-page { background: linear-gradient(180deg,#ede9ff 0%,#f7f5ff 40%,#fff 100%); color: #1e1b3a; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-nav { background: rgba(237,233,255,0); }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-nav.dl-nav-scrolled { background: rgba(255,255,255,.82); box-shadow: 0 1px 0 rgba(109,94,240,.1); }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-nav-brand span { color: #1e1b3a; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-logo-wordmark { background: linear-gradient(90deg,#6d5ef0,#a78bfa); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-nav-links-desktop a { color: #4c4470; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-nav-links-desktop a:hover { background: rgba(109,94,240,.1); color: #1e1b3a; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-nav-login { background: #6d5ef0; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-nav-login:hover { background: #5b4dd6; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-nav-theme { background: #fff; border-color: #e0d9ff; color: #1e1b3a; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-nav-theme:hover { background: #ede9ff; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-hero-eyebrow { color: #6d5ef0; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-hero-title { color: #1e1b3a; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-hero-title span { background: linear-gradient(90deg,#6d5ef0,#a78bfa 50%,#6d5ef0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-hero-sub { color: #4c4470; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-btn-primary { background: #6d5ef0; box-shadow: 0 8px 24px rgba(109,94,240,.32); }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-btn-primary:hover { background: #5b4dd6; color: #fff; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-btn-ghost { background: #ede9ff; color: #1e1b3a; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-btn-ghost:hover { background: #ddd6fe; color: #1e1b3a; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-search-box { background: #fff; border-color: #e0d9ff; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-search-box:focus-within { border-color: #6d5ef0; box-shadow: 0 14px 34px rgba(109,94,240,.16); }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-section-alt { background: #f1edff; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-eyebrow { color: #6d5ef0; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-title { color: #1e1b3a; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-sub { color: #4c4470; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-card { background: #fff; border-color: #e0d9ff; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-card:hover { box-shadow: 0 24px 48px rgba(109,94,240,.16); border-color: #c4b5fd; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-card h3 { color: #1e1b3a; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-card p, html.theme-violet:not([data-theme="dark"]) .dl-card ul { color: #4c4470; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-footer { border-top-color: #e0d9ff; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-footer-links a { color: #4c4470; }
html.theme-violet.theme-violet:not([data-theme="dark"]) .dl-footer-links a:hover { color: #6d5ef0; }

/* ================================================================
   ACCENT THEME — VIOLET — NIGHT (dark plum/violet glow)
   ================================================================ */
html.theme-violet.theme-violet[data-theme="dark"] .dl-page { background: #170f2e; color: #ece6ff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-nav { background: rgba(23,15,46,0); }
html.theme-violet.theme-violet[data-theme="dark"] .dl-nav.dl-nav-scrolled { background: rgba(31,22,55,.82); box-shadow: 0 1px 0 rgba(167,139,250,.14); }
html.theme-violet.theme-violet[data-theme="dark"] .dl-nav-brand span { color: #ece6ff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-logo-wordmark { background: linear-gradient(90deg,#a78bfa,#c4b5fd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-nav-links-desktop a { color: #b7a9e0; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-nav-links-desktop a:hover { background: rgba(167,139,250,.14); color: #ece6ff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-nav-login { background: #a78bfa; color: #170f2e; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-nav-login:hover { background: #c4b5fd; color: #170f2e; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-nav-theme { background: #1f1637; border-color: rgba(167,139,250,.2); color: #ece6ff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-nav-theme:hover { background: #281d45; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-hero-eyebrow { color: #c4b5fd; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-hero-title { color: #ece6ff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-hero-title span { background: linear-gradient(90deg,#a78bfa,#e9d5ff 50%,#a78bfa); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-hero-sub { color: #b7a9e0; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-btn-primary { background: #8b6df0; box-shadow: 0 8px 28px rgba(139,109,240,.45); }
html.theme-violet.theme-violet[data-theme="dark"] .dl-btn-primary:hover { background: #a78bfa; color: #fff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-btn-ghost { background: rgba(167,139,250,.14); color: #ece6ff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-btn-ghost:hover { background: rgba(167,139,250,.22); color: #ece6ff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-search-box { background: #1f1637; border-color: rgba(167,139,250,.2); box-shadow: 0 10px 30px rgba(0,0,0,.5); }
html.theme-violet.theme-violet[data-theme="dark"] .dl-search-box input { color: #ece6ff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-search-box:focus-within { border-color: #a78bfa; box-shadow: 0 14px 34px rgba(167,139,250,.28); }
html.theme-violet.theme-violet[data-theme="dark"] .dl-section-alt { background: #120a26; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-eyebrow { color: #c4b5fd; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-title { color: #ece6ff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-sub { color: #b7a9e0; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-card { background: #1f1637; border-color: rgba(167,139,250,.16); }
html.theme-violet.theme-violet[data-theme="dark"] .dl-card:hover { box-shadow: 0 24px 48px rgba(167,139,250,.22); border-color: rgba(167,139,250,.4); }
html.theme-violet.theme-violet[data-theme="dark"] .dl-card h3 { color: #ece6ff; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-card p, html.theme-violet[data-theme="dark"] .dl-card ul { color: #b7a9e0; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-footer { border-top-color: rgba(167,139,250,.16); }
html.theme-violet.theme-violet[data-theme="dark"] .dl-footer-links a { color: #b7a9e0; }
html.theme-violet.theme-violet[data-theme="dark"] .dl-footer-links a:hover { color: #c4b5fd; }

/* ================================================================
   ACCENT THEME — CYBER — DAY (light tech blue)
   ================================================================ */
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-page { background: #f0f7ff; color: #0a1a2e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-nav { background: rgba(240,247,255,0); }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-nav.dl-nav-scrolled { background: rgba(255,255,255,.82); box-shadow: 0 1px 0 rgba(37,99,235,.1); }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-nav-brand span { color: #0a1a2e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-logo-wordmark { background: linear-gradient(90deg,#2563eb,#00aaff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-nav-links-desktop a { color: #38536e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-nav-links-desktop a:hover { background: rgba(37,99,235,.1); color: #0a1a2e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-nav-login { background: #2563eb; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-nav-login:hover { background: #00aaff; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-nav-theme { background: #fff; border-color: #cfe3ff; color: #0a1a2e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-nav-theme:hover { background: #e3f0ff; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-hero-eyebrow { color: #2563eb; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-hero-title { color: #0a1a2e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-hero-title span { background: linear-gradient(90deg,#2563eb,#00aaff 50%,#2563eb); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-hero-sub { color: #38536e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-btn-primary { background: #2563eb; box-shadow: 0 8px 24px rgba(37,99,235,.32); }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-btn-primary:hover { background: #00aaff; color: #fff; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-btn-ghost { background: #e3f0ff; color: #0a1a2e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-btn-ghost:hover { background: #cfe3ff; color: #0a1a2e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-search-box { background: #fff; border-color: #cfe3ff; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-search-box:focus-within { border-color: #2563eb; box-shadow: 0 14px 34px rgba(37,99,235,.16); }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-section-alt { background: #e6f1ff; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-eyebrow { color: #2563eb; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-title { color: #0a1a2e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-sub { color: #38536e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-card { background: #fff; border-color: #cfe3ff; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-card:hover { box-shadow: 0 24px 48px rgba(37,99,235,.14); border-color: #93c5fd; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-card h3 { color: #0a1a2e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-card p, html.theme-cyber:not([data-theme="dark"]) .dl-card ul { color: #38536e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-footer { border-top-color: #cfe3ff; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-footer-links a { color: #38536e; }
html.theme-cyber.theme-cyber:not([data-theme="dark"]) .dl-footer-links a:hover { color: #2563eb; }

/* ================================================================
   ACCENT THEME — CYBER — NIGHT (dark, electric blue, glowing)
   ================================================================ */
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-page { background: #06070a; color: #e8f1ff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-nav { background: rgba(6,7,10,0); }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-nav.dl-nav-scrolled { background: rgba(13,17,23,.82); box-shadow: 0 1px 0 rgba(59,158,255,.12); }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-nav-brand span { color: #e8f1ff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-logo-wordmark { background: linear-gradient(90deg,#3b9eff,#00d4ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-nav-links-desktop a { color: #9fb3cc; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-nav-links-desktop a:hover { background: rgba(59,158,255,.12); color: #e8f1ff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-nav-login { background: #3b9eff; color: #06070a; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-nav-login:hover { background: #00d4ff; color: #06070a; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-nav-theme { background: #0d1117; border-color: rgba(59,158,255,.18); color: #e8f1ff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-nav-theme:hover { background: #131a24; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-hero-eyebrow { color: #3b9eff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-hero-title { color: #e8f1ff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-hero-title span { background: linear-gradient(90deg,#3b9eff,#00d4ff 50%,#3b9eff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-hero-sub { color: #9fb3cc; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-btn-primary { background: #3b9eff; box-shadow: 0 8px 28px rgba(59,158,255,.45); color: #06070a; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-btn-primary:hover { background: #00d4ff; color: #06070a; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-btn-ghost { background: rgba(59,158,255,.12); color: #e8f1ff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-btn-ghost:hover { background: rgba(59,158,255,.2); color: #e8f1ff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-search-box { background: #0d1117; border-color: rgba(59,158,255,.18); box-shadow: 0 10px 30px rgba(0,0,0,.5); }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-search-box input { color: #e8f1ff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-search-box:focus-within { border-color: #3b9eff; box-shadow: 0 14px 34px rgba(59,158,255,.25); }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-section-alt { background: #0a0d12; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-eyebrow { color: #3b9eff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-title { color: #e8f1ff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-sub { color: #9fb3cc; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-card { background: #0d1117; border-color: rgba(59,158,255,.14); }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-card:hover { box-shadow: 0 24px 48px rgba(59,158,255,.2); border-color: rgba(59,158,255,.4); }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-card h3 { color: #e8f1ff; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-card p, html.theme-cyber[data-theme="dark"] .dl-card ul { color: #9fb3cc; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-footer { border-top-color: rgba(59,158,255,.14); }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-footer-links a { color: #9fb3cc; }
html.theme-cyber.theme-cyber[data-theme="dark"] .dl-footer-links a:hover { color: #3b9eff; }

/* ================================================================
   ACCENT THEME — SUNSHINE — DAY (light, warm yellow/cream)
   ================================================================ */
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-page { background: #fffdf5; color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-nav { background: rgba(255,253,245,0); }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-nav.dl-nav-scrolled { background: rgba(255,253,245,.85); box-shadow: 0 1px 0 rgba(212,160,23,.12); }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-nav-brand span { color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-logo-wordmark { background: linear-gradient(90deg,#d4a017,#a8e063); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-nav-links-desktop a { color: #5c5640; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-nav-links-desktop a:hover { background: rgba(212,160,23,.12); color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-nav-login { background: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-nav-login:hover { background: #d4a017; color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-nav-theme { background: #fff; border-color: #f0e6c4; color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-nav-theme:hover { background: #fff8e0; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-hero-eyebrow { color: #b3850f; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-hero-title { color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-hero-title span { background: linear-gradient(90deg,#d4a017,#a8e063 50%,#d4a017); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-hero-sub { color: #5c5640; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-btn-primary { background: #1c1a10; box-shadow: 0 8px 24px rgba(212,160,23,.3); }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-btn-primary:hover { background: #d4a017; color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-btn-ghost { background: #fff8e0; color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-btn-ghost:hover { background: #f5ecc0; color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-search-box { background: #fff; border-color: #f0e6c4; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-search-box:focus-within { border-color: #d4a017; box-shadow: 0 14px 34px rgba(212,160,23,.18); }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-section-alt { background: #fbf6e3; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-eyebrow { color: #b3850f; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-title { color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-sub { color: #5c5640; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-card { background: #fff; border-color: #f0e6c4; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-card:hover { box-shadow: 0 24px 48px rgba(212,160,23,.16); border-color: #e8d68a; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-card h3 { color: #1c1a10; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-card p, html.theme-sunshine:not([data-theme="dark"]) .dl-card ul { color: #5c5640; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-footer { border-top-color: #f0e6c4; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-footer-links a { color: #5c5640; }
html.theme-sunshine.theme-sunshine:not([data-theme="dark"]) .dl-footer-links a:hover { color: #b3850f; }

/* ================================================================
   ACCENT THEME — SUNSHINE — NIGHT (dark charcoal, warm amber glow)
   ================================================================ */
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-page { background: #1a1610; color: #f5ecd8; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-nav { background: rgba(26,22,16,0); }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-nav.dl-nav-scrolled { background: rgba(36,29,18,.85); box-shadow: 0 1px 0 rgba(251,191,36,.14); }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-nav-brand span { color: #f5ecd8; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-logo-wordmark { background: linear-gradient(90deg,#fbbf24,#f59e0b); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-nav-links-desktop a { color: #c9b896; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-nav-links-desktop a:hover { background: rgba(251,191,36,.14); color: #f5ecd8; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-nav-login { background: #fbbf24; color: #1a1610; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-nav-login:hover { background: #f59e0b; color: #1a1610; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-nav-theme { background: #241d12; border-color: rgba(251,191,36,.2); color: #f5ecd8; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-nav-theme:hover { background: #2e2516; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-hero-eyebrow { color: #fbbf24; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-hero-title { color: #f5ecd8; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-hero-title span { background: linear-gradient(90deg,#fbbf24,#fde68a 50%,#fbbf24); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-hero-sub { color: #c9b896; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-btn-primary { background: #fbbf24; box-shadow: 0 8px 28px rgba(251,191,36,.4); color: #1a1610; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-btn-primary:hover { background: #fde68a; color: #1a1610; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-btn-ghost { background: rgba(251,191,36,.14); color: #f5ecd8; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-btn-ghost:hover { background: rgba(251,191,36,.22); color: #f5ecd8; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-search-box { background: #241d12; border-color: rgba(251,191,36,.2); box-shadow: 0 10px 30px rgba(0,0,0,.5); }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-search-box input { color: #f5ecd8; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-search-box:focus-within { border-color: #fbbf24; box-shadow: 0 14px 34px rgba(251,191,36,.28); }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-section-alt { background: #15110c; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-eyebrow { color: #fbbf24; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-title { color: #f5ecd8; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-sub { color: #c9b896; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-card { background: #241d12; border-color: rgba(251,191,36,.16); }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-card:hover { box-shadow: 0 24px 48px rgba(251,191,36,.2); border-color: rgba(251,191,36,.4); }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-card h3 { color: #f5ecd8; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-card p, html.theme-sunshine[data-theme="dark"] .dl-card ul { color: #c9b896; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-footer { border-top-color: rgba(251,191,36,.16); }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-footer-links a { color: #c9b896; }
html.theme-sunshine.theme-sunshine[data-theme="dark"] .dl-footer-links a:hover { color: #fbbf24; }

/* ================================================================
   ACCENT THEME — AURORA — DAY (light pink-violet)
   ================================================================ */
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-page { background: linear-gradient(180deg,#faf5ff 0%,#fdf4ff 50%,#fff 100%); color: #2e1a47; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-nav { background: rgba(250,245,255,0); }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-nav.dl-nav-scrolled { background: rgba(255,255,255,.82); box-shadow: 0 1px 0 rgba(139,92,246,.1); }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-nav-brand span { color: #2e1a47; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-logo-wordmark { background: linear-gradient(90deg,#8b5cf6,#d946ef); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-nav-links-desktop a { color: #5e4577; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-nav-links-desktop a:hover { background: rgba(139,92,246,.1); color: #2e1a47; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-nav-login { background: #8b5cf6; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-nav-login:hover { background: #d946ef; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-nav-theme { background: #fff; border-color: #ecd9ff; color: #2e1a47; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-nav-theme:hover { background: #f6ebff; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-hero-eyebrow { color: #8b5cf6; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-hero-title { color: #2e1a47; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-hero-title span { background: linear-gradient(90deg,#8b5cf6,#d946ef 50%,#8b5cf6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-hero-sub { color: #5e4577; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-btn-primary { background: #8b5cf6; box-shadow: 0 8px 24px rgba(139,92,246,.32); }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-btn-primary:hover { background: #7c3aed; color: #fff; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-btn-ghost { background: #f6ebff; color: #2e1a47; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-btn-ghost:hover { background: #ecd9ff; color: #2e1a47; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-search-box { background: #fff; border-color: #ecd9ff; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-search-box:focus-within { border-color: #8b5cf6; box-shadow: 0 14px 34px rgba(139,92,246,.16); }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-section-alt { background: #f6ebff; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-eyebrow { color: #8b5cf6; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-title { color: #2e1a47; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-sub { color: #5e4577; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-card { background: #fff; border-color: #ecd9ff; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-card:hover { box-shadow: 0 24px 48px rgba(139,92,246,.16); border-color: #d8b4fe; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-card h3 { color: #2e1a47; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-card p, html.theme-aurora:not([data-theme="dark"]) .dl-card ul { color: #5e4577; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-footer { border-top-color: #ecd9ff; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-footer-links a { color: #5e4577; }
html.theme-aurora.theme-aurora:not([data-theme="dark"]) .dl-footer-links a:hover { color: #8b5cf6; }

/* ================================================================
   ACCENT THEME — AURORA — NIGHT (dark, deep purple/violet glow)
   ================================================================ */
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-page { background: #0d0a1a; color: #f1ecff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-nav { background: rgba(13,10,26,0); }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-nav.dl-nav-scrolled { background: rgba(22,16,41,.82); box-shadow: 0 1px 0 rgba(185,166,255,.12); }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-nav-brand span { color: #f1ecff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-logo-wordmark { background: linear-gradient(90deg,#b9a6ff,#8b5cf6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-nav-links-desktop a { color: #b7a9e8; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-nav-links-desktop a:hover { background: rgba(185,166,255,.12); color: #f1ecff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-nav-login { background: #b9a6ff; color: #1a1033; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-nav-login:hover { background: #9d84ff; color: #1a1033; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-nav-theme { background: #161029; border-color: rgba(185,166,255,.18); color: #f1ecff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-nav-theme:hover { background: #1d1638; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-hero-eyebrow { color: #b9a6ff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-hero-title { color: #f1ecff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-hero-title span { background: linear-gradient(90deg,#b9a6ff,#8b5cf6 50%,#b9a6ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-hero-sub { color: #b7a9e8; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-btn-primary { background: #8b5cf6; box-shadow: 0 8px 28px rgba(139,92,246,.45); }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-btn-primary:hover { background: #7c3aed; color: #fff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-btn-ghost { background: rgba(185,166,255,.12); color: #f1ecff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-btn-ghost:hover { background: rgba(185,166,255,.2); color: #f1ecff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-search-box { background: #161029; border-color: rgba(185,166,255,.18); box-shadow: 0 10px 30px rgba(0,0,0,.5); }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-search-box input { color: #f1ecff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-search-box:focus-within { border-color: #b9a6ff; box-shadow: 0 14px 34px rgba(185,166,255,.25); }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-section-alt { background: #110c22; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-eyebrow { color: #b9a6ff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-title { color: #f1ecff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-sub { color: #b7a9e8; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-card { background: #161029; border-color: rgba(185,166,255,.14); }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-card:hover { box-shadow: 0 24px 48px rgba(185,166,255,.2); border-color: rgba(185,166,255,.4); }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-card h3 { color: #f1ecff; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-card p, html.theme-aurora[data-theme="dark"] .dl-card ul { color: #b7a9e8; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-footer { border-top-color: rgba(185,166,255,.14); }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-footer-links a { color: #b7a9e8; }
html.theme-aurora.theme-aurora[data-theme="dark"] .dl-footer-links a:hover { color: #b9a6ff; }
