.oe-shared-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1.5px solid #dde3ff;
}

.oe-shared-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 0;
}

.oe-shared-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
  text-decoration: none;
}

.oe-shared-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #000887;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 8, 135, 0.25);
  flex-shrink: 0;
}

.oe-shared-logo img {
  width: 46px;
  height: 46px;
  object-fit: cover;
}

.oe-shared-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.oe-shared-brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000887;
  line-height: 1.2;
}

.oe-shared-tagline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a3d00;
  background: #f6c657;
  padding: 2px 8px;
  border-radius: 999px;
  line-height: 1.4;
  align-self: flex-start;
  width: fit-content;
  white-space: nowrap;
  flex-shrink: 0;
}

.oe-shared-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding-left: 16px;
}

.oe-shared-quickdm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b 0%, #0f766e 48%, #f6c657 140%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(6, 78, 59, 0.22), 0 0 0 0 rgba(246, 198, 87, 0.55);
  animation: oeQuickDmTopPulse 1.6s ease-in-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.oe-shared-quickdm::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 58%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: oeQuickDmSweep 2.6s ease-in-out infinite;
  z-index: -1;
}

.oe-shared-quickdm::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff7b3;
  box-shadow: -18px 18px 0 rgba(255,255,255,0.42), -32px -1px 0 rgba(246,198,87,0.55);
  animation: oeQuickDmSpark 1.7s ease-in-out infinite;
}

.oe-shared-quickdm:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(6, 78, 59, 0.28), 0 0 0 6px rgba(246, 198, 87, 0.14);
  animation-play-state: paused;
}

.oe-shared-quickdm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
  flex: 0 0 auto;
}

@keyframes oeQuickDmTopPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(6, 78, 59, 0.22), 0 0 0 0 rgba(246, 198, 87, 0.52); }
  50% { box-shadow: 0 10px 24px rgba(6, 78, 59, 0.22), 0 0 0 8px rgba(246, 198, 87, 0); }
}

@keyframes oeQuickDmSweep {
  0%, 48% { left: -70%; opacity: 0; }
  58% { opacity: 0.75; }
  78%, 100% { left: 118%; opacity: 0; }
}

@keyframes oeQuickDmSpark {
  0%, 100% { transform: scale(0.75); opacity: 0.45; }
  50% { transform: scale(1.25); opacity: 1; }
}

.oe-shared-dashboard {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
  font-weight: 800;
  color: #1a0f00;
  background: #f6c657;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(246, 198, 87, 0.4);
  white-space: nowrap;
  text-decoration: none;
}

.oe-shared-dashboard:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(246, 198, 87, 0.5);
}

.oe-shared-dashboard svg {
  width: 15px;
  height: 15px;
}

.oe-shared-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #000887;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0, 8, 135, 0.32), 0 0 0 0 rgba(0, 8, 135, 0.35);
  animation: oeBurgerPulse 2.6s ease-in-out infinite;
}

.oe-shared-burger:hover {
  background: #0a12a8;
  transform: scale(1.08);
  animation-play-state: paused;
}

.oe-shared-burger.open {
  animation: none;
  box-shadow: 0 4px 14px rgba(0, 8, 135, 0.32);
}

@keyframes oeBurgerPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(0, 8, 135, 0.32), 0 0 0 0 rgba(0, 8, 135, 0.3); }
  50% { box-shadow: 0 4px 14px rgba(0, 8, 135, 0.32), 0 0 0 8px rgba(0, 8, 135, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .oe-shared-burger,
  .oe-shared-quickdm { animation: none; }
}

.oe-shared-burger .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.35s cubic-bezier(.77, 0, .175, 1), opacity 0.2s, width 0.3s;
}

.oe-shared-burger .bar:nth-child(1) { top: 16px; }
.oe-shared-burger .bar:nth-child(2) { top: 23px; }
.oe-shared-burger .bar:nth-child(3) { top: 30px; width: 13px; }
.oe-shared-burger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.oe-shared-burger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.oe-shared-burger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 20px; }

.oe-shared-menu {
  position: fixed;
  inset: 0;
  z-index: 500;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s 0.95s;
  overflow-y: auto;
  overflow-x: hidden;
}

.oe-shared-menu.open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s 0s;
}

/* Layered bubble-wash reveal: three circles bubble outward from the burger
   button in quick succession, each overshooting its target radius slightly
   (back-out easing) before settling — a "rolling bubble" wipe instead of a
   single flat circle sweep. */
.oe-bubble-wash {
  position: fixed;
  inset: 0;
  z-index: 1;
  clip-path: circle(0% at calc(100% - 40px) 44px);
  transition: clip-path 0.85s cubic-bezier(.34, 1.56, .64, 1);
  pointer-events: none;
}

.oe-bubble-wash-1 { background: #000887; }
.oe-bubble-wash-2 { background: #02044f; transition-delay: 0.06s; }
.oe-bubble-wash-3 {
  background: radial-gradient(circle at 68% 28%, rgba(246, 198, 87, 0.16), transparent 60%), #02044f;
  transition-delay: 0.12s;
}

.oe-shared-menu.open .oe-bubble-wash-1 { clip-path: circle(78% at calc(100% - 40px) 44px); }
.oe-shared-menu.open .oe-bubble-wash-2 { clip-path: circle(130% at calc(100% - 40px) 44px); }
.oe-shared-menu.open .oe-bubble-wash-3 { clip-path: circle(180% at calc(100% - 40px) 44px); }

.oe-shared-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.oe-shared-bg::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 8, 135, 0.7) 0%, transparent 70%);
  top: -200px;
  right: -180px;
  animation: oeSharedOrb1 9s ease-in-out infinite alternate;
}

.oe-shared-bg::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 198, 87, 0.12) 0%, transparent 65%);
  bottom: -120px;
  left: -100px;
  animation: oeSharedOrb2 11s ease-in-out infinite alternate;
}

.oe-shared-orb3 {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 46, 204, 0.5) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  animation: oeSharedOrb3 13s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes oeSharedOrb1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 60px) scale(1.1); }
}

@keyframes oeSharedOrb2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-30px, -50px) scale(1.15); }
}

@keyframes oeSharedOrb3 {
  from { transform: translate(-50%, -50%) scale(1); }
  to { transform: translate(-50%, -50%) scale(1.25) translate(20px, -20px); }
}

.oe-shared-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.oe-shared-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.oe-shared-close:hover {
  background: rgba(246, 198, 87, 0.18);
  border-color: #f6c657;
  color: #f6c657;
  transform: rotate(90deg);
}

.oe-shared-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
}

.oe-shared-section-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f6c657;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s, transform 0.4s;
}

.oe-shared-menu.open .oe-shared-section-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Bubble nav grid: links float in individual pill "bubbles" that pop in
   with a spring overshoot, then bob gently forever — replacing the old
   plain stacked link list. */
.oe-bubble-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.oe-bubble {
  --delay: calc(0.3s + var(--i) * 0.05s);
  display: inline-block;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.35) translateY(26px);
  transition: transform 0.6s cubic-bezier(.34, 1.56, .64, 1) var(--delay), opacity 0.4s ease var(--delay);
}

.oe-shared-menu.open .oe-bubble {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.oe-bubble-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: -0.01em;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  animation: oeBubbleFloat calc(4.5s + var(--i) * 0.35s) ease-in-out calc(var(--i) * 0.12s) infinite;
}

.oe-bubble:hover .oe-bubble-inner {
  background: rgba(246, 198, 87, 0.16);
  border-color: #f6c657;
  color: #f6c657;
  box-shadow: 0 10px 28px rgba(246, 198, 87, 0.22);
  transform: scale(1.08) translateY(-4px);
  animation-play-state: paused;
}

.oe-bubble-gold .oe-bubble-inner {
  background: rgba(246, 198, 87, 0.1);
  border-color: rgba(246, 198, 87, 0.3);
  color: #f6c657;
}

.oe-bubble-gold:hover .oe-bubble-inner {
  background: rgba(246, 198, 87, 0.22);
  box-shadow: 0 10px 28px rgba(246, 198, 87, 0.32);
}

@keyframes oeBubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (prefers-reduced-motion: reduce) {
  .oe-bubble-inner { animation: none; }
}

.oe-shared-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 40px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.oe-shared-menu.open .oe-shared-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.oe-shared-card {
  border-radius: 20px;
  padding: 22px;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.oe-shared-card:hover {
  transform: translateY(-3px);
}

.oe-shared-card-dashboard {
  background: #f6c657;
  box-shadow: 0 12px 36px rgba(246, 198, 87, 0.28);
}

.oe-shared-card-dashboard:hover {
  box-shadow: 0 18px 48px rgba(246, 198, 87, 0.4);
}

.oe-shared-card-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 15, 0, 0.55);
  margin-bottom: 8px;
}

.oe-shared-card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a0f00;
  margin-bottom: 6px;
}

.oe-shared-card-desc {
  font-size: 12.5px;
  color: rgba(26, 15, 0, 0.65);
  line-height: 1.6;
  margin-bottom: 14px;
}

.oe-shared-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #1a0f00;
  background: rgba(26, 15, 0, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
}

.oe-shared-card-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.oe-shared-card-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.oe-shared-card-ghost .oe-shared-card-title {
  color: #fff;
  font-size: 17px;
}

.oe-shared-card-ghost .oe-shared-card-desc {
  color: rgba(255, 255, 255, 0.55);
}

.oe-shared-stats {
  display: flex;
  gap: 20px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.oe-shared-stat-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f6c657;
}

.oe-shared-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .oe-shared-nav {
    height: auto;
    min-height: 68px;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .oe-shared-brand {
    flex: 1 1 auto;
  }

  .oe-shared-actions {
    margin-left: auto;
    padding-left: 12px;
  }

  .oe-shared-brand-name {
    font-size: 12px;
  }

  .oe-shared-tagline {
    font-size: 9px;
    line-height: 1.35;
    padding: 2px 6px;
    white-space: normal;
  }

  .oe-shared-dashboard {
    display: none;
  }

  .oe-shared-quickdm {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .oe-shared-inner {
    grid-template-columns: 1fr;
    padding: 0 28px;
    overflow-y: auto;
  }

  .oe-shared-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 32px;
  }

  .oe-bubble-inner {
    font-size: 14px;
    padding: 13px 20px;
  }

  .oe-shared-left {
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .oe-shared-logo {
    width: 40px;
    height: 40px;
  }

  .oe-shared-logo img {
    width: 40px;
    height: 40px;
  }

  .oe-shared-burger {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .oe-shared-actions {
    gap: 8px;
    padding-left: 8px;
  }

  .oe-shared-quickdm {
    min-height: 36px;
    padding: 7px 10px;
  }

  .oe-shared-quickdm-dot {
    display: none;
  }

  .oe-shared-nav {
    padding-left: 14px;
    padding-right: 14px;
  }
}
