/* ==========================================================================
   DEVIX — Redesign Design System (dark, n8n-inspired)
   Standalone stylesheet. Loaded AFTER bootstrap grid; replaces legacy theme.
   Clean, calm, technical. Buttons are rounded rectangles, headings are light.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* surfaces — near-black with a faint purple/charcoal tint */
  --dvx-bg: #0d0c11;
  --dvx-bg-2: #100e15;
  --dvx-surface: #16131d;
  --dvx-surface-2: #1d1926;
  --dvx-surface-3: #272030;
  --dvx-border: rgba(255, 255, 255, 0.08);
  --dvx-border-strong: rgba(255, 255, 255, 0.13);

  /* accent — coral, used sparingly */
  --dvx-accent: #ff0c00;
  --dvx-accent-2: #fd8925;
  --dvx-accent-soft: rgba(234, 75, 113, 0.12);
  --dvx-grad: linear-gradient(135deg, #ff7a5c 0%, #ea4b71 100%);
  --dvx-grad-soft: linear-gradient(135deg, rgba(255, 122, 92, 0.14), rgba(234, 75, 113, 0.14));
  --dvx-ok: #22c55e;

  /* text */
  --dvx-text: #f4f1f6;
  --dvx-text-muted: #b9b4c2;
  --dvx-text-dim: #7d7689;

  /* type */
  --dvx-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --dvx-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  /* layout */
  --dvx-container: 1200px;
  --dvx-radius: 12px;
  --dvx-radius-sm: 8px;
  --dvx-radius-lg: 18px;
  --dvx-radius-btn: 8px;
  --dvx-section: clamp(64px, 8vw, 120px);
  --dvx-header-h: 132px; /* announcement bar + floating nav, used to offset the hero */

  /* shadow / glow — calm, no neon */
  --dvx-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --dvx-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.3);
  --dvx-glow: 0 0 0 1px rgba(234, 75, 113, 0.28), 0 14px 40px rgba(234, 75, 113, 0.18);

  --dvx-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base reset (scoped to public body) ---------- */
body.dvx {
  margin: 0;
  background: var(--dvx-bg);
  color: var(--dvx-text);
  font-family: var(--dvx-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.dvx * { box-sizing: border-box; }
body.dvx::selection,
body.dvx ::selection { background: var(--dvx-accent); color: #fff; }

.dvx h1, .dvx h2, .dvx h3, .dvx h4, .dvx h5, .dvx h6 {
  color: var(--dvx-text);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
.dvx h1 { font-weight: 500; }
.dvx p { margin: 0 0 1rem; color: var(--dvx-text-muted); }
.dvx a { color: inherit; text-decoration: none; transition: color 0.18s var(--dvx-ease); }
.dvx a:hover { color: var(--dvx-accent); }
.dvx img { max-width: 100%; height: auto; }
.dvx ul { margin: 0; }

/* keep bootstrap container readable on dark, but our own width */
.dvx .container,
.dvx .th-container { max-width: var(--dvx-container); padding-left: 20px; padding-right: 20px; }

/* ---------- Typographic helpers ---------- */
.dvx-display {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.dvx-h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.dvx-h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 600; letter-spacing: -0.015em; }
.dvx-lead { font-size: 16px; color: var(--dvx-text-muted); line-height: 1.6; font-weight: 400; }
.dvx-gradient-text {
  background: var(--dvx-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* eyebrow / kicker — small mono uppercase pill with subtle glowing dot */
.dvx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dvx-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dvx-text-muted);
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--dvx-border);
  background: rgba(255, 255, 255, 0.02);
}
.dvx-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--dvx-accent);
  box-shadow: 0 0 8px rgba(234, 75, 113, 0.8);
}

/* ---------- Sections ---------- */
.dvx-section { padding-block: var(--dvx-section); position: relative; }
.dvx-section--tight { padding-block: clamp(44px, 6vw, 80px); }
.dvx-section--surface { background: var(--dvx-surface); }
.dvx-section--alt { background: linear-gradient(180deg, var(--dvx-bg) 0%, var(--dvx-bg-2) 100%); }
.dvx-section-head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.dvx-section-head.is-left { margin-left: 0; text-align: left; }
.dvx-section-head h2 { margin: 16px 0 14px; }

.dvx-glow-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(234, 75, 113, 0.08), transparent 70%);
  pointer-events: none;
}

/* ---------- Buttons — rounded RECTANGLES, not pills ---------- */
.dvx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--dvx-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 11px 20px;
  border-radius: var(--dvx-radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s var(--dvx-ease), box-shadow 0.18s var(--dvx-ease), background 0.18s var(--dvx-ease), border-color 0.18s var(--dvx-ease), filter 0.18s var(--dvx-ease), color 0.18s;
  white-space: nowrap;
}
.dvx-btn i, .dvx-btn svg { transition: transform 0.18s var(--dvx-ease); }
.dvx-btn:hover i.dvx-arrow, .dvx-btn:hover svg.dvx-arrow { transform: translateX(3px); }
.dvx-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--dvx-accent-soft), 0 0 0 1px var(--dvx-accent); }

.dvx-btn--primary {
  background: var(--dvx-grad);
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(234, 75, 113, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.dvx-btn--primary:hover { color: #fff !important; transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 14px 34px rgba(234, 75, 113, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.dvx-btn--primary:active { transform: translateY(0); }

.dvx-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--dvx-border-strong);
  color: var(--dvx-text) !important;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.dvx-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff !important;
  transform: translateY(-2px);
}
.dvx-btn--ghost:active { transform: translateY(0); }

.dvx-btn--link { padding: 0; background: none; color: var(--dvx-accent); font-weight: 600; border-radius: 0; }
.dvx-btn--link:hover { color: var(--dvx-accent-2); }

.dvx-btn--sm { padding: 8px 15px; font-size: 13.5px; }
.dvx-btn--lg { padding: 15px 28px; font-size: 16px; border-radius: 10px; }
.dvx-btn--block { width: 100%; }

/* ---------- Announcement bar ---------- */
.dvx-announce {
  position: relative; z-index: 1001;
  min-height: 40px; padding: 8px 0;
  font-size: 13.5px; color: var(--dvx-text);
  background: linear-gradient(90deg, rgba(255,122,92,0.16), rgba(234,75,113,0.16));
  border-bottom: 1px solid var(--dvx-border);
}
.dvx-announce-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dvx-announce-left { display: inline-flex; align-items: center; gap: 10px; }
.dvx-announce-right { align-items: center; gap: 12px; color: var(--dvx-text-muted); white-space: nowrap; font-size: 13px; }
.dvx-announce-proof { display: inline-flex; align-items: center; gap: 7px; }
.dvx-announce-right .stars { color: #ffb454; letter-spacing: 1px; }
.dvx-announce-signin { color: var(--dvx-text); font-weight: 600; padding-left: 14px; border-left: 1px solid var(--dvx-border-strong); }
.dvx-announce-signin:hover { color: var(--dvx-accent); }
.dvx-announce .pill { font-family: var(--dvx-mono); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--dvx-accent); background: var(--dvx-accent-soft); border: 1px solid var(--dvx-border-strong); padding: 3px 9px; border-radius: 999px; }
.dvx-announce a { color: var(--dvx-text); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.dvx-announce a:hover { color: var(--dvx-accent); }
.dvx-announce a i { transition: transform .2s var(--dvx-ease); }
.dvx-announce a:hover i { transform: translateX(3px); }

/* ---------- Navigation (transparent over hero, solid on scroll) ---------- */
.dvx-nav-wrap { position: sticky; top: 0; z-index: 1000; padding: 12px 0; transition: padding 0.3s var(--dvx-ease); }
.dvx-nav { background: transparent; border: none; }
/* boxed glassmorphic floating bar */
.dvx-nav .container {
  display: flex; align-items: center; min-height: 60px; gap: 28px;
  padding: 6px 10px 6px 20px;
  background: rgba(20, 17, 27, 0.55);
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
  transition: background 0.3s var(--dvx-ease), border-color 0.3s var(--dvx-ease), box-shadow 0.3s var(--dvx-ease);
}
.dvx-nav.is-stuck .container {
  background: rgba(13, 12, 17, 0.8);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.dvx-nav-logo { margin-right: 8px; }
.dvx-nav-logo img { width: 144px; max-height: 38px; object-fit: contain; }
.dvx-nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; margin: 0; }
.dvx-nav-menu > li > a {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--dvx-radius-sm);
  font-size: 15px; font-weight: 450; color: var(--dvx-text-muted);
  transition: color 0.18s var(--dvx-ease);
}
/* underline indicator (no background) — animates in on hover, locked for active */
.dvx-nav-menu > li > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: -10px; height: 2px; border-radius: 2px;
  background: var(--dvx-grad); opacity: 0; transform: scaleX(0); transform-origin: left;
  transition: transform 0.26s var(--dvx-ease), opacity 0.2s var(--dvx-ease);
}
.dvx-nav-menu > li:hover > a { color: var(--dvx-text); }
.dvx-nav-menu > li:hover > a::after { opacity: 0.5; transform: scaleX(0.6); }
.dvx-nav-menu > li.is-active > a { color: var(--dvx-text); font-weight: 550; }
.dvx-nav-menu > li.is-active > a::after { opacity: 1; transform: scaleX(1); }
.dvx-nav-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.dvx-nav-link { font-size: 15px; font-weight: 500; color: var(--dvx-text); }
.dvx-nav-link:hover { color: var(--dvx-accent); }
.dvx-nav-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--dvx-radius-sm); border: 1px solid transparent; background: none; color: var(--dvx-text-muted); cursor: pointer; transition: color .18s, background .18s; }
.dvx-nav-icon:hover { color: var(--dvx-text); background: rgba(255,255,255,0.06); }
/* small social-proof pill in nav */
.dvx-nav-proof { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--dvx-border-strong); background: rgba(255,255,255,0.03); font-size: 12.5px; color: var(--dvx-text-muted); white-space: nowrap; }
.dvx-nav-proof .stars { color: #ffb454; letter-spacing: 1px; }
.dvx-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* dropdown / mega */
.dvx-has-drop { position: relative; }
.dvx-drop {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 260px; padding: 8px;
  background: var(--dvx-surface-2);
  border: 1px solid var(--dvx-border);
  border-radius: var(--dvx-radius);
  box-shadow: var(--dvx-shadow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s var(--dvx-ease), transform 0.18s var(--dvx-ease), visibility 0.18s;
}
/* invisible bridge so moving the cursor into the dropdown doesn't drop the hover */
.dvx-drop::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.dvx-has-drop:hover .dvx-drop,
.dvx-has-drop:focus-within .dvx-drop { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dvx-drop a { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; padding: 10px 12px; border-radius: var(--dvx-radius-sm); color: var(--dvx-text-muted); white-space: normal; }
.dvx-drop a:hover { background: rgba(255, 255, 255, 0.04); color: var(--dvx-text); }
.dvx-drop a span.t { display: block; color: var(--dvx-text); font-weight: 600; font-size: 14px; line-height: 1.3; }
.dvx-drop a span.d { display: block; font-size: 12px; color: var(--dvx-text-dim); line-height: 1.3; }

/* mobile */
.dvx-nav-toggle { display: none; background: none; border: 1px solid var(--dvx-border-strong); color: var(--dvx-text); width: 44px; height: 44px; border-radius: var(--dvx-radius-sm); font-size: 20px; cursor: pointer; }
.dvx-mobile {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--dvx-bg);
  transform: translateX(100%);
  transition: transform 0.32s var(--dvx-ease);
  display: flex; flex-direction: column; padding: 24px;
  overflow-y: auto;
}
.dvx-mobile.is-open { transform: translateX(0); }
.dvx-mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dvx-mobile-head img { width: 150px; }
.dvx-mobile-close { background: none; border: none; color: var(--dvx-text); font-size: 28px; cursor: pointer; }
.dvx-mobile-menu { list-style: none; padding: 0; margin: 0 0 24px; }
.dvx-mobile-menu li a { display: block; padding: 16px 4px; font-size: 19px; font-weight: 500; border-bottom: 1px solid var(--dvx-border); }

.dvx-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--dvx-border-strong);
  background: var(--dvx-surface-2); color: #fff; font-weight: 600; font-size: 14px; overflow: hidden;
}
.dvx-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero (left content, right glowing visual) ---------- */
/* hero starts at the very top edge; the fixed/translucent header floats over it */
.dvx-hero {
  position: relative; overflow: hidden;
  margin-top: calc(-1 * var(--dvx-header-h, 132px));
  padding-top: 140px;
  padding-bottom: 30px;
  /* n8n.io hero: flat dark base (rgb 14,9,24) with a single soft, static glow
     behind the visual. No animated layers. */
  background:
    radial-gradient(46% 52% at 80% 40%, rgba(255, 122, 92, 0.12), transparent 70%),
    #0e0918;
}
.dvx-hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(85% 80% at 60% 30%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(85% 80% at 60% 30%, #000 25%, transparent 80%);
}
.dvx-hero .container { position: relative; z-index: 2; }
.dvx-hero-layout { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.dvx-hero-inner { text-align: left; max-width: 620px; }
.dvx-hero-inner h1 { margin: 24px 0 22px; }
.dvx-hero-inner .dvx-lead { margin: 0; max-width: 540px; }
.dvx-hero-actions { display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap; margin-top: 30px; }
.dvx-hero-note { margin-top: 28px; font-size: 12.5px; color: var(--dvx-text-dim); font-family: var(--dvx-mono); letter-spacing: 0.03em; }

/* original glowing "orbit core" visual */
.dvx-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 460px; }

/* Right-side molten bolt (n8n-style focal render) */
.dvx-hero-bolt { position: relative; width: min(100%, 440px); margin: 0 auto; display: grid; place-items: center; min-height: 440px; }
.dvx-bolt-aura {
  position: absolute; top: 6%; left: 50%; transform: translateX(-50%);
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.45), rgba(234, 75, 113, 0.20) 46%, transparent 70%);
  filter: blur(46px); z-index: 0; animation: dvx-aura-pulse 6s ease-in-out infinite;
}
.dvx-bolt-img {
  position: relative; z-index: 2; width: clamp(160px, 23vw, 250px); height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 90, 60, 0.55)) drop-shadow(0 22px 48px rgba(207, 28, 78, 0.5));
}
.dvx-bolt-pool {
  position: absolute; z-index: 1; bottom: 7%; left: 50%; transform: translateX(-50%);
  width: 320px; height: 84px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 120, 80, 0.6), rgba(234, 75, 113, 0.22) 46%, transparent 72%);
  filter: blur(24px); animation: dvx-pool-pulse 5s ease-in-out infinite;
}
@keyframes dvx-aura-pulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.9;  transform: translateX(-50%) scale(1.12); }
}
@keyframes dvx-pool-pulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.95; transform: translateX(-50%) scale(1.14); }
}

/* Animated light glow along the whole bottom edge of the hero */
.dvx-hero-beams {
  position: absolute; left: 0; right: 0; bottom: 0; height: 360px; z-index: 1;
  pointer-events: none; overflow: hidden;
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 42%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, #000 42%, transparent 100%);
}
/* drifting colour glows — brighter, larger, faster, additive blending */
.dvx-hero-beams span {
  position: absolute; bottom: -120px; width: 48vw; height: 380px; border-radius: 50%;
  filter: blur(60px); opacity: 0.7; mix-blend-mode: screen; will-change: transform, opacity;
}
.dvx-hero-beams span:nth-child(1) { left: -10%; background: radial-gradient(circle, rgba(234, 75, 113, 0.85), transparent 62%); animation: dvx-beam 6s  ease-in-out infinite; }
.dvx-hero-beams span:nth-child(2) { left: 30%;  background: radial-gradient(circle, rgba(255, 122, 92, 0.80), transparent 62%); animation: dvx-beam 7.5s ease-in-out infinite 1s; }
.dvx-hero-beams span:nth-child(3) { left: 68%;  background: radial-gradient(circle, rgba(124, 77, 255, 0.70), transparent 62%); animation: dvx-beam 9s  ease-in-out infinite 2s; }
/* a bright band of light that sweeps across the bottom edge */
.dvx-hero-beams::after {
  content: ""; position: absolute; bottom: -40px; left: -50%; width: 55%; height: 240px;
  background: radial-gradient(ellipse at center, rgba(255, 170, 120, 0.35), transparent 70%);
  filter: blur(34px); mix-blend-mode: screen; will-change: transform;
  animation: dvx-sweep 7s ease-in-out infinite;
}
/* glowing horizon line across the whole bottom */
.dvx-hero-beams::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 92, 0.9), rgba(234, 75, 113, 1), rgba(124, 77, 255, 0.8), transparent);
  background-size: 220% 100%;
  box-shadow: 0 0 18px rgba(234, 75, 113, 0.7);
  animation: dvx-beam-line 6s linear infinite;
}
@keyframes dvx-beam {
  0%, 100% { transform: translate(-6%, 40px) scale(1);    opacity: 0.4; }
  50%      { transform: translate(10%, -24px) scale(1.4); opacity: 0.85; }
}
@keyframes dvx-sweep {
  0%   { transform: translateX(0);     opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translateX(320%);  opacity: 0; }
}
@keyframes dvx-beam-line {
  0%   { background-position: 0% 0; }
  100% { background-position: 220% 0; }
}
@media (max-width: 991px) {
  .dvx-hero-beams { height: 240px; }
}
.dvx-hero-orbit { position: relative; width: min(100%, 480px); aspect-ratio: 1; }
.dvx-orbit-glow { position: absolute; inset: 6%; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(255,122,92,0.55), rgba(234,75,113,0.28) 38%, transparent 68%); filter: blur(18px); animation: dvx-pulse 5s ease-in-out infinite; }
.dvx-orbit-ring { position: absolute; border-radius: 50%; border: 1px solid var(--dvx-border-strong); }
.dvx-orbit-ring.r1 { inset: 12%; }
.dvx-orbit-ring.r2 { inset: 26%; border-style: dashed; border-color: rgba(255,255,255,0.10); animation: dvx-spin 26s linear infinite; }
.dvx-orbit-ring.r3 { inset: 40%; }
.dvx-orbit-core {
  position: absolute; inset: 38%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd9b0, #ff7a5c 42%, #ea4b71 78%);
  box-shadow: 0 0 60px rgba(234,75,113,0.6), inset 0 0 30px rgba(255,255,255,0.25);
  display: grid; place-items: center; color: #fff; font-size: clamp(22px, 3vw, 34px);
  animation: dvx-pulse 5s ease-in-out infinite;
}
.dvx-orbit-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.dvx-orbit-svg line { stroke: var(--dvx-accent); stroke-width: 1.4; opacity: 0.4; stroke-dasharray: 4 6; animation: dvx-dash 1.6s linear infinite; }
.dvx-orbit-chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 9px;
  background: rgba(22, 19, 29, 0.92); border: 1px solid var(--dvx-border-strong);
  border-radius: 11px; padding: 9px 13px; box-shadow: var(--dvx-shadow-sm);
  backdrop-filter: blur(6px); white-space: nowrap;
  animation: dvx-float 7s ease-in-out infinite;
}
.dvx-orbit-chip .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--dvx-grad-soft); color: var(--dvx-accent); flex: 0 0 30px; font-size: 14px; }
.dvx-orbit-chip .t { font-weight: 600; font-size: 13px; color: var(--dvx-text); }
.dvx-orbit-chip .s { font-size: 11px; color: var(--dvx-text-dim); }
.dvx-orbit-chip.c1 { top: 4%; left: 4%; }
.dvx-orbit-chip.c2 { top: 18%; right: -2%; animation-delay: -2s; }
.dvx-orbit-chip.c3 { bottom: 14%; left: -4%; animation-delay: -3.4s; }
.dvx-orbit-chip.c4 { bottom: 2%; right: 6%; animation-delay: -5s; }

@keyframes dvx-spin { to { transform: rotate(360deg); } }
@keyframes dvx-dash { to { stroke-dashoffset: -20; } }
@keyframes dvx-pulse { 0%,100% { transform: scale(1); opacity: 0.95; } 50% { transform: scale(1.05); opacity: 1; } }
@keyframes dvx-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---------- Cards / grids ---------- */
.dvx-grid { display: grid; gap: 24px; }
.dvx-grid--2 { grid-template-columns: repeat(2, 1fr); }
.dvx-grid--3 { grid-template-columns: repeat(3, 1fr); }
.dvx-grid--4 { grid-template-columns: repeat(4, 1fr); }

.dvx-card {
  position: relative;
  background: var(--dvx-surface);
  border: 1px solid var(--dvx-border);
  border-radius: var(--dvx-radius);
  padding: 26px;
  transition: transform 0.25s var(--dvx-ease), border-color 0.25s var(--dvx-ease), box-shadow 0.25s var(--dvx-ease), background 0.25s var(--dvx-ease);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.dvx-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(255,122,92,0.5), rgba(234,75,113,0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.25s var(--dvx-ease); pointer-events: none;
}
.dvx-card:hover { transform: translateY(-4px); border-color: var(--dvx-border-strong); box-shadow: var(--dvx-shadow); background: var(--dvx-surface-2); }
.dvx-card:hover::before { opacity: 1; }
.dvx-card-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--dvx-grad-soft); border: 1px solid var(--dvx-border-strong);
  margin-bottom: 18px; font-size: 21px; color: var(--dvx-accent);
}
.dvx-card-icon img { width: 26px; height: 26px; object-fit: contain; }
.dvx-card h3, .dvx-card .dvx-card-title { font-size: 1.18rem; font-weight: 600; margin-bottom: 10px; }
.dvx-card p { font-size: 0.95rem; margin-bottom: 16px; }
.dvx-card-link { margin-top: auto; color: var(--dvx-accent); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }

/* media card (portfolio / news / team) */
.dvx-media-card {
  position: relative; border-radius: var(--dvx-radius); overflow: hidden;
  background: var(--dvx-surface); border: 1px solid var(--dvx-border);
  transition: transform 0.25s var(--dvx-ease), border-color 0.25s var(--dvx-ease), box-shadow 0.25s var(--dvx-ease);
  display: flex; flex-direction: column;
}
.dvx-media-card:hover { transform: translateY(-4px); border-color: var(--dvx-border-strong); box-shadow: var(--dvx-shadow); }
.dvx-media-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--dvx-surface-2); }
.dvx-media-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--dvx-ease); }
.dvx-media-card:hover .dvx-media-thumb img { transform: scale(1.05); }
.dvx-media-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.dvx-media-body h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 10px; }
.dvx-media-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--dvx-text-dim); margin-bottom: 12px; font-family: var(--dvx-mono); }
.dvx-media-meta i { margin-right: 5px; color: var(--dvx-accent); }

/* ---------- Chips ---------- */
.dvx-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.dvx-chip {
  padding: 8px 16px; border-radius: var(--dvx-radius-btn); font-size: 13px; font-weight: 500;
  color: var(--dvx-text-muted); border: 1px solid var(--dvx-border); background: var(--dvx-surface);
  transition: color 0.18s var(--dvx-ease), border-color 0.18s var(--dvx-ease), background 0.18s var(--dvx-ease); cursor: pointer;
}
.dvx-chip:hover { color: var(--dvx-text); border-color: var(--dvx-border-strong); background: var(--dvx-surface-2); }
.dvx-chip.is-active { color: #fff; border-color: transparent; background: var(--dvx-grad); }
.dvx-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 500;
  font-family: var(--dvx-mono); letter-spacing: 0.04em;
  color: var(--dvx-accent); background: var(--dvx-accent-soft); border: 1px solid var(--dvx-border-strong);
}

/* ---------- Stats ---------- */
.dvx-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dvx-stat { text-align: center; padding: 28px 16px; border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius); background: var(--dvx-surface); }
.dvx-stat-num { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 600; letter-spacing: -0.03em; }
.dvx-stat-label { color: var(--dvx-text-muted); font-size: 14px; margin-top: 6px; }

/* ---------- Logo marquee ---------- */
.dvx-marquee { position: relative; overflow: hidden; }
.dvx-marquee::before, .dvx-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 2; pointer-events: none;
}
.dvx-marquee::before { left: 0; background: linear-gradient(90deg, var(--dvx-bg), transparent); }
.dvx-marquee::after { right: 0; background: linear-gradient(270deg, var(--dvx-bg), transparent); }
.dvx-marquee .swiper-slide { width: auto; padding: 0 36px; height: 60px; display: flex; align-items: center; justify-content: center; }
.dvx-marquee img { max-height: 36px; width: auto; opacity: 0.55; filter: grayscale(1) brightness(2); transition: opacity 0.25s, filter 0.25s; }
.dvx-marquee img:hover { opacity: 1; filter: grayscale(0) brightness(1); }
.dvx-marquee .swiper-wrapper { transition-timing-function: linear !important; }

/* ---------- Accordion ---------- */
.dvx-accordion { display: flex; flex-direction: column; gap: 12px; }
.dvx-ac-item { border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius); background: var(--dvx-surface); overflow: hidden; transition: border-color 0.25s; }
.dvx-ac-item.is-open { border-color: var(--dvx-border-strong); }
.dvx-ac-head { width: 100%; text-align: left; background: none; border: none; color: var(--dvx-text); font-size: 1.02rem; font-weight: 600; padding: 19px 24px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dvx-ac-head .ic { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--dvx-border-strong); display: inline-flex; align-items: center; justify-content: center; transition: transform 0.3s var(--dvx-ease), background 0.3s; }
.dvx-ac-item.is-open .ic { background: var(--dvx-grad); border-color: transparent; transform: rotate(45deg); }
.dvx-ac-body { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--dvx-ease); }
.dvx-ac-body-inner { padding: 0 24px 22px; color: var(--dvx-text-muted); }

/* ---------- Page header / breadcrumb ---------- */
.dvx-page-head { position: relative; padding: clamp(84px, 11vw, 140px) 0 clamp(44px, 6vw, 72px); text-align: center; overflow: hidden; border-bottom: 1px solid var(--dvx-border); }
.dvx-page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(234, 75, 113, 0.1), transparent 70%); pointer-events: none; }
.dvx-page-head h1 { position: relative; font-size: clamp(2.2rem, 4.5vw, 3.3rem); font-weight: 500; }
.dvx-breadcrumb { position: relative; display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 16px; font-size: 13.5px; color: var(--dvx-text-dim); font-family: var(--dvx-mono); }
.dvx-breadcrumb a { color: var(--dvx-text-muted); }
.dvx-breadcrumb .sep { color: var(--dvx-text-dim); }

/* ---------- Forms (theme bootstrap markup too) ---------- */
.dvx .form-control,
.dvx .form-select,
.dvx-input,
.dvx textarea,
.dvx input[type="text"],
.dvx input[type="email"],
.dvx input[type="tel"],
.dvx input[type="password"],
.dvx input[type="number"],
.dvx input[type="search"] {
  width: 100%;
  background: var(--dvx-surface-2);
  border: 1px solid var(--dvx-border);
  border-radius: var(--dvx-radius-sm);
  color: var(--dvx-text);
  padding: 6px 16px;
  font-family: var(--dvx-font);
  font-size: 15px;
  transition: border-color 0.18s var(--dvx-ease), box-shadow 0.18s var(--dvx-ease), background 0.18s;
}
.dvx .form-control::placeholder,
.dvx textarea::placeholder,
.dvx input::placeholder { color: var(--dvx-text-dim); }
.dvx .form-control:focus,
.dvx .form-select:focus,
.dvx textarea:focus,
.dvx input:focus {
  outline: none;
  border-color: var(--dvx-accent);
  box-shadow: 0 0 0 3px var(--dvx-accent-soft);
  background: var(--dvx-surface-3);
}
.dvx .form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23b9b4c2' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.dvx .form-select option { background: var(--dvx-surface-2); color: var(--dvx-text); }
.dvx label, .dvx .form-label { color: var(--dvx-text); font-weight: 600; font-size: 14px; margin-bottom: 8px; display: inline-block; }
.dvx textarea { min-height: 130px; resize: vertical; }

/* nice-select / intl-tel overrides */
.dvx .iti { width: 100%; }
.dvx .iti__country-list { background: var(--dvx-surface-2); color: var(--dvx-text); }
.dvx .iti__country.iti__highlight { background: var(--dvx-surface-3); }

.dvx-form-card { background: var(--dvx-surface); border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius-lg); padding: clamp(26px, 4vw, 44px); }
.dvx .alert { border-radius: var(--dvx-radius-sm); padding: 12px 16px; border: 1px solid var(--dvx-border); }
.dvx .alert-success { background: rgba(34, 197, 94, 0.12); border-color: rgba(34, 197, 94, 0.3); color: #86efac; }
.dvx .alert-danger { background: rgba(234, 75, 113, 0.12); border-color: rgba(234, 75, 113, 0.35); color: #ff9bb3; }

/* ---------- Article / rich text ---------- */
.dvx-prose { color: var(--dvx-text-muted); font-size: 1.05rem; line-height: 1.8; }
.dvx-prose h1, .dvx-prose h2, .dvx-prose h3, .dvx-prose h4 { color: var(--dvx-text); margin: 1.6em 0 0.6em; }
.dvx-prose a { color: var(--dvx-accent); text-decoration: underline; text-underline-offset: 3px; }
.dvx-prose img { border-radius: var(--dvx-radius); margin: 1.5em 0; }
.dvx-prose ul, .dvx-prose ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.dvx-prose li { margin-bottom: 0.5em; }
.dvx-prose blockquote { border-left: 3px solid var(--dvx-accent); padding-left: 20px; margin: 1.5em 0; color: var(--dvx-text); font-style: italic; }
.dvx-prose code { background: var(--dvx-surface-2); padding: 2px 7px; border-radius: 6px; font-family: var(--dvx-mono); font-size: 0.9em; }
.dvx-prose pre { background: var(--dvx-surface-2); border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius); padding: 18px; overflow-x: auto; }

/* ---------- Timeline ---------- */
.dvx-timeline { display: grid; gap: 28px; }
.dvx-timeline-item { position: relative; padding-left: 56px; }
.dvx-timeline-item::before { content: attr(data-step); position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 12px; background: var(--dvx-grad-soft); border: 1px solid var(--dvx-border-strong); display: flex; align-items: center; justify-content: center; font-family: var(--dvx-mono); font-weight: 600; color: var(--dvx-accent); }

/* ---------- Footer ---------- */
.dvx-footer { background: var(--dvx-bg-2); border-top: 1px solid var(--dvx-border); padding-top: clamp(40px, 6vw, 72px); }
.dvx-footer-cta { position: relative; overflow: hidden; border: 1px solid var(--dvx-border-strong); border-radius: var(--dvx-radius-lg); padding: clamp(40px, 6vw, 76px) clamp(24px, 4vw, 64px); text-align: center; margin-bottom: clamp(48px, 6vw, 76px); background: var(--dvx-surface); }
.dvx-footer-cta-glow { position: absolute; inset: 0; background: radial-gradient(60% 130% at 50% 0%, rgba(234,75,113,0.16), transparent 65%); pointer-events: none; }
.dvx-footer-cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.dvx-footer-cta h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 500; margin: 16px 0 12px; }
.dvx-footer-cta p { color: var(--dvx-text-muted); margin-bottom: 26px; }
.dvx-footer-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.dvx-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; padding-bottom: 48px; }
.dvx-footer-logo img { width: 170px; margin-bottom: 18px; }
.dvx-footer-about { color: var(--dvx-text-muted); font-size: 14px; line-height: 1.7; max-width: 320px; }
.dvx-footer h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--dvx-mono); font-weight: 500; color: var(--dvx-text-dim); margin-bottom: 18px; }
.dvx-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.dvx-footer ul a { color: var(--dvx-text-muted); font-size: 14px; }
.dvx-footer ul a:hover { color: var(--dvx-accent); }
.dvx-footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--dvx-text-muted); font-size: 14px; }
.dvx-footer-contact i { color: var(--dvx-accent); margin-top: 3px; }
.dvx-social { display: flex; gap: 10px; margin-top: 20px; }
.dvx-social a { width: 40px; height: 40px; border-radius: var(--dvx-radius-sm); border: 1px solid var(--dvx-border); display: inline-flex; align-items: center; justify-content: center; color: var(--dvx-text-muted); transition: background 0.18s, color 0.18s, border-color 0.18s; }
.dvx-social a:hover { background: var(--dvx-grad); color: #fff; border-color: transparent; }
.dvx-footer-bottom { border-top: 1px solid var(--dvx-border); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--dvx-text-dim); }
.dvx-footer-bottom a { color: var(--dvx-text-muted); }
.dvx-footer-badges { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.dvx-footer-badge { font-size: 11px; font-family: var(--dvx-mono); color: var(--dvx-text-dim); border: 1px solid var(--dvx-border); padding: 5px 10px; border-radius: 8px; }

/* newsletter */
.dvx-newsletter { display: flex; gap: 10px; margin-top: 16px; }
.dvx-newsletter input { flex: 1; }

/* ---------- Floating + utility widgets ---------- */
/* WhatsApp — modern animated widget (bottom-right, above scroll-top) */
.dvx-whatsapp {
  position: fixed; right: 24px; bottom: 86px; z-index: 901;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 27px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42);
  transition: transform 0.25s var(--dvx-ease), box-shadow 0.25s var(--dvx-ease);
}
.dvx-whatsapp::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  z-index: -1; animation: dvx-wa-pulse 2.2s ease-out infinite;
}
.dvx-whatsapp::after {
  content: "Chat with us"; position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--dvx-surface-2); color: var(--dvx-text); border: 1px solid var(--dvx-border-strong);
  font-size: 13px; font-weight: 600; white-space: nowrap; padding: 7px 12px; border-radius: 999px;
  box-shadow: var(--dvx-shadow-sm); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s var(--dvx-ease), transform 0.2s var(--dvx-ease);
}
.dvx-whatsapp:hover { transform: scale(1.08); color: #fff; box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5); }
.dvx-whatsapp:hover::after { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
.dvx-whatsapp i { animation: dvx-wa-wiggle 3s ease-in-out infinite; }
@keyframes dvx-wa-pulse { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(1.85); opacity: 0; } }
@keyframes dvx-wa-wiggle { 0%, 88%, 100% { transform: rotate(0); } 91% { transform: rotate(-14deg); } 95% { transform: rotate(14deg); } }

/* Scroll-to-top — now bottom-right (below WhatsApp) */
.dvx-scroll-top { position: fixed; right: 24px; left: auto; bottom: 24px; z-index: 900; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--dvx-border-strong); background: var(--dvx-surface-2); color: var(--dvx-text); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s; box-shadow: var(--dvx-shadow-sm); }
.dvx-scroll-top.show { opacity: 1; visibility: visible; }
.dvx-scroll-top:hover { transform: translateY(-3px); background: var(--dvx-surface-3); color: var(--dvx-accent); }
@media (prefers-reduced-motion: reduce) { .dvx-whatsapp::before, .dvx-whatsapp i { animation: none; } }

/* cookie banner */
.dvx-cookie { position: fixed; left: 22px; right: 22px; bottom: 22px; max-width: 520px; margin: 0 auto; z-index: 950; background: var(--dvx-surface-2); border: 1px solid var(--dvx-border-strong); border-radius: var(--dvx-radius); padding: 18px 20px; box-shadow: var(--dvx-shadow); display: none; }
.dvx-cookie.show { display: block; }
.dvx-cookie p { font-size: 13px; margin-bottom: 12px; }
.dvx-cookie-actions { display: flex; gap: 10px; }

/* reading progress */
.dvx-reading-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--dvx-grad); z-index: 1200; transition: width 0.1s linear; }

/* ---------- Scroll reveal (gated on JS so content shows if JS fails) ---------- */
.dvx-js .dvx-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--dvx-ease), transform 0.6s var(--dvx-ease); }
.dvx-js .dvx-reveal.is-visible { opacity: 1; transform: none; }
.dvx-js .dvx-reveal[data-delay="1"] { transition-delay: 0.07s; }
.dvx-js .dvx-reveal[data-delay="2"] { transition-delay: 0.14s; }
.dvx-js .dvx-reveal[data-delay="3"] { transition-delay: 0.21s; }
.dvx-js .dvx-reveal[data-delay="4"] { transition-delay: 0.28s; }

/* ---------- Preloader ---------- */
.dvx-preloader { position: fixed; inset: 0; z-index: 2000; background: var(--dvx-bg); display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease; }
.dvx-preloader .ring { width: 46px; height: 46px; border-radius: 50%; border: 3px solid var(--dvx-border-strong); border-top-color: var(--dvx-accent); animation: dvx-spin 0.8s linear infinite; }
@keyframes dvx-spin { to { transform: rotate(360deg); } }

/* ---------- Split / feature rows ---------- */
.dvx-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.dvx-split-body { max-width: 540px; }
.dvx-split-media img { border-radius: var(--dvx-radius-lg); border: 1px solid var(--dvx-border); width: 100%; }
.dvx-check-list { list-style: none; padding: 0; display: grid; gap: 14px; margin-top: 20px; }
.dvx-check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--dvx-text-muted); }
.dvx-check-list li i { color: var(--dvx-accent); margin-top: 3px; }

/* CTA band */
.dvx-cta-band { position: relative; overflow: hidden; border-radius: var(--dvx-radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; background: var(--dvx-surface); border: 1px solid var(--dvx-border-strong); }
.dvx-cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(234, 75, 113, 0.16), transparent 70%); pointer-events: none; }
.dvx-cta-band > * { position: relative; }
.dvx-cta-band h2 { font-weight: 500; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .dvx-grid--3, .dvx-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .dvx-stats { grid-template-columns: repeat(2, 1fr); }
  .dvx-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dvx-split { grid-template-columns: 1fr; }
  .dvx-nav-menu, .dvx-topbar { display: none; }
  .dvx-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .dvx-nav-actions .dvx-nav-cta-text { display: none; }
  .dvx-hero-layout { grid-template-columns: 1fr; }
  .dvx-hero-inner { text-align: center; max-width: 640px; margin: 0 auto; }
  .dvx-hero-actions { justify-content: center; }
  .dvx-hero-visual { display: none; }
}
@media (max-width: 575px) {
  .dvx-grid--2, .dvx-grid--3, .dvx-grid--4 { grid-template-columns: 1fr; }
  .dvx-stats { grid-template-columns: 1fr 1fr; }
  .dvx-footer-grid { grid-template-columns: 1fr; }
  .dvx-newsletter { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .dvx *, .dvx *::before, .dvx *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .dvx-reveal { opacity: 1; transform: none; }
}

/* RTL groundwork */
.dvx[dir="rtl"] .dvx-btn:hover i.dvx-arrow { transform: translateX(-3px); }

/* ==========================================================================
   HOME REDESIGN — sections recreated from the designer screenshot
   ========================================================================== */

/* ---------- Hero trust strip ---------- */
.dvx-hero-trust { margin-top: 36px; }
.dvx-hero-trust-label { display: block; font-family: var(--dvx-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dvx-text-dim); margin-bottom: 16px; }
.dvx-hero-trust-logos { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.dvx-hero-trust-logos img { max-height: 28px; width: auto; opacity: 0.6; filter: grayscale(1) brightness(2); transition: opacity 0.2s, filter 0.2s; }
.dvx-hero-trust-logos img:hover { opacity: 1; filter: grayscale(0) brightness(1); }

/* ---------- Workflow / process diagram panel ---------- */
.dvx-diagram-panel {
  position: relative; overflow: hidden;
  border: 1px solid var(--dvx-border-strong);
  border-radius: var(--dvx-radius-lg);
  background: linear-gradient(180deg, var(--dvx-surface) 0%, var(--dvx-bg-2) 100%);
  box-shadow: var(--dvx-shadow);
}
.dvx-diagram-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.6;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 35%, transparent 90%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000 35%, transparent 90%);
}
.dvx-diagram-bar { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 14px 20px; border-bottom: 1px solid var(--dvx-border); }
.dvx-diagram-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dvx-diagram-bar .dot.r { background: #ff5f57; } .dvx-diagram-bar .dot.y { background: #febc2e; } .dvx-diagram-bar .dot.g { background: #28c840; }
.dvx-diagram-bar-title { margin-left: 10px; font-family: var(--dvx-mono); font-size: 12px; color: var(--dvx-text-dim); }
.dvx-diagram-canvas { position: relative; z-index: 1; height: clamp(300px, 34vw, 380px); }
.dvx-diagram-links { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.dvx-diagram-links path { fill: none; stroke: var(--dvx-accent); stroke-width: 1.6; opacity: 0.45; stroke-dasharray: 5 7; animation: dvx-dash 1.8s linear infinite; }
.dvx-node {
  position: absolute; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(22, 19, 29, 0.94); border: 1px solid var(--dvx-border-strong);
  border-radius: 12px; padding: 11px 15px; box-shadow: var(--dvx-shadow-sm);
  backdrop-filter: blur(6px); white-space: nowrap; max-width: 220px;
}
.dvx-node .ic { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 9px; display: grid; place-items: center; background: var(--dvx-grad-soft); color: var(--dvx-accent); font-size: 15px; }
.dvx-node .ic.core { background: var(--dvx-grad); color: #fff; box-shadow: 0 0 22px rgba(234,75,113,0.5); }
.dvx-node .lbl { display: flex; flex-direction: column; line-height: 1.25; }
.dvx-node .lbl b { font-size: 13.5px; font-weight: 600; color: var(--dvx-text); }
.dvx-node .lbl i { font-style: normal; font-size: 11.5px; color: var(--dvx-text-dim); }
.dvx-node.n-core { border-color: rgba(234,75,113,0.45); box-shadow: var(--dvx-glow); }

/* ---------- Stat cards ---------- */
.dvx-stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dvx-stat-card { padding: 30px; border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius); background: var(--dvx-surface); }
.dvx-stat-card-num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; margin-bottom: 14px; }
.dvx-stat-card p { margin: 0; font-size: 0.95rem; color: var(--dvx-text-muted); }

/* ---------- Integrations grid ---------- */
.dvx-integrations { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; max-width: 940px; margin: 0 auto; }
.dvx-integration {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  aspect-ratio: 1; border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius);
  background: var(--dvx-surface); color: var(--dvx-text-muted);
  transition: transform 0.22s var(--dvx-ease), border-color 0.22s, color 0.22s, background 0.22s;
}
.dvx-integration:hover { transform: translateY(-3px); border-color: var(--dvx-border-strong); color: var(--dvx-text); background: var(--dvx-surface-2); }
.dvx-integration i { font-size: 26px; }
.dvx-integration:hover i { color: var(--dvx-accent); }
.dvx-integration span { font-size: 10.5px; font-family: var(--dvx-mono); letter-spacing: 0.02em; color: var(--dvx-text-dim); }

/* ---------- Capabilities cluster (bento) ---------- */
.dvx-feature-cluster { display: grid; grid-template-columns: 1.05fr 1.4fr; gap: 24px; align-items: stretch; }
.dvx-feature-lead { justify-content: flex-start; }
.dvx-feature-lead h3 { font-size: 1.5rem; }
.dvx-feature-lead .dvx-card-icon { width: 58px; height: 58px; font-size: 24px; }
.dvx-feature-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ---------- Feature split (text + visual) ---------- */
.dvx-feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.dvx-feature-split.is-reverse .dvx-feature-split-body { order: 2; }
.dvx-feature-split.is-reverse .dvx-feature-split-visual { order: 1; }
.dvx-feature-split-body { max-width: 560px; }
.dvx-feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 20px; }
.dvx-feature-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--dvx-text-muted); }
.dvx-feature-list li .ic { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--dvx-grad-soft); border: 1px solid var(--dvx-border-strong); color: var(--dvx-accent); font-size: 15px; }
.dvx-feature-list li b { color: var(--dvx-text); font-weight: 600; }
.dvx-check-grid { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dvx-check-grid li { display: flex; gap: 10px; align-items: center; color: var(--dvx-text-muted); font-size: 0.95rem; }
.dvx-check-grid li i { color: var(--dvx-accent); }

/* code/UI window mock */
.dvx-window { border: 1px solid var(--dvx-border-strong); border-radius: var(--dvx-radius-lg); overflow: hidden; background: var(--dvx-surface); box-shadow: var(--dvx-shadow); }
.dvx-window-bar { display: flex; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--dvx-border); background: var(--dvx-surface-2); }
.dvx-window-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dvx-window-bar .dot.r { background: #ff5f57; } .dvx-window-bar .dot.y { background: #febc2e; } .dvx-window-bar .dot.g { background: #28c840; }
.dvx-window-body { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--dvx-border); }
.dvx-window-ui, .dvx-window-code { background: var(--dvx-surface); padding: 22px; }
.dvx-window-ui { display: flex; flex-direction: column; gap: 14px; }
.dvx-window-ui .block { height: 12px; border-radius: 6px; background: var(--dvx-surface-3); }
.dvx-window-ui .block.w70 { width: 70%; } .dvx-window-ui .block.w55 { width: 55%; } .dvx-window-ui .block.w40 { width: 40%; }
.dvx-window-ui .dvx-window-row { display: flex; gap: 10px; }
.dvx-window-ui .tile { flex: 1; height: 44px; border-radius: 8px; background: var(--dvx-grad-soft); border: 1px solid var(--dvx-border-strong); }
.dvx-window-code { font-family: var(--dvx-mono); font-size: 13px; color: var(--dvx-text-muted); display: flex; flex-direction: column; gap: 8px; }
.dvx-window-code .line { white-space: pre; }
.dvx-window-code .indent { padding-left: 18px; }
.dvx-window-code .k { color: #c792ea; font-style: normal; } .dvx-window-code .s { color: #ecc48d; font-style: normal; } .dvx-window-code .f { color: var(--dvx-accent); font-style: normal; }

/* radial visual */
.dvx-radial { position: relative; width: min(100%, 420px); aspect-ratio: 1; margin: 0 auto; }
.dvx-radial-glow { position: absolute; inset: 18%; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,92,0.45), rgba(234,75,113,0.22) 40%, transparent 70%); filter: blur(16px); animation: dvx-pulse 5s ease-in-out infinite; }
.dvx-radial-ring { position: absolute; border-radius: 50%; border: 1px solid var(--dvx-border-strong); }
.dvx-radial-ring.r1 { inset: 6%; } .dvx-radial-ring.r2 { inset: 22%; border-style: dashed; border-color: rgba(255,255,255,0.1); animation: dvx-spin 30s linear infinite; } .dvx-radial-ring.r3 { inset: 38%; }
.dvx-radial-core { position: absolute; inset: 38%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffd9b0, #ff7a5c 42%, #ea4b71 80%); display: grid; place-items: center; color: #fff; font-size: clamp(22px, 3vw, 32px); box-shadow: 0 0 50px rgba(234,75,113,0.55); animation: dvx-pulse 5s ease-in-out infinite; }
.dvx-radial-dot { position: absolute; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(22,19,29,0.94); border: 1px solid var(--dvx-border-strong); color: var(--dvx-accent); font-size: 15px; box-shadow: var(--dvx-shadow-sm); animation: dvx-float 7s ease-in-out infinite; }
.dvx-radial-dot.d1 { top: 2%; left: 42%; } .dvx-radial-dot.d2 { top: 42%; right: 0; animation-delay: -2s; } .dvx-radial-dot.d3 { bottom: 2%; left: 42%; animation-delay: -3.5s; } .dvx-radial-dot.d4 { top: 42%; left: 0; animation-delay: -5s; }

/* ---------- Case studies ---------- */
.dvx-casestudy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dvx-casestudy { position: relative; overflow: hidden; display: flex; flex-direction: column; padding: clamp(28px, 3vw, 40px); border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius-lg); background: linear-gradient(180deg, var(--dvx-surface) 0%, var(--dvx-bg-2) 100%); transition: transform 0.25s var(--dvx-ease), border-color 0.25s, box-shadow 0.25s; }
.dvx-casestudy::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 100% at 100% 0%, rgba(234,75,113,0.12), transparent 60%); pointer-events: none; }
.dvx-casestudy:hover { transform: translateY(-4px); border-color: var(--dvx-border-strong); box-shadow: var(--dvx-shadow); }
.dvx-casestudy-top { margin-bottom: 18px; }
.dvx-casestudy h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 600; margin-bottom: 14px; }
.dvx-casestudy p { color: var(--dvx-text-muted); margin-bottom: 26px; }
.dvx-casestudy .dvx-btn { align-self: flex-start; margin-top: auto; }

/* ---------- Assurance table ---------- */
.dvx-feature-table { max-width: 920px; margin: 0 auto; border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius-lg); overflow: hidden; background: var(--dvx-surface); }
.dvx-feature-row { display: grid; grid-template-columns: 0.8fr 1.6fr; gap: 24px; padding: 26px clamp(22px, 3vw, 36px); border-bottom: 1px solid var(--dvx-border); transition: background 0.2s; }
.dvx-feature-row:last-child { border-bottom: none; }
.dvx-feature-row:hover { background: var(--dvx-surface-2); }
.dvx-feature-row-head { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--dvx-text); font-size: 1.02rem; }
.dvx-feature-row-head i { color: var(--dvx-accent); width: 22px; text-align: center; }
.dvx-feature-row-body { color: var(--dvx-text-muted); font-size: 0.97rem; }

/* ---------- Final closing CTA ---------- */
.dvx-cta-final { position: relative; overflow: hidden; padding: clamp(72px, 10vw, 140px) 0 clamp(48px, 6vw, 80px); text-align: center; }
.dvx-cta-final-glow { position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(60% 90% at 50% 120%, rgba(255,122,92,0.30), transparent 60%),
  radial-gradient(50% 70% at 50% 130%, rgba(234,75,113,0.34), transparent 65%); }
.dvx-cta-final-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.dvx-cta-final h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 500; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px; }
.dvx-cta-final p { color: var(--dvx-text-muted); font-size: 1.08rem; max-width: 560px; margin: 0 auto 32px; }
.dvx-cta-final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Marquee text wordmarks (partners / integrations slider) ---------- */
.dvx-logo-text { display: inline-flex; align-items: center; gap: 9px; font-family: var(--dvx-mono); font-weight: 600; font-size: 16px; letter-spacing: 0.01em; color: var(--dvx-text-dim); white-space: nowrap; transition: color 0.2s; }
.dvx-logo-text i { font-size: 20px; }
.dvx-marquee .swiper-slide:hover .dvx-logo-text { color: var(--dvx-text); }
.dvx-marquee .swiper-slide:hover .dvx-logo-text i { color: var(--dvx-accent); }

/* ---------- Footer additions (n8n-style) ---------- */
.dvx-footer-tagline { color: var(--dvx-text); font-weight: 600; font-size: 15px; margin: 0 0 10px; }
.dvx-footer-legal { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.dvx-footer-legal a { color: var(--dvx-text-dim); font-size: 13px; }
.dvx-footer-legal a:hover { color: var(--dvx-accent); }

/* ---------- Animated hero background: starfield + aurora ---------- */
.dvx-hero-stars {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.7;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 18%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.2px 1.2px at 28% 64%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1.6px 1.6px at 47% 32%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.1px 1.1px at 62% 72%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 78% 22%, rgba(255,255,255,0.65), transparent),
    radial-gradient(1.2px 1.2px at 88% 58%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.3px 1.3px at 36% 88%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.2px 1.2px at 70% 42%, rgba(255,255,255,0.45), transparent);
  background-repeat: no-repeat;
  animation: dvx-stars-twinkle 6s ease-in-out infinite alternate;
}
@keyframes dvx-stars-twinkle { from { opacity: 0.45; } to { opacity: 0.85; } }
.dvx-hero-aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.dvx-hero-aurora span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; will-change: transform; }
.dvx-hero-aurora .a1 { width: 520px; height: 520px; top: -140px; right: -60px; background: radial-gradient(circle, rgba(234,75,113,0.85), transparent 68%); animation: dvx-aurora-a 16s ease-in-out infinite; }
.dvx-hero-aurora .a2 { width: 460px; height: 460px; bottom: -180px; right: 12%; background: radial-gradient(circle, rgba(255,122,92,0.7), transparent 68%); animation: dvx-aurora-b 19s ease-in-out infinite; }
.dvx-hero-aurora .a3 { width: 420px; height: 420px; top: 10%; left: -160px; background: radial-gradient(circle, rgba(124,77,255,0.6), transparent 68%); animation: dvx-aurora-a 22s ease-in-out infinite reverse; }
@keyframes dvx-aurora-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,40px) scale(1.15); } }
@keyframes dvx-aurora-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,-30px) scale(1.12); } }

/* ---------- Hero right-side: animated node network + glowing core ---------- */
.dvx-hero-stage { position: relative; width: min(100%, 560px); aspect-ratio: 1 / 0.92; margin: 0 auto; }
.dvx-blob { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none; will-change: transform; }
.dvx-blob.b1 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,122,92,0.7), transparent 68%); top: -40px; left: -30px; opacity: 0.45; animation: dvx-blob-a 12s ease-in-out infinite; }
.dvx-blob.b2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(234,75,113,0.7), transparent 68%); bottom: -60px; right: -40px; opacity: 0.45; animation: dvx-blob-b 14s ease-in-out infinite; }
.dvx-hero-canvas { position: absolute; inset: 0; z-index: 1; }
.dvx-hero-canvas canvas { width: 100%; height: 100%; display: block; }
.dvx-hero-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: clamp(86px, 12vw, 120px); height: clamp(86px, 12vw, 120px); border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: clamp(26px, 4vw, 38px);
  background: radial-gradient(circle at 35% 30%, #ffd9b0, #ff7a5c 42%, #ea4b71 80%);
  box-shadow: 0 0 70px rgba(234,75,113,0.6), inset 0 0 26px rgba(255,255,255,0.25);
  animation: dvx-pulse 4.5s ease-in-out infinite;
}
.dvx-hero-core .ring { position: absolute; inset: -22px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); animation: dvx-spin 18s linear infinite; }
.dvx-hero-core .ring.r2 { inset: -46px; border-style: dashed; border-color: rgba(255,255,255,0.10); animation-duration: 30s; animation-direction: reverse; }
@keyframes dvx-blob-a { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(26px, -30px) scale(1.12); } }
@keyframes dvx-blob-b { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-30px, 24px) scale(1.14); } }

/* ---------- Trust strip below hero (CSS ticker — always sliding) ---------- */
.dvx-trust-strip { padding: 8px 0 clamp(40px, 6vw, 72px); }
.dvx-trust-label { text-align: center; font-family: var(--dvx-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dvx-text-dim); margin-bottom: 26px; }
.dvx-ticker { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.dvx-ticker-track { display: flex; width: max-content; align-items: center; animation: dvx-ticker-scroll 38s linear infinite; }
.dvx-ticker:hover .dvx-ticker-track { animation-play-state: paused; }
.dvx-ticker-item { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; height: 56px; padding: 0 38px; }
/* monochrome muted logos (~#7d7689) — no colour; brighten + reveal on hover */
.dvx-ticker-item img { max-height: 30px; max-width: 130px; width: auto; opacity: 0.7; filter: brightness(0) invert(0.53); transition: opacity 0.25s, filter 0.25s; }
.dvx-ticker-item img:hover { opacity: 1; filter: brightness(0) invert(0.78); }
@keyframes dvx-ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .dvx-ticker-track { animation: none; } }

/* ---------- Custom language dropdown ---------- */
.dvx-lang { position: relative; }
.dvx-lang-toggle {
  display: inline-flex; align-items: center; gap: 5px; padding: 6px 8px;
  border-radius: var(--dvx-radius-sm); border: none; background: none; color: var(--dvx-text-muted);
  font-family: var(--dvx-font); font-size: 13px; font-weight: 500; cursor: pointer;
  transition: color 0.18s;
}
.dvx-lang-toggle:hover { color: var(--dvx-text); }
.dvx-lang-caret { font-size: 8px; opacity: 0.6; transition: transform 0.2s var(--dvx-ease); }
.dvx-lang.is-open .dvx-lang-caret { transform: rotate(180deg); }
.dvx-lang-menu {
  position: absolute; top: calc(100% + 12px); right: 0; width: 290px; padding: 12px;
  background: var(--dvx-surface-2); border: 1px solid var(--dvx-border);
  border-radius: var(--dvx-radius); box-shadow: var(--dvx-shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.18s var(--dvx-ease), transform 0.18s var(--dvx-ease), visibility 0.18s; z-index: 1200;
}
.dvx-lang.is-open .dvx-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dvx-lang-search {
  width: 100%; margin-bottom: 10px; background: var(--dvx-surface-3);
  border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius-sm);
  color: var(--dvx-text); padding: 9px 12px; font-size: 13px; font-family: var(--dvx-font);
}
.dvx-lang-search:focus { outline: none; border-color: var(--dvx-accent); box-shadow: 0 0 0 3px var(--dvx-accent-soft); }
.dvx-lang-list { max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 1px; }
.dvx-lang-list::-webkit-scrollbar { width: 6px; }
.dvx-lang-list::-webkit-scrollbar-thumb { background: var(--dvx-surface-3); border-radius: 3px; }
.dvx-lang-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%;
  text-align: left; padding: 6px 10px; border: none; background: none; border-radius: var(--dvx-radius-sm);
  color: var(--dvx-text-muted); cursor: pointer; transition: background 0.15s, color 0.15s;
}
.dvx-lang-item:hover { background: rgba(255, 255, 255, 0.05); color: var(--dvx-text); }
.dvx-lang-item .n { font-size: 13px; font-weight: 500; color: var(--dvx-text); line-height: 1.4; }
.dvx-lang-check { opacity: 0; color: var(--dvx-accent); font-size: 11px; flex: 0 0 auto; }
.dvx-lang-item.is-active { background: var(--dvx-accent-soft); }
.dvx-lang-item.is-active .dvx-lang-check { opacity: 1; }
.dvx-lang-divider { height: 1px; background: var(--dvx-border); margin: 6px 2px; }

/* ---------- Full-bleed closing CTA → footer seam (glow peaks at the bottom edge) ---------- */
.dvx-cta-final-glow { background:
  radial-gradient(80% 90% at 50% 112%, rgba(255,122,92,0.30), transparent 60%),
  radial-gradient(60% 80% at 50% 118%, rgba(234,75,113,0.36), transparent 64%); }
.dvx-footer { border-top: none; }

/* ---------- Home redesign responsive ---------- */
@media (max-width: 991px) {
  .dvx-integrations { grid-template-columns: repeat(4, 1fr); max-width: 480px; }
  .dvx-feature-cluster { grid-template-columns: 1fr; }
  .dvx-feature-split { grid-template-columns: 1fr; }
  .dvx-feature-split.is-reverse .dvx-feature-split-body { order: 1; }
  .dvx-feature-split.is-reverse .dvx-feature-split-visual { order: 2; }
  .dvx-stat-cards { grid-template-columns: 1fr; }
  .dvx-casestudy-grid { grid-template-columns: 1fr; }
  .dvx-node { font-size: 12px; padding: 9px 12px; }
  .dvx-node .lbl i { display: none; }
}
@media (max-width: 575px) {
  .dvx-feature-stack { grid-template-columns: 1fr; }
  .dvx-check-grid { grid-template-columns: 1fr; }
  .dvx-window-body { grid-template-columns: 1fr; }
  .dvx-integrations { grid-template-columns: repeat(3, 1fr); }
  .dvx-feature-row { grid-template-columns: 1fr; gap: 8px; }
  .dvx-hero-trust-logos { gap: 20px; }
}

/* ==========================================================================
   ROUND 3 — footer (gradient section + boxed glass) and n8n-style buttons
   ========================================================================== */

/* ---------- Unified closing section: CTA + footer share ONE block & ONE glow ---------- */
.dvx-closing { position: relative; overflow: hidden; padding-top: clamp(72px, 10vw, 140px); }
.dvx-closing-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(70% 42% at 50% 26%, rgba(234, 75, 113, 0.18), transparent 62%),
    radial-gradient(95% 50% at 50% 72%, rgba(255, 122, 92, 0.16), transparent 64%),
    radial-gradient(60% 45% at 12% 96%, rgba(124, 77, 255, 0.13), transparent 60%),
    radial-gradient(60% 45% at 88% 96%, rgba(124, 77, 255, 0.10), transparent 60%);
}
.dvx-closing > .container { position: relative; z-index: 1; }
.dvx-closing .dvx-cta-final-inner { text-align: center; max-width: 720px; margin: 0 auto clamp(56px, 7vw, 100px); }
.dvx-closing h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 500; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 18px; }
.dvx-closing .dvx-cta-final-inner p { color: var(--dvx-text-muted); font-size: 1.08rem; max-width: 560px; margin: 0 auto 30px; }

/* footer now lives inside .dvx-closing: transparent, no own bg/gradient/border */
.dvx-footer { position: relative; z-index: 1; overflow: visible; background: transparent; padding-top: 0; padding-bottom: clamp(28px, 4vw, 48px); border-top: none; margin-top: 0; }
.dvx-footer::before { content: none; }
.dvx-footer .container { position: relative; z-index: 1; }
.dvx-footer-box {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--dvx-radius-lg);
  padding: clamp(28px, 4vw, 52px);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
}
.dvx-footer-box .dvx-footer-grid { padding-bottom: 40px; }
.dvx-footer-box .dvx-footer-bottom { padding: 22px 0 0; }

/* ---------- n8n-style compact buttons (overrides — intentional !important) ---------- */
.dvx-btn { font-family: var(--dvx-font) !important; font-weight: 500 !important; font-size: 14px !important; line-height: 1 !important; padding: 11px 18px !important; border-radius: 8px !important; gap: 8px !important; }
.dvx-btn--sm { padding: 8px 14px !important; font-size: 13px !important; }
.dvx-btn--lg { padding: 12px 22px !important; font-size: 14px !important; border-radius: 8px !important; }
.dvx-btn--primary {
  --bg-from: var(--dvx-accent-2); --bg-to: var(--dvx-accent); --bg-hover: rgba(255, 255, 255, 0);
  background: linear-gradient(to bottom, var(--bg-hover), var(--bg-hover)), linear-gradient(30deg, var(--bg-from), var(--bg-to)) !important;
  color: #fff !important; border: none !important;
  box-shadow: 0 6px 16px rgba(234, 75, 113, 0.26) !important;
  transition: --bg-hover 0.3s, transform 0.25s var(--dvx-ease), box-shadow 0.25s var(--dvx-ease) !important;
}
.dvx-btn--primary:hover { --bg-hover: rgba(255, 255, 255, 0.16); color: #fff !important; transform: translateY(-1px) !important; box-shadow: 0 10px 24px rgba(234, 75, 113, 0.34) !important; filter: none !important; }
.dvx-btn--ghost {
  background: color-mix(in oklab, #a3a3a3 18%, transparent) !important;
  border: 1px solid transparent !important; color: var(--dvx-text) !important;
  backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: none !important;
}
.dvx-btn--ghost:hover { background: color-mix(in oklab, #a3a3a3 28%, transparent) !important; color: #fff !important; transform: translateY(-1px) !important; }

/* ==========================================================================
   ROUND 4 — restored sections: About panel, news fallback
   ========================================================================== */
.dvx-about-regions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.dvx-about-panel {
  position: relative; border: 1px solid var(--dvx-border-strong); border-radius: var(--dvx-radius-lg);
  background: linear-gradient(180deg, var(--dvx-surface) 0%, var(--dvx-bg-2) 100%);
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--dvx-shadow); overflow: hidden;
}
.dvx-about-panel::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(70% 90% at 100% 0%, rgba(234,75,113,0.14), transparent 60%); }
.dvx-about-years { position: relative; text-align: center; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--dvx-border); }
.dvx-about-years span { display: block; font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.dvx-about-years small { color: var(--dvx-text-muted); font-size: 13px; }
.dvx-about-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dvx-about-grid > div { border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius); padding: 18px; text-align: center; background: rgba(255,255,255,0.02); }
.dvx-about-grid b { display: block; font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.dvx-about-grid span { display: block; margin-top: 6px; font-size: 12.5px; color: var(--dvx-text-dim); }

/* news card image fallback */
.dvx-media-fallback {
  display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;
  color: var(--dvx-text-dim); font-size: 34px;
  background: linear-gradient(135deg, var(--dvx-surface-2), var(--dvx-bg-2));
}

@media (max-width: 575px) { .dvx-about-grid { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   ROUND 5 — graceful broken-image placeholders (site-wide, local-safe)
   ========================================================================== */
.dvx-img-missing { position: relative; background: linear-gradient(135deg, var(--dvx-surface-2), var(--dvx-bg-2)); }
.dvx-img-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--dvx-text-dim); }
.dvx-media-thumb.dvx-img-missing .dvx-img-ph { font-size: 34px; }
.dvx-avatar.dvx-img-missing .dvx-img-ph { font-size: 18px; }
.dvx-card-icon.dvx-img-missing { background: var(--dvx-grad-soft); }
.dvx-card-icon.dvx-img-missing .dvx-img-ph { position: static; color: var(--dvx-accent); font-size: 20px; }

/* ==========================================================================
   Public site — autofill, phone input, custom select (added)
   ========================================================================== */

/* Browser autofill should NOT change input bg / text colour */
.dvx input:-webkit-autofill,
.dvx input:-webkit-autofill:hover,
.dvx input:-webkit-autofill:focus,
.dvx textarea:-webkit-autofill,
.dvx select:-webkit-autofill {
  -webkit-text-fill-color: var(--dvx-text) !important;
  caret-color: var(--dvx-text) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--dvx-surface-2) inset !important;
  box-shadow: 0 0 0 1000px var(--dvx-surface-2) inset !important;
  transition: background-color 9999s ease-in-out 0s !important;
}

/* intl-tel-input — restyled dropdown to match branding */
.dvx .iti { width: 100%; }
.dvx .iti__dropdown-content {
  background: var(--dvx-surface-2); border: 1px solid var(--dvx-border-strong);
  border-radius: 12px; box-shadow: var(--dvx-shadow); overflow: hidden; color: var(--dvx-text);
}
.dvx .iti__search-input { background: var(--dvx-surface-3); color: var(--dvx-text); border: none; border-bottom: 1px solid var(--dvx-border); padding: 11px 14px; font-size: 14px; }
.dvx .iti__search-input::placeholder { color: var(--dvx-text-dim); }
.dvx .iti__country-list { background: transparent; max-height: 240px; }
.dvx .iti__country, .dvx .iti__dropdown-content * { color: var(--dvx-text); }
.dvx .iti__country { padding: 9px 14px; }
.dvx .iti__country.iti__highlight, .dvx .iti__country:hover { background: var(--dvx-surface-3); }
.dvx .iti__dial-code { color: var(--dvx-text-dim); }
.dvx .iti__selected-country:hover, .dvx .iti__selected-country-primary:hover { background: rgba(255,255,255,0.05); }
.dvx .iti--allow-dropdown .iti__selected-country { border-radius: var(--dvx-radius-sm) 0 0 var(--dvx-radius-sm); }

/* Custom public select (replaces native <select>) */
.dvx-fe-select-native { position: absolute !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.dvx-fe-select { position: relative; width: 100%; }
.dvx-fe-select-control {
  display: flex; align-items: center; gap: 8px; width: 100%; min-height: 30px;
  padding: 5px 10px; cursor: pointer;
  background: var(--dvx-surface-2); border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius-sm);
  color: var(--dvx-text); font-size: 15px; transition: border-color .18s var(--dvx-ease), box-shadow .18s var(--dvx-ease);
}
.dvx-fe-select.is-open .dvx-fe-select-control { border-color: var(--dvx-accent); box-shadow: 0 0 0 3px var(--dvx-accent-soft); }
.dvx-fe-select-value { flex: 1 1 auto; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dvx-fe-select-value.is-placeholder { color: var(--dvx-text-dim); }
.dvx-fe-select-caret { color: var(--dvx-text-dim); transition: transform .2s var(--dvx-ease); flex: 0 0 auto; }
.dvx-fe-select.is-open .dvx-fe-select-caret { transform: rotate(180deg); }
.dvx-fe-select-panel {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
  background: var(--dvx-surface-2); border: 1px solid var(--dvx-border-strong); border-radius: var(--dvx-radius);
  box-shadow: var(--dvx-shadow); padding: 6px; display: none; max-height: 320px; overflow: hidden; flex-direction: column;
}
.dvx-fe-select.is-open .dvx-fe-select-panel { display: flex; }
.dvx-fe-select-search { padding: 4px 4px 7px; }
.dvx-fe-select-search input { width: 100%; padding: 9px 12px; font-size: 14px; background: var(--dvx-surface-3); border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius-sm); color: var(--dvx-text); }
.dvx-fe-select-search input:focus { outline: none; border-color: var(--dvx-accent); }
.dvx-fe-select-options { overflow-y: auto; }
.dvx-fe-select-opt { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 11px 13px; border-radius: var(--dvx-radius-sm); cursor: pointer; font-size: 14.5px; color: var(--dvx-text-muted); }
.dvx-fe-select-opt:hover, .dvx-fe-select-opt.is-active { background: var(--dvx-surface-3); color: var(--dvx-text); }
.dvx-fe-select-opt.is-selected { color: var(--dvx-text); font-weight: 600; }
.dvx-fe-select-opt.is-selected::after { content: "✓"; color: var(--dvx-accent); }
.dvx-fe-select-empty { padding: 14px; text-align: center; color: var(--dvx-text-dim); font-size: 14px; }

/* ---------- Article (news detail) — prevent prose overflowing into the sidebar ---------- */
[data-reading] .row > [class*="col-"] { min-width: 0; }
.dvx-prose { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.dvx-prose img, .dvx-prose table, .dvx-prose pre, .dvx-prose iframe, .dvx-prose video, .dvx-prose embed { max-width: 100%; height: auto; }
.dvx-prose pre { overflow-x: auto; }
.dvx-prose table { display: block; overflow-x: auto; white-space: normal; }

/* ==========================================================================
   Team card — image fills card, name/role + small socials overlaid
   ========================================================================== */
/* Team detail — sticky profile sidebar (photo + contact) */
.dvx-team-sidebar {
  position: sticky; top: 100px;
  background: var(--dvx-surface-2); border: 1px solid var(--dvx-border);
  border-radius: var(--dvx-radius-lg); overflow: hidden;
}
.dvx-team-photo { aspect-ratio: 4 / 5; background: var(--dvx-surface-3); }
.dvx-team-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.dvx-team-side-body { padding: 22px; }
.dvx-team-side-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.dvx-team-side-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.dvx-team-contact {
  display: flex; align-items: center; gap: 12px; padding: 11px 13px;
  border: 1px solid var(--dvx-border); border-radius: var(--dvx-radius); background: var(--dvx-surface-1);
  transition: border-color 0.2s var(--dvx-ease), background 0.2s var(--dvx-ease);
}
.dvx-team-contact:hover { border-color: var(--dvx-border-strong); background: var(--dvx-surface-3); }
.dvx-team-contact .dvx-card-icon { width: 40px; height: 40px; flex: 0 0 40px; margin: 0; }
.dvx-team-contact-text { display: flex; flex-direction: column; min-width: 0; color: var(--dvx-text); font-weight: 600; word-break: break-word; }
.dvx-team-contact-text small { font-size: 12px; color: var(--dvx-text-dim); font-weight: 500; }
@media (max-width: 991px) {
  /* mobile: sidebar comes first (on top), not sticky */
  .dvx-team-sidebar { position: static; max-width: 460px; margin: 0 auto; }
}

.dvx-team-card {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--dvx-radius-lg); overflow: hidden;
  border: 1px solid var(--dvx-border); background: var(--dvx-surface-2);
  transition: transform 0.28s var(--dvx-ease), border-color 0.28s var(--dvx-ease), box-shadow 0.28s var(--dvx-ease);
}
.dvx-team-card:hover { transform: translateY(-4px); border-color: var(--dvx-border-strong); box-shadow: var(--dvx-shadow); }
.dvx-team-card-img { position: absolute; inset: 0; z-index: 0; }
.dvx-team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--dvx-ease); }
.dvx-team-card:hover .dvx-team-card-img img { transform: scale(1.06); }
.dvx-team-card-initial { position: absolute; inset: 0; align-items: center; justify-content: center; font-size: 3rem; font-weight: 700; color: var(--dvx-text-dim); background: linear-gradient(135deg, var(--dvx-surface-3), var(--dvx-surface-2)); }
/* minimal gradient overlay for legibility */
.dvx-team-card::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(8,6,12,0.92) 0%, rgba(8,6,12,0.5) 28%, rgba(8,6,12,0.05) 55%, transparent 75%); }
/* full-card link for navigation (sits under the interactive bits) */
.dvx-team-card-cover { position: absolute; inset: 0; z-index: 2; }
/* small social icons, top-right */
.dvx-team-card-socials { position: absolute; top: 12px; right: 12px; z-index: 3; display: flex; gap: 6px; opacity: 0; transform: translateY(-4px); transition: opacity 0.25s var(--dvx-ease), transform 0.25s var(--dvx-ease); }
.dvx-team-card:hover .dvx-team-card-socials { opacity: 1; transform: none; }
.dvx-team-card-socials a { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #fff; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(6px); transition: background 0.2s, color 0.2s; }
.dvx-team-card-socials a:hover { background: var(--dvx-accent); border-color: transparent; color: #fff; }
/* name + role overlaid at the bottom */
.dvx-team-card-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 16px 16px 15px; pointer-events: none; }
.dvx-team-card-content a { pointer-events: auto; }
.dvx-team-card-name { font-size: 1.05rem; font-weight: 650; margin: 0; line-height: 1.2; letter-spacing: -0.01em; }
.dvx-team-card-name a { color: #fff; }
.dvx-team-card-name a:hover { color: var(--dvx-accent-2); }
.dvx-team-card-role { margin: 4px 0 0; font-size: 12.5px; color: rgba(255,255,255,0.72); }
