.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-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: 14px;
  border: none;
  background: #000887;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 600;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(0, 8, 135, 0.32);
}

.oe-shared-burger:hover {
  background: #0a12a8;
  transform: scale(1.06);
}

.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;
  clip-path: circle(0px at calc(100% - 40px) 44px);
  transition: clip-path 0.7s cubic-bezier(.77, 0, .175, 1), visibility 0s 0.7s;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
}

.oe-shared-menu.open {
  clip-path: circle(210% at calc(100% - 40px) 44px);
  transition: clip-path 0.7s cubic-bezier(.77, 0, .175, 1), visibility 0s 0s;
  visibility: visible;
}

.oe-shared-bg {
  position: fixed;
  inset: 0;
  background: #02044f;
  overflow: hidden;
  z-index: 0;
}

.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: 2;
  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;
}

.oe-shared-nav-list {
  list-style: none;
}

.oe-shared-nav-link {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  line-height: 1;
  padding: 10px 0;
  position: relative;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.22s, opacity 0.45s, transform 0.45s;
}

.oe-shared-nav-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  height: 3px;
  width: 0;
  background: #f6c657;
  border-radius: 2px;
  transition: width 0.28s cubic-bezier(.16, 1, .3, 1);
}

.oe-shared-nav-link:hover {
  color: #f6c657;
}

.oe-shared-nav-link:hover::after {
  width: 100%;
}

.oe-shared-menu.open .oe-shared-nav-link:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: .32s; }
.oe-shared-menu.open .oe-shared-nav-link:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .38s; }
.oe-shared-menu.open .oe-shared-nav-link:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .44s; }
.oe-shared-menu.open .oe-shared-nav-link:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .50s; }
.oe-shared-menu.open .oe-shared-nav-link:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: .56s; }
.oe-shared-menu.open .oe-shared-nav-link:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: .62s; }
.oe-shared-menu.open .oe-shared-nav-link:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: .68s; }
.oe-shared-menu.open .oe-shared-nav-link:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: .74s; }

.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-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-shared-nav-link {
    font-size: clamp(24px, 7vw, 34px);
  }

  .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-nav {
    padding-left: 14px;
    padding-right: 14px;
  }
}
